/* ============================================================
   BQRAFT — Global Stylesheet
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Colors — ElevenLabs Light Mode Palette */
  --color-bg:               #FBFBFC;
  --color-surface:          #FFFFFF;
  --color-surface-2:        #F4F4F6;
  --color-surface-3:        #EBECEF;
  --color-warm-light:       #FAECD2; /* Lighter orange-golden */
  --color-warm-medium:      #EFCF9A; /* Softer orange-golden */
  --color-border:           rgba(0, 0, 0, 0.04);
  --color-border-light:     rgba(0, 0, 0, 0.02);
  --color-border-hover:     rgba(0, 0, 0, 0.16);
  --color-border-glow:      rgba(197, 160, 90, 0.35);

  --color-accent:           #09090B;
  --color-accent-gold:      #C5A05A;
  --color-accent-dim:       rgba(9, 9, 11, 0.06);
  --color-accent-hover:     #27272A;

  --color-text-primary:     #09090B;
  --color-text-secondary:   #52525B;
  --color-text-muted:       #71717A;
  --color-text-inverse:     #FFFFFF;

  /* Typography — Inter (Google Fonts) with ElevenLabs negative tracking */
  --font-display:           'Inter', -apple-system, BlinkMacSystemFont, "Geist", "Segoe UI", Roboto, sans-serif;
  --font-body:              'Inter', -apple-system, BlinkMacSystemFont, "Geist", "Segoe UI", Roboto, sans-serif;

  /* ElevenLabs Negative Tracking & Line-Height Rules */
  --tracking-display:       -0.04em;
  --tracking-h2:            -0.03em;
  --tracking-h3:            -0.02em;
  --tracking-body:          -0.011em;

  /* Type Scale */
  --text-xs:    0.75rem;     /* 12px */
  --text-sm:    0.875rem;    /* 14px */
  --text-base:  1rem;        /* 16px */
  --text-lg:    1.125rem;    /* 18px */
  --text-xl:    1.25rem;     /* 20px */
  --text-2xl:   1.5rem;      /* 24px */
  --text-3xl:   2rem;        /* 32px */
  --text-4xl:   2.5rem;      /* 40px */
  --text-5xl:   3.25rem;     /* 52px */
  --text-6xl:   4.25rem;     /* 68px */
  --text-7xl:   5.5rem;      /* 88px */

  /* Spacing System */
  --space-1:    4px;
  --space-2:    8px;
  --space-3:    12px;
  --space-4:    16px;
  --space-5:    20px;
  --space-6:    24px;
  --space-8:    32px;
  --space-10:   40px;
  --space-12:   48px;
  --space-16:   64px;
  --space-20:   80px;
  --space-24:   96px;
  --space-32:   128px;
  --space-40:   160px;

  /* Layout & Section Margins */
  --container-max:  1280px;
  --container-pad:  clamp(20px, 4vw, 56px);
  --gutter:         clamp(24px, 4vw, 56px);
  --section-gap:    clamp(80px, 9vh, 130px);

  /* Transitions */
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:      150ms;
  --dur-base:      250ms;
  --dur-slow:      400ms;

  /* Border Radius */
  --radius-pill:  9999px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: var(--tracking-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  /* Keep overflow visible so position:sticky sections work; clip horizontal bleed on html instead */
  overflow-x: visible;
}

html {
  background-color: var(--color-bg);
  color-scheme: light;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  /* hidden (not clip) — overflow-x:clip on the root broke sticky/IO quirks in Chromium */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
}

h1 {
  letter-spacing: var(--tracking-display);
  line-height: 1.08;
}

h2 {
  letter-spacing: var(--tracking-h2);
  line-height: 1.15;
}

h3 {
  letter-spacing: var(--tracking-h3);
  line-height: 1.25;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── Utility Classes ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-gap);
}

.section--tight {
  padding-block: clamp(48px, 5vh, 80px);
}

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

/* ── ElevenLabs Light Capsule Pill Badge / Overline ───────── */
.overline {
  display: none !important;
}

.overline::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  box-shadow: 0 0 6px rgba(197, 160, 90, 0.4);
  flex-shrink: 0;
}

/* ── Buttons (ElevenLabs Light CTAs) ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent-gold);
  color: #FFFFFF;
  border: 1px solid var(--color-accent-gold);
  box-shadow: 0 2px 10px rgba(197, 160, 90, 0.2);
}

.btn--primary:hover {
  background: #B69251;
  border-color: #B69251;
  box-shadow: 0 4px 16px rgba(197, 160, 90, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  background: #FFFFFF;
  color: #09090B;
  border: 1px solid #E4E4E7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.btn--outline:hover {
  background: #F4F4F6;
  border-color: #D4D4D8;
  color: #09090B;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #09090B;
  border: none;
  padding-inline: 0;
  gap: var(--space-2);
}

.btn--ghost:hover {
  color: var(--color-accent-gold);
}
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);


.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding-inline: 0;
  gap: var(--space-2);
}

.btn--ghost:hover {
  color: var(--color-accent-hover);
}

.btn--ghost .btn-arrow {
  transition: transform var(--dur-base) var(--ease-out);
}

.btn--ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   SITE HEADER — Fixed wrapper
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.site-header::before {
  display: none;
}

/* ============================================================
   NAVIGATION — Floating Smoked-Glass Panel
   ============================================================ */
.nav {
  position: relative;
  z-index: 105;
  pointer-events: auto;
  padding-inline: 0;
  padding-top: 0;
}

/* ── Light Frosted-glass floating container ──────────────── */
.nav__bar {
  position: relative;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 72px;
  width: 100%;
  max-width: 100%;
  padding-inline: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  pointer-events: auto;

  /* Transparent initial state for hero overlay */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;

  opacity: 1;
  transform: translateY(0);
  transition:
    background-color 300ms ease,
    backdrop-filter  300ms ease,
    border-color     300ms ease,
    box-shadow       300ms ease;
}

.nav__bar.is-ready {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll state — denser white glass over page content ─── */
.nav.is-scrolled .nav__bar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 12px 36px rgba(0, 0, 0, 0.08);
}

/* ── Logo ────────────────────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: opacity var(--dur-base) var(--ease-standard);
  flex-shrink: 0;
}

.nav__logo-img {
  height: clamp(56px, 6vh, 68px);
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  margin-top: 8px; /* Pushed down slightly as requested */
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav__logo-mark {
  width: 30px;
  height: 24px;
  flex-shrink: 0;
}

.nav__logo:hover {
  opacity: 0.88;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.03);
}

/* ── Desktop Links ───────────────────────────────────────── */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  list-style: none;
}

.nav__link,
.nav__dropdown-toggle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease-standard);
  padding-block: var(--space-2);
  position: relative;
  white-space: nowrap;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: none;
  border: none;
  cursor: pointer;
}

.nav__link::after,
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #FFFFFF;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-out);
  transform-origin: left;
}

.nav__link:hover,
.nav__dropdown-toggle:hover,
.nav__link[aria-current="page"],
.nav__dropdown-toggle[aria-current="page"],
.nav__dropdown.is-open .nav__dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav__dropdown-toggle:hover::after,
.nav__dropdown-toggle[aria-current="page"]::after,
.nav__dropdown.is-open .nav__dropdown-toggle::after {
  transform: scaleX(1);
}

/* Scrolled state — text becomes dark again when the nav bar turns white */
.nav.is-scrolled .nav__link,
.nav.is-scrolled .nav__dropdown-toggle {
  color: #52525B;
}

/* Light hero override — navigation links are dark by default */
.light-hero .nav:not(.is-scrolled) .nav__link,
.light-hero .nav:not(.is-scrolled) .nav__dropdown-toggle {
  color: #09090B;
}
.light-hero .nav:not(.is-scrolled) .nav__link::after,
.light-hero .nav:not(.is-scrolled) .nav__dropdown-toggle::after {
  background: #09090B;
}
.light-hero .nav:not(.is-scrolled) .nav__link:hover,
.light-hero .nav:not(.is-scrolled) .nav__dropdown-toggle:hover {
  color: rgba(9, 9, 11, 0.75);
}

.nav.is-scrolled .nav__link::after,
.nav.is-scrolled .nav__dropdown-toggle::after {
  background: #09090B;
}

.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__dropdown-toggle:hover,
.nav.is-scrolled .nav__link[aria-current="page"],
.nav.is-scrolled .nav__dropdown-toggle[aria-current="page"],
.nav.is-scrolled .nav__dropdown.is-open .nav__dropdown-toggle {
  color: #09090B;
}
.nav__dropdown.is-open .nav__dropdown-toggle::after {
  transform: scaleX(1);
}

/* Internal Pages — Navigation starts transparent and text is solid */
body.page-internal .nav__link, 
body.page-internal .nav__dropdown-toggle {
  color: #09090B !important;
}
body.page-internal .nav__link::after,
body.page-internal .nav__dropdown-toggle::after {
  background: #09090B !important;
}
body.page-internal .nav__link:hover,
body.page-internal .nav__dropdown-toggle:hover,
body.page-internal .nav__link[aria-current="page"],
body.page-internal .nav__dropdown-toggle[aria-current="page"],
body.page-internal .nav__dropdown.is-open .nav__dropdown-toggle {
  color: #09090B !important;
}

.nav__dropdown-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  transition: transform var(--dur-base) var(--ease-standard);
}

.nav__dropdown.is-open .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease,
              transform 220ms ease,
              visibility 220ms ease;
  z-index: 200;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #52525B;
  transition: background-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}

.nav__dropdown-item:hover {
  background: #F4F4F6;
  color: #09090B;
}

/* ── Desktop Actions (CTA button) ───────────────────────── */
.nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nav CTA — solid black capsule pill action */
.nav__actions .btn--primary,
.nav__mobile-cta-inline.btn--primary {
  background: #d4af37;
  color: #FFFFFF;
  border-color: #d4af37;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__actions .btn--primary:hover,
.nav__mobile-cta-inline.btn--primary:hover {
  background: #c29e2f;
  border-color: #c29e2f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.nav__actions .btn--primary:active,
.nav__mobile-cta-inline.btn--primary:active {
  transform: scale(0.98);
}

/* ── Mobile Controls ─────────────────────────────────────── */
.nav__mobile-controls {
  display: none;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 106;
}

.nav__mobile-cta-inline {
  display: none;
}

.nav.is-menu-open .nav__mobile-cta-inline {
  display: none !important;
}

/* Mobile hamburger / Close button */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 8px;
  position: relative;
  z-index: 107;
  pointer-events: auto;
  transition: background-color 200ms ease;
}

.nav__hamburger:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #09090B;
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 200ms ease,
              background-color 200ms ease;
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #09090B;
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #09090B;
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 251, 252, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 84px clamp(24px, 5vw, 40px) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
  z-index: 100;
  pointer-events: auto;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 500;
  color: #52525B;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--dur-base) var(--ease-standard);
}

.nav__mobile-link:hover {
  color: #09090B;
}

.nav__mobile-section {
  padding-top: var(--space-2);
}

.nav__mobile-section-title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.nav__mobile-sub {
  display: block;
  font-size: var(--text-xl);
  font-weight: 400;
  color: #52525B;
  padding-block: var(--space-3);
  padding-left: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--dur-base) var(--ease-standard);
}

.nav__mobile-sub:hover {
  color: var(--color-text-primary);
}

.nav__mobile-cta {
  margin-top: var(--space-8);
}

/* ── Nav Responsive Breakpoints ──────────────────────────── */
@media (max-width: 900px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__mobile-controls {
    display: flex;
  }

  .nav__mobile-cta-inline {
    display: inline-flex;
    font-size: 13px;
    padding: 10px 16px;
    white-space: nowrap;
  }
}

@media (max-width: 500px) {
  .nav__mobile-cta-inline {
    display: none;
  }
}

/* ============================================================
   HERO — Full-Screen Image with Content in Reflection Area
   ============================================================ */
.hero--fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  padding: 0;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 0;
}

/* Overlay — Corner shadows for the sky scene and a central white glow */
.hero__bg-overlay {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 0% 0%, rgba(197, 160, 90, 0.3) 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(197, 160, 90, 0.3) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, var(--color-surface) 100%);
  z-index: 2;
}

/* Content block — positioned lower on the screen */
.hero__fullscreen-content {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 clamp(20px, 5vw, 60px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Adjust hero title & subtitle colors, alignment */
.hero--fullscreen .hero__title {
  color: #09090B;
  text-shadow: none;
  text-align: center;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.05;
  position: relative;
  top: -12px;
}

.hero--fullscreen .hero__circled-word em {
  color: #d4af37;
}

.hero--fullscreen .hero__circle-svg ellipse {
  stroke: #d4af37;
}

.hero--fullscreen .hero__subtitle {
  color: #3F3F46;
  text-shadow: none;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -8px; /* Removed the large 28px gap to fix spacing */
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.1px;
}

.hero--fullscreen .hero__actions {
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.hero--fullscreen .hero__link-arrow-text {
  color: #c29b2b; /* Slightly darker than #d4af37 */
  font-weight: 500;
  font-size: 15px;
}

.hero--fullscreen .hero__link-arrow-text:hover {
  color: #b08d29;
}

.hero--fullscreen .hero__btn-pill {
  background: #d4af37;
  border: 1px solid #d4af37;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  transition: all 0.2s ease;
}

.hero--fullscreen .hero__btn-pill:hover {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
}

/* Responsive: on mobile keep centered */
@media (max-width: 768px) {
  .hero--fullscreen {
    height: 100svh;
  }
}

/* ============================================================
   HERO — Section 01 (Dual-Layer Cursor Reveal)
   ============================================================ */

/* ── Hero entrance zoom keyframe ─────────────────────────── */
@keyframes hero-zoom-in {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}

/* ── Text entrance keyframes ─────────────────────────────── */
@keyframes hero-line-in {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HERO — Split-Screen Editorial Design System ("Few and Far" Style)
   ============================================================ */
.hero--split {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #F6F5F2;
  overflow: hidden;
  padding: 0;
}

.hero__split-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
  width: 100%;
}

/* ── Left Editorial Panel ── */
.hero__left-panel {
  background: #F6F5F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(80px, 10vh, 110px);
  padding-bottom: clamp(40px, 6vh, 70px);
  padding-inline: clamp(32px, 4vw, 64px);
  position: relative;
  z-index: 10;
}

.hero__left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  margin-inline: auto;
  width: 100%;
}

/* Headline & Circled Word */
.hero__headline-wrapper {
  margin-bottom: clamp(20px, 3vh, 32px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #09090B;
}

.hero__circled-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-inline: 4px;
  margin-inline: 14px; /* Added gap to accommodate the gold ring */
}

.hero__circled-word em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #09090B;
}

.hero__circle-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) rotate(-2deg);
  width: 120%;
  height: 140%;
  pointer-events: none;
  overflow: visible;
}

.hero__circle-svg ellipse {
  stroke-dasharray: 480;
  stroke-dashoffset: 0;
  animation: circle-draw 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes circle-draw {
  from { stroke-dashoffset: 480; }
  to   { stroke-dashoffset: 0; }
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.62;
  color: #52525B;
  margin-bottom: clamp(28px, 4vh, 44px);
  max-width: 520px;
}

/* Actions Group */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

.hero__btn-pill {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
}

.hero__link-arrow-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #09090B;
  transition: color 200ms ease;
}

.hero__link-arrow-text svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__link-arrow-text:hover {
  color: var(--color-accent-gold);
}

.hero__link-arrow-text:hover svg {
  transform: translateX(4px);
}

/* ── Right Visual Stage ── */
.hero__right-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  align-self: stretch;
  overflow: hidden;
  background: #09090B;
}

.hero__visual-stage {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero__stage-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.hero__stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}



/* Bottom Floating Glass Card */
.hero__floating-card {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: clamp(24px, 4vw, 40px);
  right: clamp(24px, 4vw, 40px);
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 20px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hero__card-thumb {
  width: 90px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717A;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #09090B;
  letter-spacing: -0.01em;
}

.hero__card-desc {
  font-size: 12px;
  color: #52525B;
  line-height: 1.4;
}

.hero__card-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #71717A;
  font-size: 11px;
}

.hero__page-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D4D4D8;
}

.hero__page-dot.is-active {
  background: #09090B;
  height: 10px;
  border-radius: 9999px;
}

/* Responsive Split Collapse */
@media (max-width: 992px) {
  .hero__split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__left-panel {
    padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 32px);
  }

  .hero__right-panel {
    min-height: 480px;
  }

  .hero__top-links {
    display: none;
  }
}

/* ── Responsive: collapse to single column on tablet/mobile ─ */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .hero__col-left,
  .hero__col-right {
    grid-column: 1;
  }

  .hero__title {
    font-size: clamp(2.4rem, 7vw, 3.5rem);
    white-space: normal;
  }

  .hero__title-line {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__content {
    padding-bottom: 40px;
  }
}

/* ── Accessibility: reduced motion shows all immediately ─── */
@media (prefers-reduced-motion: reduce) {
  .hero__base-bg,
  .hero__reveal-bg {
    animation: none !important;
  }

  .hero__subtitle,
  .hero__link-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: color var(--dur-base), border-color var(--dur-base) !important;
  }
}

/* ── Mobile: reveal layer hidden on touch devices ─────────── */
@media (hover: none) or (pointer: coarse) {
  .hero__reveal-bg {
    /* On touch devices, show a gentle fixed gradient reveal
       at the upper right to hint at the secondary layer */
    --reveal-x: 70%;
    --reveal-y: 30%;
    --reveal-radius: 320px;
  }
}


/* ============================================================
   INTRODUCTION — Section 02
   ============================================================ */
.intro {
  background: transparent;
  border-top: none;
  border-bottom: 1px solid var(--color-border);
  padding-top: clamp(180px, 20vh, 240px);
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-20);
  align-items: start;
}

.intro__left {
  position: sticky;
  top: calc(72px + var(--space-12));
}

.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: var(--tracking-h2);
  color: var(--color-text-primary);
  margin-top: 0;
}

.intro__heading em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #C5A05A;
}

.intro__right {
  padding-top: var(--space-2);
}

.intro__paragraph {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.intro__paragraph:last-child {
  margin-bottom: 0;
}

.intro__paragraph strong {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ============================================================
   SERVICES — Section 03 & 04 (Consolidated Feature Grid)
   ============================================================ */
.services-feature {
  background: #FFFFFF;
  padding: clamp(100px, 12vh, 160px) 0;
}

.services-feature__container {
  display: flex;
  flex-direction: column;
}

/* Top Header Area */
.services-feature__pill {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  width: -moz-fit-content;
  vertical-align: middle;
  background: #D6B570; /* Lighter gold */
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-top: 24px;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.services-feature__top-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #3F3F46;
}

/* Main Headline */
.services-feature__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #09090B;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
}

.services-feature__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #C5A05A;
}

/* Feature Grid */
.services-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* Feature Cards */
.feature-card {
  background: #F8F8F9; /* very light neutral grey */
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  min-height: 440px;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms ease;
}

/* Card Variations */
/* Card Variations */
/* 1: Deep Gold */
.feature-card--1 {
  background: #85662E;
}
.feature-card--1 .feature-card__bg-icon {
  color: #FFFFFF;
  opacity: 0.08;
}
.feature-card--1 .feature-card__title { color: #FFFFFF; }
.feature-card--1 .feature-card__desc { color: rgba(255,255,255,0.85); }

/* 2: Base Gold */
.feature-card--2 {
  background: #C5A05A;
}
.feature-card--2 .feature-card__bg-icon {
  color: #FFFFFF;
  opacity: 0.15;
}
.feature-card--2 .feature-card__title { color: #FFFFFF; }
.feature-card--2 .feature-card__desc { color: rgba(255,255,255,0.9); }

/* 3: Light Gold */
.feature-card--3 {
  background: #D7BC84;
}
.feature-card--3 .feature-card__bg-icon {
  color: #FFFFFF;
  opacity: 0.15;
}
.feature-card.feature-card--3:hover .feature-card__bg-icon {
  opacity: 0.8;
}
.feature-card--3 .feature-card__title { color: #18181B; }
.feature-card--3 .feature-card__desc { color: #3F3F46; }

/* 4: Pale Gold */
.feature-card--4 {
  background: #E8D5AA;
}
.feature-card--4 .feature-card__bg-icon {
  color: #FFFFFF; 
  opacity: 0.15;
}
.feature-card.feature-card--4:hover .feature-card__bg-icon {
  opacity: 0.8;
}
.feature-card--4 .feature-card__title { color: #18181B; }
.feature-card--4 .feature-card__desc { color: #3F3F46; }

/* 5: Warm Gold */
.feature-card--5 {
  background: #B58F4A;
}
.feature-card--5 .feature-card__bg-icon {
  color: #FFFFFF;
  opacity: 0.15;
}
.feature-card--5 .feature-card__title { color: #FFFFFF; }
.feature-card--5 .feature-card__desc { color: rgba(255,255,255,0.9); }

/* 6: Very Light Gold */
.feature-card--6 {
  background: #F6ECCD;
}
.feature-card--6 .feature-card__bg-icon {
  color: #C5A05A;
  opacity: 0.15;
}
.feature-card--6 .feature-card__title { color: #18181B; }
.feature-card--6 .feature-card__desc { color: #3F3F46; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(197, 160, 90, 0.06);
}

/* Shader Background (WebGL) */
.feature-card__shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6; /* Soften the white shape slightly */
}

/* Oversized Background Icons */
.feature-card__bg-icon {
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -40px;
  right: -50px;
  color: #C5A05A;
  opacity: 0.06;
  transition: opacity 400ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.feature-card:hover .feature-card__bg-icon {
  opacity: 0.12;
  transform: scale(1.05) translate(-10px, -10px);
}

.feature-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #18181B; /* dark charcoal */
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
  min-height: 64px; /* Forces title to always take up 2 lines of space */
}

.feature-card__desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #52525B; /* dark grey */
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-feature__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .services-feature__grid {
    /* Stacked card layout or scroll */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 24px;
    /* Allows scrolling past edge of container smoothly */
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }
  
  .services-feature__grid::-webkit-scrollbar {
    display: none;
  }
  
  .feature-card {
    min-width: 80vw;
    scroll-snap-align: center;
  }
}

/* ============================================================
   BUSINESS JOURNEY — Section 05
   Flex-based two-zone approach. Each of the 5 equal columns
   has a fixed-height upper zone and lower zone. The marker
   always lives between them at the same vertical position.
   Spine is a ::before pseudo-element whose Y matches exactly
   the marker centre: top = --jt-upper + (marker-h / 2).
   Spine spans left: 10% → right: 10% (= col-1 centre → col-5 centre
   for 5 equal flex columns).
   ============================================================ */

/* ── Variables ── */
:root {
  --jt-upper:  172px;  /* fixed height: above content zone (text + connector) */
  --jt-lower:  128px;  /* fixed height: below content zone (connector + text) */
  --jt-marker:  58px;  /* marker circle diameter */
  --jt-conn:    46px;  /* dashed connector height */
}

/* ── Section wrapper ── */
#journey-wrapper {
  position: relative;
  /* height will be set by JS based on runway needed */
}

.journey {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  /* Natural height — sticky 100vh left empty white space in Chromium after release */
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(48px, 6vh, 80px);
}

/* Layer 1: Faint atmospheric background canvas */
.journey-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* Layer 2: Stable Dark Readability Mask Overlay */
.journey-readability-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: 
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.45) 100%),
    radial-gradient(circle at 50% 65%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.4) 100%);
}

/* Layer 3: Timeline & Typography Content */
.journey .container {
  position: relative;
  z-index: 3;
}

.journey__header {
  max-width: 700px;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.journey__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: var(--tracking-h2);
  color: #09090B;
  margin-top: var(--space-3);
}

.journey__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #C5A05A;
}

/* ── Timeline flex row ── */
.jt {
  display: flex;
  align-items: stretch;
  position: relative;
}

/*
 * Spine pseudo-element.
 *
 * Y position = marker centre from top of container:
 *   --jt-upper (172px) + half marker (29px) = 201px
 *
 * X span:
 *   With 5 equal flex columns, column centres are at 10%, 30%, 50%, 70%, 90%.
 *   So: left = 100%/10 = 10% (col-1 centre)
 *       right = 100%/10 = 10% (mirror of col-5 centre from right edge)
 */
.jt::before {
  content: '';
  position: absolute;
  top: calc(var(--jt-upper) + var(--jt-marker) / 2);
  left:  calc(100% / 10);   /* exact centre of column 1 */
  right: calc(100% / 10);   /* exact centre of column 5 */
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.12) 0%, 
    rgba(197, 160, 90, 0.45) 50%, 
    rgba(0, 0, 0, 0.12) 100%
  );
  transform: translateY(-1.5px);
  z-index: 1;
  pointer-events: none;
}

.jt-line-container {
  position: absolute;
  top: calc(var(--jt-upper) + var(--jt-marker) / 2);
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 3px;
  transform: translateY(-1.5px);
  z-index: 2;
  pointer-events: none;
}

.jt-line-fill {
  width: 100%;
  height: 100%;
  background: #C5A05A;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ── Each column: equal-width flex child ── */
.jt-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.jt-col.is-active .jt-col__marker {
  border-color: #C5A05A; /* Base gold */
  background: #C5A05A; /* Base gold */
  box-shadow: none;
  transform: translateZ(0);
}

/* ── Upper zone: fixed height, content at bottom ── */
.jt-col__upper {
  height: var(--jt-upper);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* text+connector flush to the bottom = near marker */
}

/* ── Marker circle: always sandwiched between upper and lower zones ── */
.jt-col__marker {
  width: var(--jt-marker);
  height: var(--jt-marker);
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.12);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  /* Fix flickering during scroll */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: border-color 350ms ease,
              background-color 350ms ease,
              box-shadow 350ms ease,
              transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}



.jt-col__num {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #C5A05A; /* Default gold */
  transition: color 350ms ease;
}

.jt-col.is-active .jt-col__num {
  color: #FFFFFF; /* White when active */
}

/* ── Lower zone: content at top ── */
.jt-col__lower {
  flex: 1;
  min-height: var(--jt-lower);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* ── Arrow connector (Removed) ── */
.jt-col__conn {
  display: none;
}

/* ── Bursting Bubble Animation ── */
@keyframes bubbleBurstUp {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  10% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.3); }
  60% { transform: translate(-50%, -25px) scale(0.6); opacity: 0.4; }
  100% { transform: translate(-50%, -35px) scale(1.2); opacity: 0; }
}

@keyframes bubbleBurstDown {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  10% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.3); }
  60% { transform: translate(-50%, 25px) scale(0.6); opacity: 0.4; }
  100% { transform: translate(-50%, 35px) scale(1.2); opacity: 0; }
}

.jt-col__marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #C5A05A;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%) scale(0);
}

/* Fire animation only when transitioning to active */
.jt-col--a.is-active .jt-col__marker::before {
  animation: bubbleBurstUp 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.jt-col--b.is-active .jt-col__marker::before {
  animation: bubbleBurstDown 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* ── Text block ── */
.jt-col__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 6px;
}

/* Above nodes: gap between text and circle */
.jt-col--a .jt-col__text { padding-bottom: 10px; }

/* Below nodes: gap between circle and text */
.jt-col--b .jt-col__text { padding-top: 36px; }

.jt-col__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #52525B; /* Darker for prominence */
  line-height: 1.3;
  margin: 0;
  white-space: nowrap; /* Keep heading on one line */
  transition: transform 350ms ease, color 350ms ease;
}

.jt-col.is-active .jt-col__title { 
  color: #C5A05A; /* Gold when active */
  transform: translateY(-2px);
}

.jt-col__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #71717A; /* Darkened for better readability */
  line-height: 1.55;
  margin: 0;
  min-height: 72px; /* Forces descriptions to occupy the same height, aligning titles above them */
  transition: color 350ms ease, font-weight 350ms ease;
}

.jt-col.is-active .jt-col__desc {
  color: #3F3F46; /* Stronger dark grey when active */
  font-weight: 500;
}

/* ── Mobile / tablet: collapse to vertical list ── */
@media (max-width: 900px) {
  .jt {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    margin-left: 28px;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
  }

  .jt::before { display: none; }

  .jt-col {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 32px 40px;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
  }

  .jt-col__upper,
  .jt-col__lower {
    display: contents;
  }

  .jt-col__conn { display: none; }

  .jt-col__marker {
    position: absolute;
    left: 0;
    top: 32px;
    transform: translateX(-50%);
    margin: 0;
    order: 0;
    z-index: 2;
  }

  .jt-col__text,
  .jt-col--a .jt-col__text,
  .jt-col--b .jt-col__text {
    width: 100%;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
  }
}

/* ============================================================
   TRANSFORMATION — Section 06
   ============================================================ */
/* ============================================================
   TRANSFORMATION — Section 06 (Interactive Editorial Process)
   ============================================================ */
/* ============================================================
   TRANSFORMATION — Section 06 (Rough Design Showcase)
   ============================================================ */
.transform {
  background: var(--color-bg, #FFFFFF);
  padding-block: clamp(80px, 10vh, 120px);
  scroll-margin-top: 100px;
}

.transform__container {
  width: 100%;
}

.transform__card {
  display: flex;
  min-height: clamp(520px, 68vh, 620px);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Left Side: Fixed Content Panel (~45%) */
.transform__left {
  flex: 0 0 44%;
  width: 44%;
  background: #1C1D21;
  color: #FFFFFF;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.transform__title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #C5A05A, #EAEAEA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0 0 24px 0;
}

.transform__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin: 0;
}

/* Right Side: Interactive Image & Text Slider (~56%) */
.transform__right {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* Background Images Layer */
.transform__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.transform__bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
  transform: scale(1.04);
}

.transform__bg-item.is-active {
  opacity: 1;
  transform: scale(1);
}

.transform__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

/* Content Layer (Bottom Left Serif Title + Description) */
.transform__content-layer {
  position: absolute;
  bottom: 80px;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  z-index: 5;
}

.transform__slide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease, visibility 500ms ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.transform__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.transform__slide-title {
  font-family: var(--font-display), "Georgia", "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin: 0 0 16px 0;
}

.transform__slide-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0;
}

/* Controls Layer (Bottom Left Progress Bar + Bottom Right Round Arrows) */
.transform__controls-layer {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transform__loader-box {
  display: flex;
  align-items: center;
}

.transform__loader-track {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.transform__loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 12.5%;
  background: #FFFFFF;
  transition: width 400ms ease;
}

.transform__arrows-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transform__arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 250ms ease, background-color 250ms ease, opacity 250ms ease;
}

.transform__arrow-btn svg {
  width: 20px;
  height: 20px;
}

.transform__arrow-btn:hover {
  transform: scale(1.08);
  background: #F4F4F6;
}

.transform__arrow-btn:active {
  transform: scale(0.96);
}

/* ── Tablet / Mobile Responsive Adaptations ── */
@media (max-width: 992px) {
  .transform__inner {
    flex-direction: column;
    gap: 40px;
  }

  .transform__left {
    width: 100%;
    flex: none;
  }

  .transform__left-sticky {
    position: relative;
    top: 0;
  }

  .transform__right {
    width: 100%;
    flex: none;
  }

  .transform__spine-track {
    padding-left: 44px;
    gap: 20px;
  }

  .transform__spine-base,
  .transform__spine-active {
    left: 18px;
  }

  .transform-step__dot {
    left: -31px;
  }

  .transform__nav-controls {
    padding-left: 0;
  }
}


  

  .transform__spine-track {
    padding-left: 36px;
  }

  .transform__spine-base,
  .transform__spine-active {
    left: 14px;
  }

  .transform-step__indicator {
    left: -22px;
  }

  .transform-step {
    padding-block: var(--space-5) !important;
  }

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


/* ============================================================
   WHY BQRAFT — Section 07 — Scroll-Driven Feature Showcase
   ============================================================ */

.why {
  background: var(--color-bg);
  position: relative;
  padding: 0;
}

/* ── Pre-Sticky Section Intro ── */
.why__intro {
  padding-top: clamp(80px, 12vh, 120px);
  padding-bottom: clamp(48px, 8vh, 72px);
  max-width: 800px;
}

.why__intro .overline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-4);
}

.why__intro-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-4) 0;
}

.why__intro-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 237, 230, 0.65);
  margin: 0;
  max-width: 620px;
}

/* ============================================================
   WHY BQRAFT — Section 07 (Scroll-Driven Sticky Split-Layout)
   ============================================================ */
.why-split {
  background: var(--color-bg, #FBFBF9);
  /* Override .section padding-block — tall bottom padding looked like empty space in Chrome */
  padding-top: clamp(36px, 5vh, 56px);
  padding-bottom: clamp(36px, 5vh, 56px);
  position: relative;
}

.why-split__header {
  margin-bottom: clamp(24px, 3.5vh, 40px);
}

.why-split__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C5A05A;
  margin-bottom: 12px;
  display: block;
}

.why-split__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #09090B;
  margin: 0;
}

.why-split__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding-left: 0.15em;
  color: var(--color-accent-gold);
}

/* ── Split Layout Stage ── */
.why-scroll-track {
  /* Auto height — Chromium left a large empty white gap with the old 200vh sticky runway */
  height: auto;
  position: relative;
}

.why-split__stage {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  padding-bottom: 8px;
}

.why-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.why-split__left {
  height: 300px;
  z-index: 5;
}

.why-split__right {
  height: auto;
  min-height: 200px;
  position: relative;
}

.why-steps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.why-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 90, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.why-step-dot.is-active {
  background: #C5A05A;
  border-color: #C5A05A;
  transform: scale(1.15);
}

.why-step-dot:hover {
  border-color: #C5A05A;
}

@media (min-width: 768px) {
  .why-split__grid {
    grid-template-columns: 46% 48%;
    column-gap: 6%;
    align-items: stretch;
  }

  .why-split__left {
    /* Cap height so Chromium does not leave a tall white band under the panels */
    height: clamp(320px, 38vh, 400px);
  }

  .why-split__right {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }
}

/* Left Visual Interactive Container */
.why-vis-container {
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.why-vis-state {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.15s ease-out, transform 0.2s ease-out;
  pointer-events: none;
}

.why-vis-state.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.3s ease-out 0.1s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  pointer-events: auto;
}

.why-vis__svg {
  width: 100%;
  height: 100%;
  max-height: 420px;
  overflow: visible;
}

/* ────────────────────────────────────────
   WHY VIS — SVG Motion Animations
   Each state plays when .is-active is added
──────────────────────────────────────── */

/* Shared: elements start hidden and fade in */
@keyframes why-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes why-pop-in {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes why-slide-right {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes why-slide-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes why-pulse-ring {
  0%   { r: 48; opacity: 0.12; }
  50%  { r: 56; opacity: 0.05; }
  100% { r: 48; opacity: 0.12; }
}
@keyframes why-spoke-draw {
  from { stroke-dashoffset: 80; opacity: 0; }
  to   { stroke-dashoffset: 0;  opacity: 0.5; }
}
@keyframes why-line-draw {
  from { stroke-dashoffset: 600; opacity: 0; }
  to   { stroke-dashoffset: 0;   opacity: 1; }
}
@keyframes why-frame-expand {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes why-dash-flow {
  from { stroke-dashoffset: 24; }
  to   { stroke-dashoffset: 0; }
}
@keyframes why-hub-glow {
  0%   { opacity: 0.18; }
  50%  { opacity: 0.32; }
  100% { opacity: 0.18; }
}

/* --------------------------------------------------
   STATE 01 — 360° Business Coverage
-------------------------------------------------- */

/* Center hub pulse */
.why-vis-state[data-vis="0"].is-active circle:nth-child(1) {
  animation: why-pulse-ring 3s ease-in-out infinite 0.6s;
}
.why-vis-state[data-vis="0"].is-active circle:nth-child(2) {
  animation: why-hub-glow 3s ease-in-out infinite 0.6s;
}
/* Center core */
.why-vis-state[data-vis="0"].is-active circle:nth-child(3) {
  animation: why-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
/* Spokes draw in */
.why-vis-state[data-vis="0"].is-active line:nth-of-type(1) {
  animation: why-spoke-draw 0.6s ease-out 0.5s both;
  stroke-dasharray: 4 3;
}
.why-vis-state[data-vis="0"].is-active line:nth-of-type(2) {
  animation: why-spoke-draw 0.6s ease-out 0.65s both;
  stroke-dasharray: 4 3;
}
.why-vis-state[data-vis="0"].is-active line:nth-of-type(3) {
  animation: why-spoke-draw 0.6s ease-out 0.8s both;
  stroke-dasharray: 4 3;
}
.why-vis-state[data-vis="0"].is-active line:nth-of-type(4) {
  animation: why-spoke-draw 0.6s ease-out 0.95s both;
  stroke-dasharray: 4 3;
}
.why-vis-state[data-vis="0"].is-active line:nth-of-type(5) {
  animation: why-spoke-draw 0.6s ease-out 1.1s both;
  stroke-dasharray: 4 3;
}
.why-vis-state[data-vis="0"].is-active line:nth-of-type(6) {
  animation: why-spoke-draw 0.6s ease-out 1.25s both;
  stroke-dasharray: 4 3;
}
/* Satellite nodes stagger in */
.why-vis-state[data-vis="0"].is-active circle:nth-child(8)  { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s  both; }
.why-vis-state[data-vis="0"].is-active circle:nth-child(10) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s both; }
.why-vis-state[data-vis="0"].is-active circle:nth-child(12) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s  both; }
.why-vis-state[data-vis="0"].is-active circle:nth-child(14) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s both; }
.why-vis-state[data-vis="0"].is-active circle:nth-child(16) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s  both; }
.why-vis-state[data-vis="0"].is-active circle:nth-child(18) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s both; }

/* --------------------------------------------------
   STATE 02 — Data-Driven Decisions
-------------------------------------------------- */

/* Performance line draws in */
.why-vis-state[data-vis="1"].is-active path:nth-of-type(2) {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: why-line-draw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
/* Area fill fades in */
.why-vis-state[data-vis="1"].is-active path:nth-of-type(1) {
  animation: why-fade-in 0.8s ease 0.8s both;
}
/* Data points pop in */
.why-vis-state[data-vis="1"].is-active circle:nth-of-type(1) { animation: why-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s  both; }
.why-vis-state[data-vis="1"].is-active circle:nth-of-type(2) { animation: why-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s both; }
.why-vis-state[data-vis="1"].is-active circle:nth-of-type(3) { animation: why-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s  both; }
.why-vis-state[data-vis="1"].is-active circle:nth-of-type(4) { animation: why-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s both; }
.why-vis-state[data-vis="1"].is-active circle:nth-of-type(5) { animation: why-pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s  both; }
/* KPI card slides in */
.why-vis-state[data-vis="1"].is-active rect {
  animation: why-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

/* --------------------------------------------------
   STATE 03 — Rapid Implementation
-------------------------------------------------- */

/* Timeline spine removed as per user request */
/* Phase rows slide in sequentially */
.why-vis-state[data-vis="2"].is-active g:not([transform]) circle { display: none; }
.why-vis-state[data-vis="2"].is-active circle:nth-of-type(1) {
  animation: why-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}
.why-vis-state[data-vis="2"].is-active circle:nth-of-type(2) {
  animation: why-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
.why-vis-state[data-vis="2"].is-active circle:nth-of-type(3) {
  animation: why-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}
.why-vis-state[data-vis="2"].is-active circle:nth-of-type(4) {
  animation: why-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}
/* Phase label rows slide in */
.why-vis-state[data-vis="2"].is-active rect:nth-of-type(1) { animation: why-slide-right 0.5s ease-out 0.55s both; }
.why-vis-state[data-vis="2"].is-active rect:nth-of-type(2) { animation: why-slide-right 0.5s ease-out 0.85s both; }
.why-vis-state[data-vis="2"].is-active rect:nth-of-type(3) { animation: why-slide-right 0.5s ease-out 1.15s both; }
.why-vis-state[data-vis="2"].is-active rect:nth-of-type(4) { animation: why-slide-right 0.5s ease-out 1.45s both; }

/* --------------------------------------------------
   STATE 04 — Scalable Solutions
-------------------------------------------------- */

/* Inner core frame scales up first */
.why-vis-state[data-vis="3"].is-active rect:nth-of-type(1) {
  transform-origin: center;
  transform-box: fill-box;
  animation: why-frame-expand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
/* Middle frame expands */
.why-vis-state[data-vis="3"].is-active rect:nth-of-type(2) {
  transform-origin: center;
  transform-box: fill-box;
  animation: why-frame-expand 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}
/* Outer frame expands last */
.why-vis-state[data-vis="3"].is-active rect:nth-of-type(3) {
  transform-origin: center;
  transform-box: fill-box;
  animation: why-frame-expand 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

/* --------------------------------------------------
   STATE 05 — Proven Track Record
-------------------------------------------------- */

/* Map silhouette fades in */
.why-vis-state[data-vis="4"].is-active path:nth-of-type(1) {
  animation: why-fade-in 0.8s ease 0.3s both;
}
/* Connection lines draw in */
.why-vis-state[data-vis="4"].is-active line:nth-of-type(1) {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: why-line-draw 0.7s ease-out 0.7s both;
}
.why-vis-state[data-vis="4"].is-active line:nth-of-type(2) {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: why-line-draw 0.7s ease-out 0.85s both;
}
.why-vis-state[data-vis="4"].is-active line:nth-of-type(3) {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: why-line-draw 0.7s ease-out 1s both;
}
/* Hub groups pop in with stagger */
.why-vis-state[data-vis="4"].is-active g:nth-of-type(1) { animation: why-fade-in 0.45s ease 0.85s both; }
.why-vis-state[data-vis="4"].is-active g:nth-of-type(2) { animation: why-fade-in 0.45s ease 1.05s both; }
.why-vis-state[data-vis="4"].is-active g:nth-of-type(3) { animation: why-fade-in 0.45s ease 1.25s both; }
/* Centre dot pops in */
.why-vis-state[data-vis="4"].is-active circle {
  animation: why-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}

/* Reset animations when state becomes inactive */
.why-vis-state:not(.is-active) * {
  animation: none !important;
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .why-vis-state * {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Right Storytelling Timeline ── */
.why-story-block {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  padding-block: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s;
  transform: translateY(10px);
}

@media (min-width: 768px) {
  .why-split__right {
    /* Match left visual height so absolute story blocks have a real box */
    min-height: clamp(320px, 38vh, 400px);
  }
}

.why-story-block:last-child {
  margin-bottom: 0;
}

.why-story-block.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.why-story-num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #C5A05A;
  margin-bottom: 12px;
  display: block;
}

.why-story-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #09090B;
  margin-top: 0;
  margin-bottom: 10px;
}

.why-story-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 500;
  color: #18181B;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.45;
}

.why-story-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: #52525B;
  margin: 0;
  max-width: 520px;
}

/* ── Mobile Layout (<768px) ── */
@media (max-width: 767px) {
  .why-scroll-track {
    height: auto;
  }

  .why-split__stage {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .why-split__left {
    position: relative;
    top: 0;
    height: 320px;
    margin-bottom: 20px;
  }

  .why-split__right {
    height: auto;
  }

  .why-story-block {
    position: relative !important;
    inset: auto !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding-block: 20px;
    margin-bottom: 32px;
  }
}

/* ============================================================
   INDUSTRIES — Section 08 (Editorial Grid System — Reference Match)
   ============================================================ */
.industries {
  background: transparent;
  padding-top: clamp(40px, 6vh, 60px);
  padding-bottom: clamp(80px, 10vh, 130px);
  position: relative;
}

.industries__container {
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
}

/* ── Section Intro ── */
.industries__intro {
  margin-bottom: clamp(48px, 6vh, 72px);
  text-align: left;
  max-width: 800px;
}

.industries__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C5A05A;
  margin-bottom: 12px;
}

.industries__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #09090B;
  margin-top: 0;
  margin-bottom: 14px;
  text-align: left;
}

.industries__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-accent-gold);
}

.industries__sub {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  color: #52525B;
  margin: 0;
  max-width: 580px;
}

/* ── Grid Layout (Asymmetrical Editorial Masonry Grid — Reference Match) ── */
.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  /* Row 1: 1/3 (span 2) and 2/3 (span 4) */
  .industry-card:nth-child(1) {
    grid-column: span 2;
  }
  .industry-card:nth-child(2) {
    grid-column: span 4;
  }

  /* Row 2: 1/3 (span 2), 1/3 (span 2), 1/3 (span 2) */
  .industry-card:nth-child(3),
  .industry-card:nth-child(4),
  .industry-card:nth-child(5) {
    grid-column: span 2;
  }

  /* Row 3: 1/2 (span 3), 1/2 (span 3) */
  .industry-card:nth-child(6),
  .industry-card:nth-child(7) {
    grid-column: span 3;
  }
}

/* ── Card Geometry & Structure ── */
.industry-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Blank Neutral Image Area (Expands to occupy all upper visual area) */
.industry-card__image-container {
  width: 100%;
  height: 250px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #EFEFEA;
}

.industry-card__image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 70%, transparent 40%, rgba(239, 239, 234, 0.6) 100%);
  pointer-events: none;
}

.industry-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #EFEFEA;
}

.industry-card__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Area (Anchored at bottom of card) */
.industry-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.industry-card__num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #C5A05A;
  margin-bottom: 10px;
  display: block;
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #09090B;
  margin-top: 0;
  margin-bottom: 10px;
}

.industry-card__desc {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.55;
  color: #52525B;
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Scroll Entrance Animations ── */
@media (prefers-reduced-motion: no-preference) {
  .industries__intro.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .industry-card.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  }

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

/* Stagger sequence */
.industry-card:nth-child(1) { transition-delay: 40ms; }
.industry-card:nth-child(2) { transition-delay: 80ms; }
.industry-card:nth-child(3) { transition-delay: 120ms; }
.industry-card:nth-child(4) { transition-delay: 160ms; }
.industry-card:nth-child(5) { transition-delay: 200ms; }
.industry-card:nth-child(6) { transition-delay: 240ms; }
.industry-card:nth-child(7) { transition-delay: 280ms; }

/* ── Responsive Breakpoints ── */
@media (min-width: 641px) and (max-width: 1023px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .industry-card:nth-child(1),
  .industry-card:nth-child(2),
  .industry-card:nth-child(3),
  .industry-card:nth-child(4),
  .industry-card:nth-child(5),
  .industry-card:nth-child(6) {
    grid-column: span 1;
  }

  .industry-card:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .industries__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    grid-column: span 1 !important;
  }

  .industry-card__body {
    padding: 20px;
  }

  .industries__intro {
    margin-bottom: 36px;
  }
}


/* ============================================================
   CORE VALUES — Section 09 (Redesigned 5-Column Modular Strip)
   ============================================================ */
.values {
  background: #F9F7F2;
  padding-block: clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}

.values__container {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Section Editorial Intro ── */
.values__header {
  max-width: 900px;
  margin-bottom: clamp(48px, 6vh, 80px);
  text-align: left;
}

.values__header .overline {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.values__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 5.5vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 300;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

/* ── 5-Column Horizontal Value Strip (Desktop: Single Row) ── */
.values__strip-wrapper {
  width: 100%;
  position: relative;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ── Unified Value Module Interaction System ── */
.value-module {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  padding: clamp(28px, 2.2vw, 36px) clamp(20px, 1.6vw, 26px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  cursor: default;
  transform: translateY(0) scale(1);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 400ms ease,
              box-shadow 500ms ease;
}

/* Layering hierarchy for card content vs overlays */
.value-module__top,
.value-module__middle,
.value-module__symbol,
.value-module__desc {
  position: relative;
  z-index: 2;
}

/* Subtle Light Sweep Overlay */
.value-module::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.035) 48%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(255, 255, 255, 0.035) 52%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

/* Cursor-Responsive Radial Highlight Overlay */
.value-module__cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  background: radial-gradient(
    350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(209, 170, 88, 0.045),
    transparent 60%
  );
  z-index: 1;
}

.value-module--gold .value-module__cursor-glow {
  background: radial-gradient(
    350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
}

.value-module--stone .value-module__cursor-glow {
  background: radial-gradient(
    350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 0, 0, 0.025),
    transparent 60%
  );
}

/* Card Hover — Identical base transformation & shadow for all 5 */
@media (hover: hover) and (pointer: fine) {
  .value-module:hover {
    transform: translateY(-8px) scale(1.008);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    will-change: transform, box-shadow;
  }

  .value-module:hover::after {
    transform: translateX(120%);
  }

  .value-module:hover .value-module__cursor-glow {
    opacity: 1;
  }
}

/* ── Surface Sequences ── */
/* 01 — EXCELLENCE (Dark Charcoal Surface) */
.value-module--dark {
  background: #09090B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.value-module--dark .value-module__badge,
.value-module--dark .value-module__tagline,
.value-module--dark .value-module__num,
.value-module--dark .value-module__arrow,
.value-module--dark .value-module__title,
.value-module--dark .value-module__symbol {
  color: #FFFFFF;
}

.value-module--dark .value-module__desc {
  color: rgba(255, 255, 255, 0.7);
}

@media (hover: hover) and (pointer: fine) {
  .value-module--dark:hover {
    border-color: rgba(209, 170, 88, 0.6);
  }
}

/* 02 — INTEGRITY (Warm Muted Gold Surface) */
.value-module--gold {
  background: var(--color-accent-gold, #C5A05A);
  border: 1px solid transparent;
  color: #FFFFFF;
}

.value-module--gold .value-module__num,
.value-module--gold .value-module__arrow,
.value-module--gold .value-module__title,
.value-module--gold .value-module__symbol {
  color: #FFFFFF;
}

.value-module--gold .value-module__desc {
  color: rgba(255, 255, 255, 0.9);
}

/* 03 — INNOVATION (White Surface) */
.value-module--visual {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #0E0D0C;
}

.value-module--visual .value-module__num,
.value-module--visual .value-module__arrow,
.value-module--visual .value-module__title,
.value-module--visual .value-module__symbol {
  color: #0E0D0C;
}

.value-module--visual .value-module__desc {
  color: rgba(14, 13, 12, 0.7);
}

@media (hover: hover) and (pointer: fine) {
  .value-module--visual:hover {
    border-color: rgba(209, 170, 88, 0.4);
  }
}

/* 04 — PARTNERSHIP (Cream / Sand Surface) */
.value-module--radial {
  background: #F2EBE1;
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: #0E0D0C;
}

.value-module--radial .value-module__num,
.value-module--radial .value-module__arrow,
.value-module--radial .value-module__title,
.value-module--radial .value-module__symbol {
  color: #0E0D0C;
}

.value-module--radial .value-module__desc {
  color: rgba(14, 13, 12, 0.7);
}

@media (hover: hover) and (pointer: fine) {
  .value-module--radial:hover {
    border-color: rgba(209, 170, 88, 0.4);
  }
}

/* 05 — ACCESSIBILITY (Stone Surface) */
.value-module--stone {
  background: #E2D9CB;
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: #0E0D0C;
}

.value-module--stone .value-module__num,
.value-module--stone .value-module__arrow,
.value-module--stone .value-module__title,
.value-module--stone .value-module__symbol {
  color: #0E0D0C;
}

.value-module--stone .value-module__desc {
  color: rgba(14, 13, 12, 0.7);
}

/* ── Content Zones ── */
.value-module__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.value-module__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Top-Right Arrow — Identical timing across all 5 cards */
.value-module__arrow {
  width: 18px;
  height: 18px;
  opacity: 0.45;
  transform: translate(0, 0);
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .value-module__arrow {
    opacity: 1;
    transform: translate(4px, -4px);
    transition-delay: 100ms;
  }
}

.value-module__middle {
  margin-bottom: var(--space-3);
}

.value-module__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.value-module__tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.value-module--gold .value-module__tagline,
.value-module--stone .value-module__tagline {
  color: rgba(14, 13, 12, 0.7);
}

.value-module__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  transform: translateY(0);
  transition: transform 400ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .value-module__title {
    transform: translateY(-2px);
  }
}

/* Abstract Symbol Container */
.value-module__symbol {
  margin-block: var(--space-4);
  opacity: 0.85;
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-module__symbol svg {
  display: block;
}

.value-symbol--excellence svg { width: 50px; height: 50px; }
.value-symbol--integrity svg { width: 56px; height: 56px; }
.value-symbol--innovation svg { width: 80px; height: 40px; }
.value-symbol--partnership svg { width: 68px; height: 42px; }
.value-symbol--accessibility svg { width: 48px; height: 48px; }

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .value-module__symbol {
    opacity: 1;
  }
}

/* ── Icon System Micro-Motions (Shared timing: 700ms, cubic-bezier(0.16,1,0.3,1), 80ms delay) ── */

/* 01 — EXCELLENCE ICON */
.exc-path-horizontal {
  transform-origin: 10px 15px;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.exc-dot {
  transform-origin: 60px 15px;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .exc-path-horizontal,
  .value-module.icon-animate-once .exc-path-horizontal {
    transform: scaleX(1.16);
    transition-delay: 80ms;
  }

  .value-module:hover .exc-dot,
  .value-module.icon-animate-once .exc-dot {
    animation: excDotPulse 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
  }
}

@keyframes excDotPulse {
  0% { transform: translateX(0) scale(1); }
  50% { transform: translateX(5px) scale(1.35); }
  100% { transform: translateX(8px) scale(1); }
}

/* 02 — INTEGRITY ICON */
.integ-outer {
  transform-origin: 35px 35px;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.integ-inner {
  transform-origin: 35px 35px;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.integ-center {
  transform-origin: 35px 35px;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .integ-outer,
  .value-module.icon-animate-once .integ-outer {
    transform: rotate(25deg);
    transition-delay: 80ms;
  }

  .value-module:hover .integ-inner,
  .value-module.icon-animate-once .integ-inner {
    transform: rotate(-12deg);
    transition-delay: 80ms;
  }

  .value-module:hover .integ-center,
  .value-module.icon-animate-once .integ-center {
    animation: integCenterPulse 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
  }
}

@keyframes integCenterPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* 03 — INNOVATION ICON */
.innov-path-1 {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.innov-path-2 {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.innov-node {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .innov-path-1,
  .value-module.icon-animate-once .innov-path-1 {
    transform: translateX(6px);
    transition-delay: 80ms;
  }

  .value-module:hover .innov-path-2,
  .value-module.icon-animate-once .innov-path-2 {
    transform: translateX(-4px);
    transition-delay: 80ms;
  }

  .value-module:hover .innov-node,
  .value-module.icon-animate-once .innov-node {
    transform: translateX(9px);
    transition-delay: 80ms;
  }
}

/* 04 — PARTNERSHIP ICON */
.part-circle-left {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.part-circle-right {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.part-intersection {
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .part-circle-left,
  .value-module.icon-animate-once .part-circle-left {
    transform: translateX(4px);
    transition-delay: 80ms;
  }

  .value-module:hover .part-circle-right,
  .value-module.icon-animate-once .part-circle-right {
    transform: translateX(-4px);
    transition-delay: 80ms;
  }

  .value-module:hover .part-intersection,
  .value-module.icon-animate-once .part-intersection {
    animation: partIntersectBrighten 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
  }
}

@keyframes partIntersectBrighten {
  0% { opacity: 0.35; }
  50% { opacity: 0.85; }
  100% { opacity: 0.55; }
}

/* 05 — ACCESSIBILITY ICON */
.acc-diamond-outer {
  transform-origin: 30px 30px;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-diamond-inner {
  transform-origin: 30px 30px;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .acc-diamond-outer,
  .value-module.icon-animate-once .acc-diamond-outer {
    transform: rotate(8deg);
    transition-delay: 80ms;
  }

  .value-module:hover .acc-diamond-inner,
  .value-module.icon-animate-once .acc-diamond-inner {
    animation: accInnerDiamond 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
  }
}

@keyframes accInnerDiamond {
  0% { transform: rotate(0deg) scale(0.85); opacity: 0.3; }
  100% { transform: rotate(-8deg) scale(1); opacity: 0.45; }
}

/* Fallback rules for touch/viewport entrance animation trigger class */
.value-module.icon-animate-once .exc-path-horizontal { transform: scaleX(1.16); transition-delay: 80ms; }
.value-module.icon-animate-once .exc-dot { animation: excDotPulse 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards; }
.value-module.icon-animate-once .integ-outer { transform: rotate(25deg); transition-delay: 80ms; }
.value-module.icon-animate-once .integ-inner { transform: rotate(-12deg); transition-delay: 80ms; }
.value-module.icon-animate-once .integ-center { animation: integCenterPulse 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards; }
.value-module.icon-animate-once .innov-path-1 { transform: translateX(6px); transition-delay: 80ms; }
.value-module.icon-animate-once .innov-path-2 { transform: translateX(-4px); transition-delay: 80ms; }
.value-module.icon-animate-once .innov-node { transform: translateX(9px); transition-delay: 80ms; }
.value-module.icon-animate-once .part-circle-left { transform: translateX(4px); transition-delay: 80ms; }
.value-module.icon-animate-once .part-circle-right { transform: translateX(-4px); transition-delay: 80ms; }
.value-module.icon-animate-once .part-intersection { animation: partIntersectBrighten 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards; }
.value-module.icon-animate-once .acc-diamond-outer { transform: rotate(8deg); transition-delay: 80ms; }
.value-module.icon-animate-once .acc-diamond-inner { animation: accInnerDiamond 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards; }

/* Description (Anchored to Baseline) */
.value-module__desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 300;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: 0;
  opacity: 0.62;
  transition: opacity 400ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .value-module:hover .value-module__desc {
    opacity: 0.82;
    transition-delay: 120ms;
  }
}

/* Reduced Motion Compliance */
@media (prefers-reduced-motion: reduce) {
  .value-module,
  .value-module:hover {
    transform: none !important;
  }
  .value-module::after {
    display: none !important;
  }
  .value-module__arrow,
  .value-module:hover .value-module__arrow,
  .value-module__title,
  .value-module:hover .value-module__title,
  .exc-path-horizontal,
  .exc-dot,
  .integ-outer,
  .integ-inner,
  .integ-center,
  .innov-path-1,
  .innov-path-2,
  .innov-node,
  .part-circle-left,
  .part-circle-right,
  .part-intersection,
  .acc-diamond-outer,
  .acc-diamond-inner {
    transform: none !important;
    animation: none !important;
  }
}


/* ── Scroll Reveal Entrance ── */
@media (prefers-reduced-motion: no-preference) {
  .values__header.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  }

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

/* ============================================================
   GLOBAL PRESENCE — Section 10 (Refined Global Network Orbit)
   ============================================================ */
.global {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.global__container {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.global__layout {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

/* ── Left Column: Editorial & Positioning ── */
.global__left {
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.global__left .overline {
  margin-bottom: var(--space-4);
}

.global__title {
  font-family: var(--font-display);
  font-size: clamp(58px, 4.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 300;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: clamp(28px, 3.5vh, 44px);
  text-align: left;
}

.global__title-line {
  display: block;
  white-space: nowrap;
}

.global__body {
  max-width: 520px;
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

.global__desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.global__desc:last-child {
  margin-bottom: 0;
}

.global__highlight {
  color: var(--color-text-primary);
  font-weight: 400;
}

/* Global Reach Signal */
.global__reach {
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

.global__reach-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.global__reach-list {
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 300;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Refined Editorial CTA Link */
.global__cta-wrap {
  display: inline-block;
  position: relative;
}

.global-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  color: var(--color-accent-gold);
  text-decoration: none;
  padding-bottom: 6px;
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.global-cta-link__arrow {
  color: var(--color-accent-gold);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.global-cta-link__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--color-accent-gold);
  transition: width 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.global__cta-wrap:hover .global-cta-link {
  color: var(--color-accent);
}

.global__cta-wrap:hover .global-cta-link__arrow {
  transform: translate(3px, -3px);
}

.global__cta-wrap:hover .global-cta-link__line {
  width: 100%;
}

/* ── Right Column: Interactive Global Network Stage ── */
.global__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-network {
  position: relative;
  width: 740px;
  height: 740px;
  margin-right: -130px; /* ~10–15% crop outside viewport */
  flex-shrink: 0;
}

/* Ambient Background Atmosphere behind Network */
.global-network__glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(190, 145, 65, 0.045) 0%, rgba(120, 80, 30, 0.018) 35%, transparent 68%);
  pointer-events: none;
}

/* 3 Orbit Levels (Elliptical Proportions & Hierarchy) */
.global-network__orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

/* Primary Orbit */
.ring--primary {
  width: 700px;
  height: 700px;
  border: 1.5px solid rgba(180, 140, 60, 0.45);
  background-color: var(--orbit-fill-primary, rgba(180, 140, 60, 0.02));
  transform: translate(-50%, -50%) scaleX(1.05) rotate(-8deg);
  animation: orbitRotate1 45s linear infinite;
}

/* Secondary Orbit */
.ring--secondary {
  width: 540px;
  height: 540px;
  border: 1.5px dashed rgba(180, 140, 60, 0.30);
  background-color: var(--orbit-fill-secondary, rgba(180, 140, 60, 0.03));
  transform: translate(-50%, -50%) scaleX(0.88) rotate(18deg);
  animation: orbitRotate2 35s linear infinite reverse;
}

/* Tertiary Orbit */
.ring--tertiary {
  width: 360px;
  height: 360px;
  border: 1.5px solid rgba(180, 140, 60, 0.25);
  background-color: var(--orbit-fill-tertiary, rgba(180, 140, 60, 0.04));
  transform: translate(-50%, -50%) scaleX(1.12) rotate(35deg);
}

@keyframes orbitRotate1 {
  from { transform: translate(-50%, -50%) scaleX(1.05) rotate(-8deg); }
  to { transform: translate(-50%, -50%) scaleX(1.05) rotate(352deg); }
}

@keyframes orbitRotate2 {
  from { transform: translate(-50%, -50%) scaleX(0.88) rotate(18deg); }
  to { transform: translate(-50%, -50%) scaleX(0.88) rotate(378deg); }
}

/* SVG Network Layer */
.global-network__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.net-line {
  stroke: rgba(180, 140, 60, 0.40);
  stroke-width: 1.5px;
  fill: none;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: stroke-dashoffset 1400ms cubic-bezier(0.16, 1, 0.3, 1),
              stroke 400ms ease,
              stroke-width 400ms ease;
}

.global__right.is-visible .net-line {
  stroke-dashoffset: 0;
}

.net-line.is-active {
  stroke: rgba(209, 170, 88, 0.65);
  stroke-width: 1.5px;
}

/* Traveling Information Pulse Particle */
@keyframes pulseTravelRoute {
  0% { offset-distance: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.pulse-dot--active {
  offset-path: path("M 370 515 Q 240 350 205 190");
  animation: pulseTravelRoute 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  box-shadow: 0 0 10px rgba(209, 170, 88, 0.4);
}

/* Central Network Badge */
.global-network__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.net-center__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.net-center__title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.net-center__line {
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto;
}

/* Stationary Location Nodes */
.net-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 4;
  transition: opacity 400ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.net-node__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1),
              background-color 400ms ease;
}

.net-node__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #3F3F46;
  white-space: nowrap;
  transition: color 400ms ease;
}

/* Individual Node Absolute Positions (Aligned exactly to SVG path ends minus 0.4% dot offset) */
.net-node--uk { left: 27.30%; top: 25.27%; }
.net-node--eu { left: 67.16%; top: 21.89%; }
.net-node--me { left: 13.78%; top: 46.89%; }
.net-node--asia { left: 82.03%; top: 49.60%; }
.net-node--qatar { left: 23.24%; top: 75.27%; }

/* Regional Hub Anchor (UAE) */
.net-node--uae {
  left: 50.00%;
  top: 69.59%;
  transform: translate(-5px, calc(-100% + 7px));
  flex-direction: column;
  align-items: center;
}

.net-hub__glow-bg {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 170, 88, 0.16) 0%, rgba(209, 170, 88, 0.04) 35%, transparent 70%);
  pointer-events: none;
}

.net-hub__badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.net-hub__content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.net-hub__rings {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(209, 170, 88, 0.18);
}

.ring-20 { width: 20px; height: 20px; }
.ring-34 { width: 34px; height: 34px; opacity: 0.1; }

.hub-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
}

.hub-label {
  font-size: 15px;
  font-weight: 600;
  color: #09090B;
}

/* Node Hover Interactions */
.net-node:hover .net-node__dot {
  transform: scale(1.35);
  box-shadow: 0 0 14px rgba(209, 170, 88, 0.6);
}

.net-node:hover .net-node__label {
  color: #09090B;
}

.global-network.has-active-node .net-node:not(.is-hovered) {
  opacity: 0.35;
}

/* ── Viewport Scroll Entrance ── */
@media (prefers-reduced-motion: no-preference) {
  .global__left.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .global__right.reveal {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .global__right.reveal.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}

.net-node {
  opacity: 0;
  transform: translateY(calc(-50% + 12px));
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.net-node--uae {
  transform: translate(-5px, calc(-100% + 19px));
}

.global__right.is-visible .net-node {
  opacity: 1;
  transform: translateY(-50%);
}

.global__right.is-visible .net-node--uae {
  transform: translate(-5px, calc(-100% + 7px));
  transition-delay: 200ms;
}
.global__right.is-visible .net-node--me { transition-delay: 280ms; }
.global__right.is-visible .net-node--qatar { transition-delay: 360ms; }
.global__right.is-visible .net-node--uk { transition-delay: 440ms; }
.global__right.is-visible .net-node--eu { transition-delay: 520ms; }
.global__right.is-visible .net-node--asia { transition-delay: 600ms; }

/* ── Responsive Breakpoints ── */

/* TABLET (768px – 1100px) */
@media (max-width: 1100px) {
  .global__layout {
    grid-template-columns: 43% 57%;
    gap: var(--space-6);
  }

  .global-network {
    width: 540px;
    height: 540px;
    margin-right: -40px;
  }

  .ring--primary { width: 520px; height: 520px; }
  .ring--secondary { width: 390px; height: 390px; }
  .ring--tertiary { width: 260px; height: 260px; }

  .global__title {
    font-size: clamp(48px, 5.5vw, 60px);
  }

  .global__title-line {
    white-space: normal;
  }
}

/* MOBILE (< 768px): Stacked Layout */
@media (max-width: 767px) {
  .global {
    padding-block: var(--space-16);
    min-height: auto;
  }

  .global__layout {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .global__left {
    max-width: 100%;
  }

  .global__title {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1;
  }

  .global__title-line {
    white-space: normal;
  }

  .global__right {
    width: 100%;
    overflow: hidden;
  }

  .global-network {
    width: 140vw;
    height: 480px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .ring--primary { width: 440px; height: 440px; }
  .ring--secondary { width: 320px; height: 320px; }
  .ring--tertiary { display: none; }

  .net-node__label {
    font-size: 13px;
  }

  .net-node--uk { left: 10%; top: 16%; }
  .net-node--eu { left: 64%; top: 14%; }
  .net-node--me { left: 5%; top: 48%; }
  .net-node--asia { left: 74%; top: 48%; }
  .net-node--qatar { left: 12%; top: 78%; }
  .net-node--uae { left: 50%; top: 72%; }
}values__header {
    margin-bottom: var(--space-8);
  }



/* ============================================================
   GLOBAL PRESENCE — Section 10
   ============================================================ */
.global {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.global__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.global__left {}

.global__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}

.global__desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.global__desc strong {
  color: var(--color-text-primary);
  font-weight: 400;
}

.global__cta {
  margin-top: var(--space-10);
}

.global__right {
  position: relative;
}

.global__regions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
}

.region-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--dur-base) var(--ease-standard);
}

.region-row:last-child {
  border-bottom: none;
}

.region-row:hover {
  background: var(--color-surface-2);
}

.region-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.region-row__name {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: color var(--dur-base) var(--ease-standard);
}

.region-row:hover .region-row__name {
  color: var(--color-text-primary);
}

/* ============================================================
   CLIENTS — Section 11
   ============================================================ */
.clients {
  background: var(--color-bg);
  overflow: hidden;
}

.clients__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.clients__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.clients__logo-row {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-8);
  overflow: hidden;
}

.clients__placeholder-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-12) 0;
}

.client-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
}

.client-logo-img {
  max-width: 140px;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-placeholder:hover .client-logo-img {
  opacity: 1;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}



/* ============================================================
   FINAL CTA — Section 12
   ============================================================ */
.final-cta {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding-block: var(--space-32);
}

.final-cta__inner {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.final-cta__title em {
  font-style: italic;
  color: var(--color-accent-gold);
}

.final-cta__desc {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-10);
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  border-top: none;
  padding-block: var(--space-16);
  color: #FFFFFF;
}

.footer .footer__logo {
  color: #C5A05A !important;
}

.footer .footer__logo span {
  color: #C5A05A !important;
}

.footer .footer__nav-title,
.footer .footer__contact-label {
  color: #C5A05A !important;
}

.footer .footer__nav-link,
.footer .footer__contact-value,
.footer .footer__tagline,
.footer .footer__copy,
.footer .footer__social-link {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400 !important;
}

.footer .footer__nav-link:hover,
.footer a.footer__contact-value:hover,
.footer .footer__social-link:hover {
  color: #C5A05A !important;
}

.footer__main {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 240px;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-5);
}

.footer__logo span {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 220px;
}

.footer__nav-group {}

.footer__nav-title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-link {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-secondary);
  transition: color var(--dur-base) var(--ease-standard);
}

.footer__nav-link:hover {
  color: var(--color-text-primary);
}

.footer__contact {}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.footer__contact-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__contact-value {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  transition: color var(--dur-base) var(--ease-standard);
}

a.footer__contact-value:hover {
  color: var(--color-text-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  gap: var(--space-6);
}

.footer__copy {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-text-muted);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__social-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--dur-base) var(--ease-standard);
}

.footer__social-link:hover {
  color: var(--color-text-primary);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  }

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

  .reveal--delay-1 { transition-delay: 0.1s; }
  .reveal--delay-2 { transition-delay: 0.2s; }
  .reveal--delay-3 { transition-delay: 0.3s; }
  .reveal--delay-4 { transition-delay: 0.4s; }
  .reveal--delay-5 { transition-delay: 0.5s; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: 32px;
    --section-gap: 80px;
  }

  .hero__title {
    font-size: var(--text-6xl);
  }

  .hero__title-line {
    white-space: normal;
  }

  .capabilities__layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .capabilities__header {
    max-width: 100%;
    position: static;
  }

  .service-item {
    grid-template-columns: 240px 1fr auto;
    gap: var(--space-8);
    padding: var(--space-8);
  }

  .journey__track {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .journey__track::before {
    display: none;
  }

  .journey-step {
    flex: 0 0 calc(50% - var(--space-4));
    padding-top: var(--space-12);
  }

  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-item:nth-child(3) {
    border-right: none;
  }

  .why-item:nth-child(1),
  .why-item:nth-child(2),
  .why-item:nth-child(3) {
    border-bottom: 1px solid var(--color-border);
  }






  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --section-gap: 64px;
  }

  /* Nav */
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Intro */
  .intro__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .intro__left {
    position: static;
  }

  .intro__heading {
    font-size: var(--text-4xl);
  }

  /* Capabilities */
  .capabilities__grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .capability-card:last-child {
    border-bottom: none;
  }

  /* Services */
  .service-item {
    grid-template-columns: 1fr auto;
    gap: var(--space-4);
    padding: var(--space-6);
  }

  .service-item__index {
    grid-column: span 2;
  }

  .service-item__desc {
    grid-row: 2;
    grid-column: 1;
  }

  .service-item__arrow {
    grid-row: 2;
    grid-column: 2;
    align-self: flex-start;
  }

  /* Journey */
  .journey-step {
    flex: 0 0 100%;
  }

  /* Transform */
  .transform__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .transform__left {
    position: static;
  }

  .transform__title {
    font-size: var(--text-4xl);
  }

  /* Why */
  .why__grid {
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--color-border);
  }

  .why-item {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .why-item:nth-child(2),
  .why-item:nth-child(4) {
    border-right: none;
  }

  .why-item:nth-child(5) {
    border-right: none;
    border-bottom: none;
    grid-column: span 2;
  }





  /* Final CTA */
  .final-cta__title {
    font-size: var(--text-4xl);
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }



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

  .why-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .why-item:last-child {
    border-bottom: none;
    grid-column: auto;
  }
}

/* ============================================================
   MULTI-PAGE SUBPAGE COMPONENTS
   ============================================================ */

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-border);
  background: radial-gradient(circle at 50% 0%, rgba(197, 160, 90, 0.04) 0%, transparent 70%);
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 860px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-primary);
}

.page-hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Editorial Section Layout ────────────────────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 992px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.editorial-header {
  position: sticky;
  top: 100px;
}

.editorial-header__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: var(--space-3);
}

/* ── Capability & Card Grids ─────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}

.subpage-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.subpage-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.subpage-card__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.subpage-card__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(197, 160, 90, 0.1);
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.subpage-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: var(--tracking-h3);
  color: var(--color-text-primary);
}

.subpage-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.subpage-card__list {
  margin-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.subpage-card__list-item {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.subpage-card__list-item::before {
  content: '•';
  color: var(--color-accent);
  font-size: 14px;
}

/* ── Contact Form & Layout ──────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: var(--tracking-h3);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.contact-detail__value {
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(197, 160, 90, 0.6);
  box-shadow: 0 0 0 3px rgba(197, 160, 90, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select option {
  background: var(--color-surface-2);
  color: var(--color-text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.4);
  color: #81c784;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-standard);
}

.accordion-item.is-open {
  border-color: var(--color-border-light);
}

.accordion-trigger {
  width: 100%;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  transition: transform var(--dur-base) var(--ease-standard);
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard),
              padding var(--dur-slow) var(--ease-standard);
}

.accordion-item.is-open .accordion-panel {
  max-height: 300px;
  padding: 0 var(--space-6) var(--space-6) var(--space-6);
}

.accordion-panel p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   ABOUT US PAGE — Dedicated Editorial Narrative Styling
   ============================================================ */

/* ── About Hero (Section 01) ── */
.about-hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(200px, 24vh, 260px);
  padding-bottom: clamp(80px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, var(--color-warm-light) 0%, var(--color-warm-medium) 100%);
}

.about-hero__content {
  max-width: 1200px;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  background: linear-gradient(135deg, var(--color-text-primary) 30%, var(--color-accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.1em;
  margin-bottom: clamp(36px, 5vh, 60px);
  text-align: left;
}

.about-hero__intro-wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 32px);
  max-width: 680px;
}

.about-hero__line {
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(201, 163, 79, 0.1) 100%);
  flex-shrink: 0;
  border-radius: 1px;
}

.about-hero__intro {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.about-hero__footer {
  margin-top: clamp(60px, 8vh, 100px);
}

.about-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms ease;
}

.about-hero__scroll:hover {
  color: var(--color-accent);
}

.about-hero__scroll-arrow {
  display: inline-block;
  font-size: 14px;
  color: var(--color-accent);
  transition: transform 300ms ease;
}

.about-hero__scroll:hover .about-hero__scroll-arrow {
  transform: translateY(4px);
}

/* ── Section 02 — What Is BQRAFT? (4-Card Horizontal Editorial Feature Grid) ── */
.about-what {
  position: relative;
  padding-block: clamp(140px, 16vh, 180px);
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
  overflow: hidden;
}

/* Subtle background grid pattern element */
.about-what__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(201, 163, 79, 0.035) 0%, transparent 60%),
                    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

/* 2-Column Editorial Intro above cards */
.about-what__intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(70px, 8vh, 90px);
}

.about-what__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.about-what__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-text-primary);
}

.about-what__desc-main {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* 4-Card Horizontal Grid */
.about-what__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 20px);
  align-items: stretch;
}

/* Feature Card */
.about-card {
  position: relative;
  background: var(--color-accent-gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(28px, 2vw, 36px) clamp(22px, 1.6vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 350ms ease,
              box-shadow 350ms ease;
  transition-delay: var(--stagger, 0ms);
}

/* Subtle Cursor Glow / Radial Highlight */
.about-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201, 163, 79, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

/* Card Top Zone */
.about-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  min-height: 36px;
}

.about-card__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.about-card__num-gold {
  color: var(--color-accent);
}

.about-card__arrow {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              stroke 300ms ease;
}

/* Card Middle Zone (Visual Area ~40-45%) */
.about-card__middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.about-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  min-height: 60px;
}

.about-card__visual {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: auto;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card__visual svg {
  width: 100%;
  max-width: 180px;
  height: 100px;
}

/* SVG Graphic Overrides for Gold Background */
.about-card__visual svg [stroke] { stroke: rgba(255, 255, 255, 0.6) !important; }
.about-card__visual svg [stroke="#C9A34F"] { stroke: #FFFFFF !important; }
.about-card__visual svg [fill="#C9A34F"] { fill: #FFFFFF !important; }
.about-card__visual svg [fill^="rgba(14,13,12"] { fill: #FFFFFF !important; }
.about-card__visual svg [fill^="rgba(201,163,79"] { fill: rgba(255, 255, 255, 0.2) !important; }
.about-card__visual svg [fill^="rgba(0,0,0"] { fill: rgba(255, 255, 255, 0.1) !important; }

/* Card Bottom Zone */
.about-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.about-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  transition: color 350ms ease;
  min-height: 72px;
}

.about-card__micro-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Card Hover Interactions */
@media (hover: hover) and (pointer: fine) {
  .about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 163, 79, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .about-card:hover .about-card__glow {
    opacity: 1;
  }

  .about-card:hover .about-card__visual {
    transform: scale(1.04);
  }

  .about-card:hover .about-card__arrow {
    transform: translate(3px, -3px);
    stroke: var(--color-accent);
  }

  .about-card:hover .about-card__desc {
    color: var(--color-text-secondary);
  }
}

/* Idle Motion for Abstract SVGs */
@keyframes svgSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes svgSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes svgPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.svg-idle-spin {
  transform-origin: center;
  animation: svgSpin 12s linear infinite;
}

.svg-idle-spin-reverse {
  transform-origin: center;
  animation: svgSpinReverse 16s linear infinite;
}

.svg-idle-pulse {
  transform-origin: center;
  animation: svgPulse 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .svg-idle-spin,
  .svg-idle-spin-reverse,
  .svg-idle-pulse {
    animation: none;
  }
}

  /* ── Section 03 — Our Vision ── */
.about-vision {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
  overflow: clip; /* required for sticky to work without overflow issues */
  height: 250vh; /* scrollable space */
}

.about-vision__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.about-vision__statement span {
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.about-vision__statement span.is-active {
  opacity: 1;
}

.about-vision__bg-text {
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  font-family: var(--font-display);
  font-size: clamp(120px, 26vw, 420px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.015);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.about-vision__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.about-vision__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
  display: block;
}

.about-vision__statement {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: clamp(32px, 4vh, 48px);
}

.about-vision__divider {
  width: 120px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: clamp(28px, 3vh, 40px);
  opacity: 0.7;
}

.about-vision__desc {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 720px;
}

/* ── Section 04 — Our Mission ── */
.about-mission {
  padding-block: clamp(100px, 12vh, 160px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
}

.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-mission__left {
  position: sticky;
  top: 120px;
}

.about-mission__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.about-mission__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-text-primary);
}

.about-mission__right {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 32px);
}

.about-mission__line {
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(201, 163, 79, 0.1) 100%);
  flex-shrink: 0;
  border-radius: 1px;
}

.about-mission__paragraphs {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vh, 36px);
}

.about-mission__p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ── Section 05 — Our Commitment ── */
.about-commitment {
  padding-block: clamp(110px, 14vh, 180px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
}

.about-commitment__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.about-commitment__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-text-primary);
  margin-bottom: clamp(36px, 5vh, 56px);
  max-width: 800px;
}

.about-commitment__body {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vh, 36px);
  max-width: 760px;
}

.about-commitment__p {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.about-commitment__highlight {
  color: var(--color-accent);
  font-weight: 500;
}

/* ── Section 06 — Core Values ── */
.about-values-section {
  padding-block: clamp(100px, 12vh, 160px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
}

.about-values__header {
  margin-bottom: clamp(48px, 6vh, 80px);
}

.about-values__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.about-values__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-text-primary);
}

/* ── Section 07 — Founding Leadership ── */
.about-leadership {
  padding-block: clamp(110px, 13vh, 180px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
}

.about-leadership__header {
  margin-bottom: clamp(48px, 6vh, 80px);
  max-width: 800px;
}

.about-leadership__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.about-leadership__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.about-leadership__sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--color-text-secondary);
}

.about-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(80px, 10vh, 120px);
}

.founder-card {
  position: relative;
  background: #09090B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(28px, 2.5vw, 36px) clamp(24px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 400ms ease,
              box-shadow 500ms ease;
  overflow: hidden;
}

.founder-card__num {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  color: rgba(201, 163, 79, 0.4);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 300ms ease;
}

.founder-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.founder-card__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
  color: #FFFFFF;
  transition: color 300ms ease;
}

.founder-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.founder-card__desc {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Photo Container & Image */
.founder-card__photo-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
  background: #181818;
  border: 1px solid var(--color-border);
}

.founder-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(105%);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 600ms ease;
}

.founder-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, 0.5) 100%);
  pointer-events: none;
}

.founder-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 163, 79, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }

  .founder-card:hover .founder-card__photo {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
  }

  .founder-card:hover .founder-card__num {
    color: var(--color-accent-gold);
  }

  .founder-card:hover .founder-card__line {
    transform: scaleX(1);
  }
}

  .founder-card:hover .founder-card__name {
    color: #FFFFFF;
  }

  .founder-card:hover .founder-card__line {
    transform: scaleX(1);
  }


/* ── Founders Story Statement ── */
.about-founders-story {
  max-width: 920px;
  margin-inline: auto;
  padding-block: clamp(40px, 5vh, 60px);
  border-top: 1px solid var(--color-border);
}

.about-founders-story__p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-secondary);
  text-align: left;
}

/* ── Final About Statement ── */
.about-final {
  padding-block: clamp(120px, 16vh, 200px);
  background: var(--color-bg, #FBFBFC);
  position: relative;
}

.about-final__frame {
  position: relative;
  border: none;
  border-radius: 24px;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 80px);
  background: radial-gradient(circle at 50% 0%, rgba(201, 163, 79, 0.05) 0%, transparent 70%);
  overflow: hidden;
}

.about-final__frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.about-final__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--color-text-primary);
  margin-bottom: clamp(28px, 4vh, 40px);
}

.about-final__disciplines {
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: clamp(36px, 5vh, 52px);
  font-weight: 500;
}

.about-final__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── Responsive Layout Overrides ── */
@media (max-width: 1199px) {
  .about-what__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-card {
    min-height: 400px;
  }
}

@media (max-width: 992px) {
  .about-mission__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-mission__left {
    position: static;
  }

  .about-leadership__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .founder-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .about-what {
    padding-block: 80px;
  }

  .about-what__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .about-what__heading {
    font-size: clamp(36px, 8vw, 48px);
  }

  .about-what__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .about-card__visual {
    height: 110px;
  }

  .about-mission__right,
  .about-hero__intro-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .about-mission__line,
  .about-hero__line {
    width: 100%;
    height: 1px;
  }

  .about-final__frame {
    padding: 36px 24px;
    border-radius: 16px;
  }
}

/* ============================================================
   INDUSTRIES PAGE — Dedicated Styling (.ind-*)
   ============================================================ */

/* ── Section 01 — Hero ── */
.ind-hero {
  position: relative;
  padding-top: clamp(150px, 18vh, 200px);
  padding-bottom: clamp(100px, 12vh, 140px);
  background: var(--color-bg, #FBFBFC);
  border-bottom: 1px solid var(--color-border);
}

.ind-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid rgba(201, 163, 79, 0.4);
  border-radius: 16px;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, #1A1A1A 0%, #050505 100%);
}

.ind-hero__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.ind-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: #FFFFFF;
  max-width: 65%;
}

.ind-hero__desc {
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin-top: clamp(28px, 4vh, 40px);
}

/* ── Section 02 — Industries Index ── */
.ind-index {
  position: relative;
  padding-block: clamp(100px, 14vh, 160px);
  background: var(--color-bg, #FBFBFC);
  overflow: hidden;
}

/* Subtle Architectural Background Visual (2-6% opacity) */
.ind-index__bg-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
}

.ind-index__bg-art svg {
  width: 100%;
  height: 100%;
}

.ind-index .container {
  position: relative;
  z-index: 2;
}

.ind-index__header {
  margin-bottom: clamp(60px, 8vh, 100px);
}

.ind-index__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
}

/* Vertical List & Focused Dimming Effect */
.ind-index__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Hover/Focus Dimming: when list is hovered/focused, non-active rows dim to 0.45 opacity */
@media (hover: hover) and (pointer: fine) {
  .ind-index__list:hover .ind-row {
    opacity: 0.45;
  }
  .ind-index__list:hover .ind-row:hover {
    opacity: 1;
  }
}

.ind-index__list:focus-within .ind-row {
  opacity: 0.45;
}
.ind-index__list:focus-within .ind-row:focus-within {
  opacity: 1;
}

/* Industry Row */
.ind-row {
  position: relative;
  display: grid;
  grid-template-columns: 10% 70% 20%;
  align-items: center;
  min-height: clamp(100px, 12vh, 130px);
  padding-block: 28px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  background: transparent;
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
              background-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0ms);
}

.ind-row:first-child {
  border-top: 1px solid var(--color-border);
}

.ind-row__num-col {
  display: flex;
  align-items: center;
}

.ind-row__num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color 350ms ease;
}

.ind-row__name-col {
  display: flex;
  align-items: center;
}

.ind-row__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-text-secondary);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              color 350ms ease;
}

.ind-row__arrow-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ind-row__arrow {
  width: 24px;
  height: 24px;
  stroke: rgba(241, 238, 232, 0.35);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              stroke 350ms ease;
}

/* Expanding Gold Line Highlight */
.ind-row__line {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Row Hover Interactions */
@media (hover: hover) and (pointer: fine) {
  .ind-row:hover {
    background-color: rgba(255, 255, 255, 0.025);
  }

  .ind-row:hover .ind-row__name {
    transform: translateX(8px);
    color: #FFFFFF;
  }

  .ind-row:hover .ind-row__num {
    color: var(--color-accent);
  }

  .ind-row:hover .ind-row__arrow {
    transform: translate(6px, -3px);
    stroke: var(--color-accent);
  }

  .ind-row:hover .ind-row__line {
    transform: scaleX(1);
  }
}

/* Keyboard Focus State */
.ind-row:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.025);
}

.ind-row:focus .ind-row__name {
  transform: translateX(8px);
  color: #FFFFFF;
}

.ind-row:focus .ind-row__arrow {
  transform: translate(6px, -3px);
  stroke: var(--color-accent);
}

.ind-row:focus .ind-row__line {
  transform: scaleX(1);
}

/* ── Section 06 — Industry Highlight Area ── */
.ind-highlight {
  position: relative;
  padding-block: clamp(140px, 16vh, 180px);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg, #FBFBFC);
}

.ind-highlight__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ind-highlight__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
}

.ind-highlight__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-text-primary);
  margin-bottom: clamp(24px, 3vh, 36px);
}

.ind-highlight__desc {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin-bottom: clamp(36px, 5vh, 48px);
}

.ind-highlight__actions {
  display: flex;
  align-items: center;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 300ms ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Responsive Overrides for Industries Page */
@media (max-width: 992px) {
  .ind-hero__title {
    max-width: 85%;
  }

  .ind-row {
    grid-template-columns: 12% 68% 20%;
  }
}

@media (max-width: 767px) {
  .ind-hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .ind-hero__title {
    max-width: 100%;
    font-size: clamp(40px, 9vw, 56px);
  }

  .ind-hero__desc {
    font-size: 16px;
    margin-top: 20px;
  }

  .ind-index {
    padding-block: 70px;
  }

  .ind-index__header {
    margin-bottom: 40px;
  }

  .ind-row {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    min-height: clamp(78px, 10vh, 95px);
    padding-block: 20px;
  }

  .ind-row__name {
    font-size: clamp(20px, 5.5vw, 25px);
    line-height: 1.2;
  }

  .ind-highlight {
    padding-block: 80px;
  }
}

/* ============================================================
   03.1 — BUSINESS CONSULTING PAGE STYLES
   ============================================================ */

/* ── BOLD EDITORIAL ASYMMETRIC HERO ─────────────── */
.bc-hero-editorial {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(90px, 12vh, 130px);
  padding-bottom: clamp(20px, 4vh, 40px);
  background-color: #FBFBFC;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

/* Ambient Radial Glow Behind Headline */
.bc-hero-editorial__bg-glow {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 900px;
  height: 650px;
  background: radial-gradient(circle, rgba(201, 163, 79, 0.08) 0%, rgba(168, 127, 59, 0.02) 45%, rgba(251, 251, 252, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle Architectural Grid Background */
.bc-hero-editorial__bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(9, 9, 11, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 11, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 40% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(circle at 40% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bc-hero-editorial__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.bc-hero-editorial__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Main Asymmetrical 2-Column Grid */
.bc-hero-editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  justify-content: space-between;
  margin-bottom: clamp(60px, 8vh, 90px);
}

/* LEFT SIDE — HEADLINE ZONE */
.bc-hero-editorial__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: bcHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bc-hero-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.bc-hero-editorial__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #C9A34F;
  display: inline-block;
}

.bc-hero-editorial__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.bc-hero-editorial__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .bc-hero-editorial__title {
    font-size: 84px;
  }
}

.bc-hero-editorial__title-white {
  color: #FFFFFF;
}

.bc-hero-editorial__title-gold {
  color: #C9A34F;
  opacity: 0;
  animation: bcHeroFadeUp 1000ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

/* RIGHT SIDE — SUPPORTING CONTENT ZONE */
.bc-hero-editorial__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  animation: bcHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.bc-hero-editorial__subheading {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(16px, 2.5vh, 24px) 0;
}

.bc-hero-editorial__desc {
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(28px, 4vh, 40px);
}

.bc-hero-editorial__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}

.bc-hero-editorial__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-accent-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), background-color 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 2px 10px rgba(197, 160, 90, 0.2);
}

.bc-hero-editorial__btn-primary:hover {
  background-color: #B69251;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(197, 160, 90, 0.3);
}

.bc-hero-editorial__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 250ms ease;
}

.bc-hero-editorial__arrow {
  display: inline-block;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-hero-editorial__btn-secondary:hover {
  color: var(--color-text-primary);
}

.bc-hero-editorial__btn-secondary:hover .bc-hero-editorial__arrow {
  transform: translateX(4px);
}

/* LOWER HERO AREA — MINIMAL POSITIONING BAND */
.bc-hero-editorial__info-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 3vh, 26px) clamp(24px, 3vw, 36px);
  background: #FDFBF7;
  border: 1px solid rgba(201, 163, 79, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: bcHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 450ms forwards;
  transition: background-color 300ms ease, border-color 300ms ease;
}

.bc-hero-editorial__info-band:hover {
  background: #F5F0E6;
  border-color: rgba(201, 163, 79, 0.4);
}

.bc-hero-editorial__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bc-hero-editorial__info-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #C9A34F;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 300ms ease;
}

.bc-hero-editorial__info-band:hover .bc-hero-editorial__info-num {
  color: #D4B575;
}

.bc-hero-editorial__info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bc-hero-editorial__info-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.bc-hero-editorial__info-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

.bc-hero-editorial__info-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(9, 9, 11, 0.08);
}

/* Animations */
@keyframes bcHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 1199px) {
  .bc-hero-editorial__title {
    font-size: clamp(70px, 7vw, 90px);
    line-height: 0.92;
  }
  
  .bc-hero-editorial__grid {
    gap: 40px;
  }

  .bc-hero-editorial__right {
    max-width: 100%;
  }

  .bc-hero-editorial__info-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .bc-hero-editorial__info-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .bc-hero-editorial {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .bc-hero-editorial__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .bc-hero-editorial__title {
    font-size: clamp(52px, 12vw, 64px);
    line-height: 0.94;
  }

  .bc-hero-editorial__subheading {
    font-size: 22px;
  }

  .bc-hero-editorial__desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .bc-hero-editorial__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .bc-hero-editorial__btn-primary {
    width: 100%;
  }

  .bc-hero-editorial__btn-secondary {
    justify-content: center;
    width: 100%;
    padding-block: 8px;
  }
}


/* ── Section Dividers & General Consulting Section Styling ── */
.bc-section {
  padding-block: clamp(80px, 12vh, 140px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.bc-section--transformation {
  background-color: #FBFBFC;
}

.bc-section-header {
  margin-bottom: clamp(40px, 6vh, 70px);
}

.bc-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-3);
  display: block;
}

.bc-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

/* ── Business Transformation Section Layout ─────────────── */
.bc-transformation__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.bc-transformation__left {
  position: sticky;
  top: 120px;
}

.bc-transformation__desc {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: clamp(32px, 5vh, 48px);
}

.bc-management {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
}

.bc-management__subheading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-6);
}

.bc-management__list {
  position: relative;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bc-management__line {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: #C9A34F;
}

.bc-management__item {
  position: relative;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.bc-management__num {
  color: #C9A34F;
  font-weight: 600;
  margin-right: 14px;
}

/* ── Service Directory & Horizontal Rows ─────────────────── */
.bc-directory {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.bc-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1.4fr 2.2fr;
  gap: var(--space-6);
  align-items: center;
  padding-block: clamp(28px, 4vh, 40px);
  padding-inline: var(--space-6);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  background-color: transparent;
  transition: background-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.bc-service-row:last-child {
  border-bottom: none;
}

.bc-service-row__arrow,
.mb-service-row__arrow,
.ca-service-row__arrow {
  display: none !important;
}

.bc-service-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #C9A34F;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-service-row:hover {
  background-color: rgba(9, 9, 11, 0.025);
  transform: translateX(3px);
}

.bc-service-row:hover::after {
  transform: scaleX(1);
}

.bc-service-row__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-service-row:hover .bc-service-row__num {
  color: #C9A34F;
}

.bc-service-row__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-service-row:hover .bc-service-row__title {
  color: var(--color-text-primary);
}

.bc-service-row__desc {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.bc-service-row__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-text-secondary);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-service-row__arrow svg {
  width: 22px;
  height: 22px;
}

.bc-service-row:hover .bc-service-row__arrow {
  transform: translateX(8px);
  color: #C9A34F;
}

/* Featured row variation */
.bc-service-row--featured {
  grid-template-columns: 80px 1fr 48px;
}

.bc-service-row--featured .bc-service-row__title {
  font-size: clamp(20px, 1.6vw, 28px);
  color: var(--color-text-primary);
}

/* ── Content-Heavy Sections (HR & Accounting & Finance) ───── */
.bc-typo-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.bc-typo-section__left {
  position: sticky;
  top: 120px;
}

.bc-typo-list {
  display: grid;
  grid-template-columns: 1fr;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.bc-typo-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding-block: clamp(18px, 2.5vh, 24px);
  padding-inline: clamp(20px, 3vw, 32px);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  transition: background-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-typo-item:last-child {
  border-bottom: none;
}

.bc-typo-item:hover {
  background-color: rgba(9, 9, 11, 0.015);
}

.bc-typo-item__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #C9A34F;
}

.bc-typo-item__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* ── Information Technology Section ─────────────────────── */
.bc-it-subsection {
  margin-top: clamp(48px, 8vh, 80px);
  padding-top: clamp(40px, 6vh, 60px);
  border-top: 1px solid var(--color-border);
}

.bc-it-subsection__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: clamp(24px, 4vh, 40px);
}

.bc-install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background-color: rgba(9, 9, 11, 0.09);
  border: 1px solid var(--color-border);
}

.bc-install-item {
  background-color: #FBFBFC;
  padding: clamp(20px, 3vh, 28px) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: background-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-install-item:hover {
  background-color: rgba(9, 9, 11, 0.025);
}

.bc-install-item__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #C9A34F;
}

.bc-install-item__text {
  font-size: clamp(14px, 0.95vw, 16px);
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* ── Food Safety Consulting Styling ─────────────────────── */
.bc-section--food-safety {
  background-color: #FBFBFC;
}

.bc-section--food-safety .bc-section-label {
  color: #D4B575;
}

.bc-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 4vh, 40px);
}

.bc-cert-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: clamp(20px, 3vh, 28px) var(--space-6);
  background-color: #FBFBFC;
  border: 1px solid var(--color-border);
  border-left: 2px solid #C9A34F;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-cert-card:hover {
  transform: translateX(4px);
  border-color: rgba(201, 163, 79, 0.4);
  border-left-color: #D4B575;
}

.bc-cert-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #C9A34F;
}

.bc-cert-card__title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.05vw, 18px);
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* ── Page End CTA Section ────────────────────────────────── */
.bc-cta-section {
  padding-block: clamp(100px, 15vh, 160px);
  background-color: #FBFBFC;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.bc-cta__inner {
  max-width: 900px;
}

.bc-cta__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-4);
  display: block;
}

.bc-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.bc-cta__copy {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: clamp(36px, 5vh, 56px);
  max-width: 680px;
}

/* ── Responsive Rules for Business Consulting ─────────────── */
@media (max-width: 1023px) {
  .bc-hero__top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .bc-hero__top-right {
    padding-top: 0;
  }

  .bc-hero__specs-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bc-hero__spec-tag {
    display: none;
  }

  .bc-hero__3d-img {
    max-width: 100%;
  }

  .bc-transformation__grid,
  .bc-typo-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bc-transformation__left,
  .bc-typo-section__left {
    position: static;
  }

  .bc-service-row {
    grid-template-columns: 52px 1fr;
    gap: var(--space-4);
  }

  .bc-service-row__desc {
    grid-column: 2 / 3;
    margin-top: var(--space-2);
  }

  .bc-service-row--featured {
    grid-template-columns: 52px 1fr;
  }
}

@media (max-width: 767px) {
  .bc-hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .bc-hero__title {
    font-size: clamp(42px, 11vw, 64px);
  }

  .bc-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .bc-hero__btn-primary {
    justify-content: center;
    width: 100%;
  }

  .bc-hero__btn-secondary {
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }

  .bc-section {
    padding-block: 60px;
  }


  .bc-service-row {
    grid-template-columns: 36px 1fr;
    gap: var(--space-3);
    padding-inline: var(--space-4);
    align-items: start;
  }

  .bc-service-row__num {
    font-size: 12px;
    padding-top: 3px; /* optically align with title cap-height */
  }

  .bc-service-row__title {
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .bc-service-row__desc {
    grid-column: 2 / 3;
    font-size: 13px;
    margin-top: var(--space-1);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .bc-cert-grid {
    grid-template-columns: 1fr;
  }

  .bc-install-grid {
    grid-template-columns: 1fr;
  }

  .bc-cta-section {
    padding-block: 80px;
  }

  .bc-cta__title {
    font-size: 38px;
  }

  .bc-cta__copy {
    font-size: 16px;
  }
}

/* Staggered Scroll Reveal for Business Consulting */
@media (prefers-reduced-motion: no-preference) {
  .bc-service-row.reveal,
  .bc-typo-item.reveal,
  .bc-install-item.reveal,
  .bc-cert-card.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .bc-service-row.reveal.is-visible,
  .bc-typo-item.reveal.is-visible,
  .bc-install-item.reveal.is-visible,
  .bc-cert-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .bc-service-row:nth-child(1) { transition-delay: 0ms; }
  .bc-service-row:nth-child(2) { transition-delay: 60ms; }
  .bc-service-row:nth-child(3) { transition-delay: 120ms; }
  .bc-service-row:nth-child(4) { transition-delay: 180ms; }
  .bc-service-row:nth-child(5) { transition-delay: 240ms; }
  .bc-service-row:nth-child(6) { transition-delay: 300ms; }
  .bc-service-row:nth-child(7) { transition-delay: 360ms; }

  .bc-typo-item:nth-child(1) { transition-delay: 0ms; }
  .bc-typo-item:nth-child(2) { transition-delay: 50ms; }
  .bc-typo-item:nth-child(3) { transition-delay: 100ms; }
  .bc-typo-item:nth-child(4) { transition-delay: 150ms; }
  .bc-typo-item:nth-child(5) { transition-delay: 200ms; }
  .bc-typo-item:nth-child(6) { transition-delay: 250ms; }
  .bc-typo-item:nth-child(7) { transition-delay: 300ms; }
}


/* ============================================================
   03.2 — MARKETING & BRANDING PAGE STYLES
   ============================================================ */

/* ── BOLD EDITORIAL HERO (03.2) ────────────────────────── */
.mb-hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(90px, 12vh, 130px);
  padding-bottom: clamp(20px, 4vh, 40px);
  background-color: #FBFBFC;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.mb-hero__network-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.mb-hero__network-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.mb-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Main Asymmetrical 2-Column Grid */
.mb-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  justify-content: space-between;
  margin-bottom: clamp(60px, 8vh, 90px);
}

/* LEFT SIDE — HEADLINE ZONE */
.mb-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: mbHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.mb-hero__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #C9A34F;
  display: inline-block;
}

.mb-hero__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.mb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .mb-hero__title {
    font-size: 84px;
  }
}

.mb-hero__title-white {
  color: #FFFFFF;
}

.mb-hero__title-gold {
  color: #C9A34F;
  opacity: 0;
  animation: mbHeroFadeUp 1000ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

/* RIGHT SIDE — SUPPORTING COLUMN */
.mb-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  margin-left: auto;
  padding-top: 2px;
  animation: mbHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.mb-hero__subheading {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(16px, 2.5vh, 24px) 0;
}

.mb-hero__desc {
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(28px, 4vh, 40px);
}

.mb-hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}

.mb-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-accent-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), background-color 250ms ease, box-shadow 250ms ease;
}

.mb-hero__btn-primary:hover {
  background-color: #B59048;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(197, 160, 90, 0.25);
}

.mb-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 250ms ease;
}

.mb-hero__arrow {
  display: inline-block;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-hero__btn-secondary:hover {
  color: var(--color-text-primary);
}

.mb-hero__btn-secondary:hover .mb-hero__arrow {
  transform: translateX(4px);
}

/* LOWER HERO AREA — POSITIONING BAND */
.mb-hero__info-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 3vh, 26px) clamp(24px, 3vw, 36px);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: mbHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 450ms forwards;
  transition: background-color 300ms ease, border-color 300ms ease;
}

.mb-hero__info-band:hover {
  background: rgba(18, 18, 18, 0.06);
  border-color: rgba(201, 163, 79, 0.25);
}

.mb-hero__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mb-hero__info-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #C9A34F;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 300ms ease;
}

.mb-hero__info-band:hover .mb-hero__info-num {
  color: #D4B575;
}

.mb-hero__info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mb-hero__info-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.mb-hero__info-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.mb-hero__info-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
}


/* ── SECTION COMMON STYLES ──────────────────────────────── */
.mb-section {
  padding-block: clamp(80px, 12vh, 140px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.mb-section--digital {
  background-color: #FBFBFC;
}

.mb-section--offline {
  background-color: #FBFBFC;
}

.mb-section--arsenal {
  background-color: #FBFBFC;
}

.mb-section-header {
  margin-bottom: clamp(40px, 6vh, 70px);
  max-width: 800px;
}

.mb-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-3);
  display: block;
}

.mb-section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-3) 0;
}

.mb-section-sub {
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--color-text-secondary);
  margin: 0;
}


/* ── SECTION 01: STRATEGIC APPROACH SERVICE ROWS ────────── */
.mb-approach-rows {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.mb-service-row {
  position: relative;
  padding: clamp(28px, 3.5vh, 40px) clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 24px;
  background-color: transparent;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  transition: background-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mb-service-row:last-child {
  border-bottom: none;
}

.mb-service-row__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-service-row__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-service-row__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
  margin: 0;
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-service-row__desc {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 860px;
}

.mb-service-row__arrow {
  font-size: 24px;
  color: var(--color-text-secondary);
  text-align: right;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-service-row__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C9A34F 0%, rgba(201, 163, 79, 0.3) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Unified Service Row Hover System */
.mb-service-row:hover {
  background-color: rgba(9, 9, 11, 0.025);
}

.mb-service-row:hover .mb-service-row__num {
  color: #C9A34F;
}

.mb-service-row:hover .mb-service-row__title {
  color: var(--color-text-primary);
}

.mb-service-row:hover .mb-service-row__arrow {
  color: #C9A34F;
  transform: translateX(6px);
}

.mb-service-row:hover .mb-service-row__main {
  transform: translateX(2px);
}

.mb-service-row:hover .mb-service-row__line {
  transform: scaleX(1);
}


/* ── SECTION 02: BRANDING & CREATIVE GRID ────────────────── */
.mb-creative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.mb-creative-card {
  position: relative;
  padding: clamp(28px, 3vh, 36px) clamp(28px, 3vw, 36px);
  background: rgba(9, 9, 11, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-creative-card:hover {
  background: rgba(9, 9, 11, 0.04);
  border-color: rgba(201, 163, 79, 0.3);
  transform: translateY(-2px);
}

.mb-creative-card__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #C9A34F;
  margin-bottom: 16px;
}

.mb-creative-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.35;
  margin: 0;
}

.mb-creative-card__accent {
  width: 32px;
  height: 1px;
  background-color: rgba(201, 163, 79, 0.4);
  margin-top: 20px;
  transition: width 300ms ease, background-color 300ms ease;
}

.mb-creative-card:hover .mb-creative-card__accent {
  width: 60px;
  background-color: #C9A34F;
}


/* ── SECTIONS 03, 04, 05: DIRECTORY GRIDS ───────────────── */
.mb-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.mb-directory-item {
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.015);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-directory-item:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(201, 163, 79, 0.25);
  transform: translateX(4px);
}

.mb-directory-item__num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #C9A34F;
  flex-shrink: 0;
}

.mb-directory-item__title {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}


/* ── SUBSECTION: MARKETPLACE INTEGRATION ───────────────── */
.mb-marketplace {
  margin-top: clamp(60px, 8vh, 90px);
  padding: clamp(32px, 4vh, 48px) clamp(32px, 4vw, 56px);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.mb-marketplace::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 163, 79, 0.06) 0%, rgba(251, 251, 252, 0) 70%);
  pointer-events: none;
}

.mb-marketplace__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: clamp(24px, 3vh, 36px);
  letter-spacing: -0.015em;
}

.mb-marketplace__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mb-marketplace__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding-block: 18px;
  border-top: 1px solid var(--color-border);
  transition: background-color 300ms ease;
}

.mb-marketplace__row:last-child {
  border-bottom: 1px solid var(--color-border);
}

.mb-marketplace__brand {
  font-size: 16px;
  font-weight: 600;
  color: #C9A34F;
  letter-spacing: 0.02em;
}

.mb-marketplace__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
}


/* ── SECTION 06: SPECIALIZED ARSENAL ───────────────────── */
.mb-arsenal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.mb-arsenal-card {
  padding: 32px 24px;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mb-arsenal-card:hover {
  background: rgba(9, 9, 11, 0.04);
  border-color: rgba(201, 163, 79, 0.35);
  transform: translateY(-4px);
}

.mb-arsenal-card__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #C9A34F;
  margin-bottom: 20px;
}

.mb-arsenal-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin: 0;
}


/* ── PAGE END CTA SECTION ────────────────────────────────── */
.mb-cta-section {
  padding-block: clamp(100px, 15vh, 160px);
  background-color: #FBFBFC;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.mb-cta__inner {
  max-width: 900px;
}

.mb-cta__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-4);
  display: block;
}

.mb-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.mb-cta__copy {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: clamp(36px, 5vh, 56px);
  max-width: 680px;
}

.mb-cta__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}


/* ── ANIMATIONS & REVEAL SYSTEM ─────────────────────────── */
@keyframes mbHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mb-service-row.reveal,
  .mb-creative-card.reveal,
  .mb-directory-item.reveal,
  .mb-marketplace.reveal,
  .mb-arsenal-card.reveal,
  .mb-section.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mb-service-row.reveal.is-visible,
  .mb-creative-card.reveal.is-visible,
  .mb-directory-item.reveal.is-visible,
  .mb-marketplace.reveal.is-visible,
  .mb-arsenal-card.reveal.is-visible,
  .mb-section.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mb-service-row:nth-child(1) { transition-delay: 0ms; }
  .mb-service-row:nth-child(2) { transition-delay: 60ms; }
  .mb-service-row:nth-child(3) { transition-delay: 120ms; }
  .mb-service-row:nth-child(4) { transition-delay: 180ms; }

  .mb-creative-card:nth-child(1) { transition-delay: 0ms; }
  .mb-creative-card:nth-child(2) { transition-delay: 50ms; }
  .mb-creative-card:nth-child(3) { transition-delay: 100ms; }
  .mb-creative-card:nth-child(4) { transition-delay: 150ms; }
  .mb-creative-card:nth-child(5) { transition-delay: 200ms; }
  .mb-creative-card:nth-child(6) { transition-delay: 250ms; }

  .mb-arsenal-card:nth-child(1) { transition-delay: 0ms; }
  .mb-arsenal-card:nth-child(2) { transition-delay: 60ms; }
  .mb-arsenal-card:nth-child(3) { transition-delay: 120ms; }
  .mb-arsenal-card:nth-child(4) { transition-delay: 180ms; }
  .mb-arsenal-card:nth-child(5) { transition-delay: 240ms; }
}


/* ── RESPONSIVE BEHAVIOUR ───────────────────────────────── */
@media (max-width: 1199px) {
  .mb-hero__title {
    font-size: clamp(70px, 7vw, 90px);
  }

  .mb-hero__grid {
    gap: 40px;
  }

  .mb-hero__info-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .mb-hero__info-divider {
    display: none;
  }

  .mb-arsenal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .mb-hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .mb-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .mb-hero__title {
    font-size: clamp(50px, 12vw, 64px);
    line-height: 0.94;
  }

  .mb-hero__subheading {
    font-size: 22px;
  }

  .mb-hero__desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .mb-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mb-hero__btn-primary {
    width: 100%;
  }

  .mb-hero__btn-secondary {
    justify-content: center;
    width: 100%;
    padding-block: 8px;
  }

  .mb-service-row {
    grid-template-columns: 50px 1fr 30px;
    gap: 16px;
    padding: 24px 18px;
  }

  .mb-creative-grid {
    grid-template-columns: 1fr;
  }

  .mb-directory-grid {
    grid-template-columns: 1fr;
  }

  .mb-marketplace__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mb-arsenal-grid {
    grid-template-columns: 1fr;
  }

  .mb-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}


/* ============================================================
   03.3 — CONSTRUCTION & ARCHITECTURE PAGE STYLES
   ============================================================ */

/* ── BOLD EDITORIAL ARCHITECTURAL HERO (03.3) ──────────── */
.ca-hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(90px, 12vh, 130px);
  padding-bottom: clamp(20px, 4vh, 40px);
  background-color: #FBFBFC;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.ca-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(9, 9, 11, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 9, 11, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.ca-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.ca-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding-inline: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Main Asymmetrical 2-Column Grid */
.ca-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  justify-content: space-between;
  margin-bottom: clamp(60px, 8vh, 90px);
}

/* LEFT SIDE — HEADLINE ZONE */
.ca-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: caHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ca-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.ca-hero__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #C9A34F;
  display: inline-block;
}

.ca-hero__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.ca-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .ca-hero__title {
    font-size: 84px;
  }
}

.ca-hero__title-white {
  color: #FFFFFF;
}

.ca-hero__title-gold {
  color: #C9A34F;
  opacity: 0;
  animation: caHeroFadeUp 1000ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

.ca-hero__subheading {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin-bottom: clamp(16px, 2.5vh, 24px);
}

.ca-hero__desc {
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(28px, 4vh, 40px);
  max-width: 520px;
}

.ca-hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}

.ca-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-accent-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), background-color 250ms ease, box-shadow 250ms ease;
}

.ca-hero__btn-primary:hover {
  background-color: #B59048;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(197, 160, 90, 0.25);
}

.ca-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 250ms ease;
}

.ca-hero__arrow {
  display: inline-block;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-hero__btn-secondary:hover {
  color: var(--color-text-primary);
}

.ca-hero__btn-secondary:hover .ca-hero__arrow {
  transform: translateX(4px);
}

/* RIGHT SIDE — SUPPORTING COLUMN */
.ca-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  margin-left: auto;
  padding-top: 2px;
  animation: caHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.ca-blueprint {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.ca-blueprint__svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(201, 163, 79, 0.08));
}


/* LOWER HERO AREA — PROCESS TIMELINE STRIP */
.ca-hero__timeline-strip {
  padding: clamp(20px, 2.5vh, 26px) clamp(24px, 3vw, 36px);
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: caHeroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 450ms forwards;
  transition: background-color 300ms ease, border-color 300ms ease;
}

.ca-hero__timeline-strip:hover {
  background: rgba(18, 18, 18, 0.06);
  border-color: rgba(201, 163, 79, 0.25);
}

.ca-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.ca-timeline__step {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ca-timeline__num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1;
  transition: color 300ms ease;
}

.ca-timeline__step--active .ca-timeline__num,
.ca-timeline__step:hover .ca-timeline__num {
  color: #C9A34F;
}

.ca-timeline__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 300ms ease;
}

.ca-timeline__step--active .ca-timeline__label,
.ca-timeline__step:hover .ca-timeline__label {
  color: var(--color-text-primary);
}

.ca-timeline__connector {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.08) 0%, rgba(201, 163, 79, 0.25) 50%, rgba(9, 9, 11, 0.08) 100%);
  margin-inline: 16px;
}


/* ── SECTION COMMON STYLES ──────────────────────────────── */
.ca-section {
  padding-block: clamp(80px, 12vh, 140px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.ca-section--why {
  background-color: #FBFBFC;
  padding-bottom: clamp(20px, 3vh, 40px);
}

.ca-section-header {
  margin-bottom: clamp(40px, 6vh, 70px);
  max-width: 800px;
}

.ca-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-3);
  display: block;
}

.ca-section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-3) 0;
}

.ca-section-sub {
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--color-text-secondary);
  margin: 0;
}


/* ── SECTION 01: SERVICE CAPABILITY ROWS ────────────────── */
.ca-service-rows {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.ca-service-row {
  position: relative;
  padding: clamp(28px, 3.5vh, 40px) clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 24px;
  background-color: transparent;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  transition: background-color 350ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.ca-service-row:last-child {
  border-bottom: none;
}

.ca-service-row__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-service-row__main {
  display: flex;
  align-items: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-service-row__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
  margin: 0;
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-service-row__arrow {
  font-size: 24px;
  color: var(--color-text-secondary);
  text-align: right;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), color 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-service-row__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C9A34F 0%, rgba(201, 163, 79, 0.3) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Unified Service Row Hover System */
.ca-service-row:hover {
  background-color: rgba(9, 9, 11, 0.025);
}

.ca-service-row:hover .ca-service-row__num {
  color: #C9A34F;
}

.ca-service-row:hover .ca-service-row__title {
  color: var(--color-text-primary);
}

.ca-service-row:hover .ca-service-row__arrow {
  color: #C9A34F;
  transform: translateX(6px);
}

.ca-service-row:hover .ca-service-row__main {
  transform: translateX(2px);
}

.ca-service-row:hover .ca-service-row__line {
  transform: scaleX(1);
}


/* ── INTERSTITIAL WIREFRAME VISUAL BREAK ─────────────────── */
.ca-wireframe-break {
  padding-block: clamp(60px, 8vh, 100px);
  background-color: #18181B;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.ca-wireframe-break__container {
  max-width: 1400px;
}

.ca-wireframe-break__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ca-wireframe-break__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A34F;
}

.ca-wireframe-break__graphic {
  width: 100%;
  max-width: 1100px;
}

.ca-wireframe-break__graphic svg {
  width: 100%;
  height: auto;
}


/* ── SECTION 02: CAPABILITY BLOCKS ───────────────────────── */
.ca-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ca-capability-card {
  padding: 32px 24px;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ca-capability-card:hover {
  background: #FDFBF7;
  border-color: rgba(201, 163, 79, 0.35);
  transform: translateY(-4px);
}

.ca-capability-card__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #C9A34F;
  margin-bottom: 20px;
}

.ca-capability-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.35;
  margin: 0;
}

.ca-capability-card__separator {
  width: 24px;
  height: 1px;
  background-color: rgba(201, 163, 79, 0.4);
  margin-top: 16px;
  transition: width 300ms ease;
}

.ca-capability-card:hover .ca-capability-card__separator {
  width: 48px;
  background-color: #C9A34F;
}


/* ── PROJECT MINDSET SECTION ────────────────────────────── */
.ca-mindset {
  padding-block: clamp(100px, 14vh, 150px);
  background-color: #FBFBFC;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.ca-mindset__inner {
  max-width: 860px;
}

.ca-mindset__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-4);
  display: block;
}

.ca-mindset__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.ca-mindset__copy {
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.62;
  color: var(--color-text-secondary);
  margin: 0;
}


/* ── PAGE END CTA SECTION ────────────────────────────────── */
.ca-cta-section {
  padding-block: clamp(100px, 15vh, 160px);
  background-color: #FBFBFC;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.ca-cta__inner {
  max-width: 900px;
}

.ca-cta__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A34F;
  margin-bottom: var(--space-4);
  display: block;
}

.ca-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.ca-cta__copy {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: clamp(36px, 5vh, 56px);
  max-width: 680px;
}

.ca-cta__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}


/* ── ANIMATIONS & REVEAL SYSTEM ─────────────────────────── */
@keyframes caHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ca-service-row.reveal,
  .ca-capability-card.reveal,
  .ca-wireframe-break.reveal,
  .ca-mindset.reveal,
  .ca-section.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ca-service-row.reveal.is-visible,
  .ca-capability-card.reveal.is-visible,
  .ca-wireframe-break.reveal.is-visible,
  .ca-mindset.reveal.is-visible,
  .ca-section.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ca-service-row:nth-child(1) { transition-delay: 0ms; }
  .ca-service-row:nth-child(2) { transition-delay: 50ms; }
  .ca-service-row:nth-child(3) { transition-delay: 100ms; }
  .ca-service-row:nth-child(4) { transition-delay: 150ms; }
  .ca-service-row:nth-child(5) { transition-delay: 200ms; }
  .ca-service-row:nth-child(6) { transition-delay: 250ms; }
  .ca-service-row:nth-child(7) { transition-delay: 300ms; }

  .ca-capability-card:nth-child(1) { transition-delay: 0ms; }
  .ca-capability-card:nth-child(2) { transition-delay: 60ms; }
  .ca-capability-card:nth-child(3) { transition-delay: 120ms; }
  .ca-capability-card:nth-child(4) { transition-delay: 180ms; }
  .ca-capability-card:nth-child(5) { transition-delay: 240ms; }
}


/* ── RESPONSIVE BEHAVIOUR ───────────────────────────────── */
@media (max-width: 1199px) {
  .ca-hero__title {
    font-size: clamp(75px, 7.5vw, 95px);
  }

  .ca-hero__grid {
    gap: 40px;
  }

  .ca-capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ca-hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .ca-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .ca-hero__title {
    font-size: clamp(52px, 12vw, 64px);
    line-height: 0.92;
  }

  .ca-hero__subheading {
    font-size: 22px;
  }

  .ca-hero__desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .ca-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ca-hero__btn-primary {
    width: 100%;
  }

  .ca-hero__btn-secondary {
    justify-content: center;
    width: 100%;
    padding-block: 8px;
  }

  .ca-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ca-timeline__connector {
    display: none;
  }

  .ca-service-row {
    grid-template-columns: 50px 1fr 30px;
    gap: 16px;
    padding: 24px 18px;
  }

  .ca-capability-grid {
    grid-template-columns: 1fr;
  }

  .ca-cta-section {
    padding-block: 80px;
  }

  .ca-cta__title {
    font-size: 38px;
  }

  .ca-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}



/* ============================================================
   CONTACT PAGE — Editorial Redesign
   ============================================================ */

/* ── Shared thin divider ── */
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border, #E5E5EA);
}

/* ── Hero ── */
.contact-hero {
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(72px, 9vh, 110px);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* Left column */
.contact-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #09090B;
  margin: 0;
}

.contact-hero__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #09090B;
}

/* Right column */
.contact-hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hero__right-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A1A1AA;
}

.contact-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  color: #52525B;
  margin: 0;
}

.contact-hero__scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #09090B;
  text-decoration: none;
  margin-top: 4px;
  transition: color 200ms ease, gap 200ms ease;
}

.contact-hero__scroll-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 200ms ease;
}

.contact-hero__scroll-cta:hover {
  color: #C5A05A;
  gap: 12px;
}

.contact-hero__scroll-cta:hover svg {
  transform: translateX(3px);
}

/* ── Main two-column area ── */
.contact-main {
  padding-top: clamp(64px, 8vh, 100px);
  padding-bottom: clamp(80px, 10vh, 120px);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-main__left {
  display: flex;
  flex-direction: column;
  background: #C5A05A;
  padding: clamp(32px, 5vw, 48px);
}

.contact-main__left-intro {
  margin-bottom: clamp(32px, 4vh, 48px);
}

.contact-main__section-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #09090B;
  margin: 0 0 12px 0;
}

.contact-main__section-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

.contact-main__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: clamp(16px, 2vh, 24px) 0;
}

/* Info block rows */
.cinfo-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cinfo-block__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}

.cinfo-block__value {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
  color: #09090B;
  text-decoration: none;
}

.cinfo-block__value--link {
  color: #09090B;
  transition: color 200ms ease;
}

.cinfo-block__value--link:hover {
  color: #FFFFFF;
}

.contact-main__note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.contact-main__note strong {
  color: #52525B;
  font-weight: 500;
}

/* ── Right column: Form ── */
.contact-main__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: clamp(32px, 5vw, 48px);
}

.contact-main__form-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5EA;
}

.cform-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5A05A;
}

.cform-note {
  font-size: 0.82rem;
  color: #71717A;
  margin: 0;
}

/* Form layout */
.cform {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cform-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cform-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3F3F46;
}

.cform-label span {
  color: #C5A05A;
}

.cform-input,
.cform-select,
.cform-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #A1A1AA;
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #09090B;
  width: 100%;
  transition: border-color 250ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.cform-input::placeholder,
.cform-textarea::placeholder {
  color: #71717A;
}

.cform-input:focus,
.cform-select:focus,
.cform-textarea:focus {
  border-bottom-color: #C5A05A;
  outline: none;
}

.cform-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  padding-right: 24px;
}

.cform-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cform-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #09090B;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  cursor: pointer;
  width: 100%;
  transition: background-color 250ms ease, transform 200ms ease;
  margin-top: 4px;
}

.cform-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 250ms ease;
}

.cform-submit:hover {
  background: #C5A05A;
  transform: translateY(-1px);
}

.cform-submit:hover svg {
  transform: translateX(4px);
}

.cform-submit:active {
  transform: translateY(0);
}

/* ── FAQ ── */
/* ── FAQ Section ── */
.contact-faq {
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(80px, 10vh, 120px);
}

/* Header */
.contact-faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(40px, 5vh, 64px);
  text-align: center;
}



/* Horizontal Services Strip at Bottom of Hero */
.hero__services-strip {
  position: absolute;
  bottom: 36px; /* Moved up slightly to accommodate icons and push text higher */
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 15;
}

.hero__services-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px); /* Spread wider responsively */
}

.hero__service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #000000; /* Solid black */
  text-decoration: none;
  transition: color 300ms ease;
  letter-spacing: -0.01em;
}

.hero__service-item span {
  opacity: 0.75;
  transition: opacity 300ms ease;
}

.hero__service-item:hover span {
  opacity: 1;
}

.hero__service-icon {
  color: #c29b2b; /* Matches Book a Call text */
  opacity: 0.55;
  transition: opacity 300ms ease, color 300ms ease;
}

.hero__service-item:hover .hero__service-icon {
  opacity: 1;
}

.hero__service-item.is-active {
  color: #000000; 
}

.hero__service-item:hover,
.hero__service-item.is-active:hover {
  color: #C5A05A;
}

.hero__service-sep {
  width: 1px;
  height: 20px;
  background-color: #d4af37; /* Golden separator */
  opacity: 0.4;
}

@media (max-width: 1000px) {
  .hero__services-inner {
    display: none; /* Hide on smaller screens as there's not enough room */
  }
}

/* ════════════════════════════════════════════════════════
   HERO VIDEO OVERRIDES (If any remain) */

.contact-faq__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A1A1AA;
}

.contact-faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #09090B;
  margin: 0;
}

.contact-faq__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Outer wrapper ── */
.cfaq-outer {
  display: grid;
  grid-template-columns: 48fr 52fr;
  background: #EFEDE8;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

/* ── Left: Dark questions panel ── */
.cfaq-questions {
  background: var(--color-bg, #FBFBFC);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.cfaq-questions__label {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(9, 9, 11, 0.55);
  margin: 0 0 clamp(16px, 2.5vh, 28px) 0;
  letter-spacing: 0;
}

.cfaq-q-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: clamp(14px, 1.8vh, 20px) 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(9, 9, 11, 0.55);
  transition: background 250ms ease, color 220ms ease;
  width: 100%;
  outline: none;
}

.cfaq-q-btn:focus-visible {
  outline: 2px solid rgba(197, 160, 90, 0.6);
  outline-offset: 2px;
}

.cfaq-q-btn:hover {
  background: #FBFBFC;
  color: rgba(9, 9, 11, 0.85);
}

.cfaq-q-btn.is-active {
  background: #FBFBFC;
  color: #09090B;
  font-weight: 500;
}

/* ── Right: Answer panel ── */
.cfaq-answer-panel {
  background: #EFEDE8;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfaq-answer-label {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: #52525B;
  margin: 0;
  letter-spacing: 0;
}

.cfaq-answer-question {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 400;
  color: #71717A;
  text-align: right;
  margin: 0;
  line-height: 1.5;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cfaq-answer-bubble {
  background: #FDFAF2;
  border: 1px solid rgba(201, 163, 79, 0.25);
  box-shadow: 0 10px 30px rgba(201, 163, 79, 0.05);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 36px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cfaq-answer-text {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.75;
  color: #3F3F46;
  margin: 0;
}

/* Transition states */
.cfaq-answer-panel.is-transitioning .cfaq-answer-question,
.cfaq-answer-panel.is-transitioning .cfaq-answer-bubble {
  opacity: 0;
  transform: translateY(8px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .contact-hero__title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .cfaq-outer {
    grid-template-columns: 1fr;
  }

  .cfaq-questions {
    max-height: 300px;
  }
}

@media (max-width: 640px) {
  .cform-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-hero__title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .contact-main__form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cfaq-trigger {
    padding: 20px 0;
  }
}

/* ════════════════════════════════════════════════════════
   SCROLL-TRIGGERED TEXT REVEAL
════════════════════════════════════════════════════════ */
.text-reveal-section {
  position: relative;
  background-color: var(--color-bg, #FBFBFC);
  /* JS will set height dynamically */
}

.text-reveal__sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.text-reveal__composition {
  display: flex;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.text-reveal__left {
  flex: 0 0 auto;
  text-align: right;
}

.text-reveal__left h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text-primary, #050505);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}



.text-reveal__right {
  flex: 1 1 auto;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.text-reveal__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  will-change: transform;
}

.text-reveal__item {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
  
  /* Initial state, updated via JS */
  color: #E2E2E2; 
  opacity: 0.15;
  filter: blur(4px);
  transform: scale(0.96);
  transform-origin: left center;
  will-change: transform, opacity, filter, color;
}

@media (max-width: 768px) {
  .text-reveal__composition {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
  }
  .text-reveal__left {
    text-align: left;
    margin-top: -10vh;
  }
  .text-reveal__right {
    width: 100%;
    height: 50vh;
  }
  .text-reveal__item {
    font-size: clamp(1.25rem, 6vw, 2rem);
    white-space: normal;
  }
}

/* Dither Cursor */
.dither-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* 3D Scene Canvas */
#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

/* ============================================================
   INTERACTIVE MOUSE GLOW CARD (13)
   ============================================================ */
.interactive-card-section {
  padding: clamp(60px, 10vh, 120px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FBFBFC;
}

.interactive-card__container {
  display: flex;
  justify-content: center;
}

.mouse-glow-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  background-color: #FBFBFC;
  border-radius: 20px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  cursor: pointer;
  transform: translateZ(0);
}

/* Gradient Glow Border Overlay (Masked) */
.mouse-glow-card__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    transparent 70%
  );
  background-origin: border-box;
  background-clip: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 10; /* Overlay on top of content */
}

.mouse-glow-card:hover .mouse-glow-card__border {
  opacity: 1;
}

/* Inner Card Content */
.mouse-glow-card__content {
  position: absolute;
  inset: 0; /* Fills entire card perfectly */
  background: #09090b;
  border-radius: inherit; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9);
  overflow: hidden; /* Clips internal content perfectly */
}

.mouse-glow-card__watermark {
  position: absolute;
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(120px, 30vw, 220px);
  font-weight: 800;
  color: rgba(9, 9, 11, 0.03);
  user-select: none;
  line-height: 1;
  z-index: 1;
}

.mouse-glow-card__foreground {
  position: relative;
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(60px, 15vw, 100px);
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer Bar */
.mouse-glow-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 3;
}

.mouse-glow-card__footer span {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(9, 9, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   ANIMATED HERO SECTION (REACT COMPONENT TRANSLATED)
   ============================================================ */
.animated-hero {
  margin-top: 80px;
  padding: 160px 0 120px 0;
  text-align: center;
  background: var(--color-bg, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.animated-hero__badge {
  margin-bottom: 1rem;
}

.animated-hero__text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.animated-hero__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400; /* font-regular */
  letter-spacing: -0.05em;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1c1c1c; 
}
.bqraft-letter {
  transition: color 0.4s ease;
  display: inline-block;
  letter-spacing: 0.02em; /* Fixes F and T collision and equalizes spacing */
}

.bqraft-letter.is-active {
  color: #C5A05A;
}

.animated-hero__title-rotating {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 1.5em; /* Ensure enough height for the text and bounce */
  overflow: hidden;
  font-weight: 600;
  margin-top: 0.5rem; /* Compensate for taller box */
  font-size: 0.92em;
}

.rotating-word {
  position: absolute;
  top: 0.15em; /* Safe headroom to prevent clipping at the top edge */
  left: 0;
  right: 0;
  opacity: 0;
  color: #C5A05A;
  transform: translateY(150px);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Smooth ease-out without overshoot */
}

.rotating-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-word.is-exiting {
  opacity: 0;
  transform: translateY(-150px);
}

.rotating-word.no-transition {
  transition: none !important;
}

.animated-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #64748b; /* muted-foreground */
  max-width: 42rem;
  margin: 0;
}

.animated-hero__actions {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Shadcn-like Buttons (Isolated to avoid conflicts) */
.shadcn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  gap: 0.5rem;
  box-sizing: border-box;
}



.shadcn-btn svg {
  width: 1rem;
  height: 1rem;
}

.shadcn-btn--sm {
  height: 2.25rem;
  padding: 0 0.75rem;
}

.shadcn-btn--lg {
  height: 2.75rem;
  padding: 0 2rem;
}

.shadcn-btn--primary {
  background: #FBFBFC;
  color: #fff;
}
.shadcn-btn--primary:hover {
  background: rgba(15, 23, 42, 0.9);
}

.shadcn-btn--secondary {
  background: #f1f5f9;
  color: #0f172a;
}
.shadcn-btn--secondary:hover {
  background: rgba(241, 245, 249, 0.8);
}

.shadcn-btn--outline {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}
.shadcn-btn--outline:hover {
  background: #f8fafc;
}

/* WebThreads Background Container */
.web-threads-container {
  position: absolute;
  top: -80px;
  bottom: -80px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none; /* Allows clicks to pass through to adjacent sections */
}
.web-threads-container { pointer-events: auto; }

#animated-hero {
  position: relative;
  overflow: visible;
}

#animated-hero .animated-hero__container {
  position: relative;
  z-index: 1; /* Keep text above the background */
}

/* Ensure text visibility on light value cards */
.value-module--visual .value-module__badge,
.value-module--visual .value-module__tagline,
.value-module--visual .value-module__num,
.value-module--visual .value-module__arrow,
.value-module--visual .value-module__title,
.value-module--visual .value-module__desc,
.value-module--visual .value-module__symbol {
  color: #0E0D0C !important;
}

.value-module--visual .value-module__desc {
  color: rgba(14, 13, 12, 0.7) !important;
}


/* Coverflow Carousel Styles */
.cf-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5rem;
  background-color: transparent;
}

.cf-frame {
  cursor: grab;
  overflow: hidden;
  padding: 2.5rem 0 1rem 0;
  outline: none;
  touch-action: pan-y;
}

.cf-frame:active {
  cursor: grabbing;
}

.cf-deck {
  position: relative;
  user-select: none;
  height: var(--cf-card);
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  left: 50%;
  top: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--surface-tertiary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  will-change: transform;
  width: var(--cf-card);
}

.cf-card img {
  height: 100%;
  width: 100%;
  user-select: none;
  object-fit: cover;
}

.cf-prev, .cf-next {
  position: absolute;
  top: calc(2.5rem + (var(--cf-card) / 2));
  z-index: 200;
  transform: translateY(-50%);
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid var(--color-border-hover);
  padding: 0.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-prev:hover, .cf-next:hover {
  background-color: var(--color-surface);
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cf-prev { left: 1.5rem; }
.cf-next { right: 1.5rem; }

.cf-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 60%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #09090B;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
  pointer-events: none;
  text-align: center;
}

.cf-card.is-active .cf-card-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cf-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #09090B;
  margin-bottom: 0.5rem;
}

.cf-card-content p {
  font-size: 0.875rem;
  color: #3F3F46;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 90%;
}

.cf-pagination {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cf-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-border-hover);
  opacity: 0.6;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cf-dot.cf-dot-active {
  background-color: var(--color-accent-gold);
  opacity: 1;
  width: 1.5rem;
}

/* ───────────────────────────────────────────────
   FEATURE CARD ANIMATED SVGS (Watermarks)
─────────────────────────────────────────────── */
.feature-art__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* -- Art Cube (Business) -- */
.art-cube__outer, .art-cube__inner-dash, .art-cube__strut, .art-cube__guide, .art-cube__core, .art-cube__orbit {
  transform-origin: center;
  transform-box: fill-box;
  transition: all 0.5s ease;
}
.feature-card:hover svg.art-cube { transform: scale(1.1) rotate(12deg); }
.feature-card:hover .art-cube__outer { stroke-width: 2.2; transform: scale(1.05); }
.feature-card:hover .art-cube__inner-dash { stroke-width: 1.8; transform: translate(-14px, -14px) scale(1.12); }
.feature-card:hover .art-cube__strut { stroke-width: 2.2; transform: scale(1.1); }
.feature-card:hover .art-cube__guide { stroke-width: 1.5; }
.feature-card:hover .art-cube__core { transform: scale(2.4); }
.feature-card:hover .art-cube__orbit { stroke-width: 1.8; transform: scale(1.45); animation: spinFast 4s linear infinite; }

/* -- Art Isocube (IT) -- */
.art-isocube__hex, .art-isocube__y, .art-isocube__ring, .art-isocube__core, .art-isocube__node {
  transform-origin: center;
  transform-box: fill-box;
  transition: all 0.5s ease;
}
.feature-card:hover .art-isocube__hex { stroke-width: 1.8; transform: scale(1.05); }
.feature-card:hover .art-isocube__y { stroke-width: 1.5; transform: scale(1.05); }
.feature-card:hover .art-isocube__ring { stroke-width: 1.5; transform: scale(1.4); animation: spinFast 4s linear infinite; }
.feature-card:hover .art-isocube__core { transform: scale(1.5); }
.feature-card:hover .art-isocube__node { transform: scale(1.3); }

/* -- Art Waves (Marketing) -- */
.art-wave { transform-origin: center; transform-box: fill-box; transition: all 0.5s ease; }
.art-wave__orbit { transform-origin: center; transform-box: fill-box; }
.feature-card:hover svg.art-waves { transform: scale(1.16); }
.feature-card:hover .ring-1 { stroke-width: 2.5; transform: scale(1.25); }
.feature-card:hover .ring-2 { stroke-width: 2; transform: scale(1.15); }
.feature-card:hover .ring-3 { stroke-width: 1.5; transform: scale(1.08); }
.feature-card:hover .art-wave__core { transform: scale(1.8); }
.feature-card:hover .art-wave__orbit { stroke-width: 1.5; transform: scale(1.3); animation: spinFast 4s linear infinite reverse; }

/* -- Art Mesh (Construction) -- */
.art-mesh__axis, .art-mesh__diag, .art-mesh__ellipse-left, .art-mesh__ellipse-right, .art-mesh__strut {
  transform-origin: center;
  transform-box: fill-box;
  transition: all 0.5s ease;
}
.feature-card:hover .art-mesh__ellipse-left { transform: rotate(15deg) scale(1.1); stroke-width: 1.5; }
.feature-card:hover .art-mesh__ellipse-right { transform: rotate(-15deg) scale(1.1); stroke-width: 1.5; }
.feature-card:hover .art-mesh__strut { stroke-width: 1.5; }
.feature-card:hover .art-mesh__axis,
.feature-card:hover .art-mesh__diag {
  animation: why-dash-flow 1s linear infinite reverse;
}

@keyframes spinFast {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* Golden Labels Override */
.about-hero__label,
.about-vision__label,
.about-mission__label,
.about-commitment__label,
.overline,
.value-module__num,
.about-leadership__label,
.about-card__num {
  color: var(--color-accent-gold) !important;
}

#journey-wrapper {
  position: relative;
  width: 100%;
}

.journey-showcase {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(30px, 4vh, 60px);
  z-index: 5;
}

.journey-showcase__container {
  width: 100%;
}

.journey-showcase__header {
  margin-bottom: clamp(24px, 4vh, 48px);
  text-align: center;
}

.journey-showcase__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.journey-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.journey-showcase__title em {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #C5A05A;
}

.journey-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .journey-showcase {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
  .journey-showcase__header {
    margin-bottom: 16px;
  }
  .journey-showcase__grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
  .journey-showcase__tabs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .journey-showcase__tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .journey-tab {
    flex: 0 0 auto;
    padding: 10px 16px;
  }
  .journey-showcase__content {
    flex: none;
    min-height: 240px;
  }
}

@media (min-width: 900px) {
  .journey-showcase__grid {
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
  }
}

/* Tabs Left */
.journey-showcase__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.journey-tab {
  background: transparent;
  border: none;
  text-align: left;
  padding: 18px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.journey-tab:hover {
  background: rgba(0, 0, 0, 0.02);
}

.journey-tab.is-active {
  background: #C5A05A;
  box-shadow: 0 4px 20px rgba(197, 160, 90, 0.25);
}

.journey-tab::before {
  display: none;
}

.journey-tab__num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-tertiary);
  transition: color 300ms ease;
}

.journey-tab.is-active .journey-tab__num {
  color: #C5A05A;
}

.journey-tab__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 300ms ease;
}

.journey-tab.is-active .journey-tab__name {
  color: #FFFFFF;
  font-weight: 600;
}

/* Content Right */
.journey-showcase__content {
  position: relative;
  min-height: 380px;
  background: #FFFFFF;
  border: 2px solid rgba(201, 163, 79, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

.journey-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: clamp(32px, 5vw, 64px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 10;
  transition: opacity 400ms ease 200ms, transform 400ms cubic-bezier(0.16, 1, 0.3, 1) 200ms, visibility 0s 200ms;
}

/* On mobile, only the active panel defines the height */
@media (max-width: 899px) {
  .journey-showcase__content {
    min-height: 0;
    overflow: hidden;
  }
  .journey-panel {
    position: absolute;
    height: auto;
    padding: 24px 20px;
  }
  .journey-panel.is-active {
    position: relative;
  }
  .journey-panel__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .journey-panel__desc {
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
    line-height: 1.4;
  }
  .journey-panel__stage {
    display: none;
  }
  .journey-panel__divider {
    margin-bottom: 12px;
  }
  .journey-panel__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
  }
}

.journey-panel__stage {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  color: #C5A05A;
  margin-bottom: 16px;
  display: block;
}

.journey-panel__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #C5A05A;
  margin-bottom: 12px;
  line-height: 1.2;
}

.journey-panel__desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.journey-panel__divider {
  width: 40px;
  height: 2px;
  background: rgba(201, 163, 79, 0.3);
  margin-bottom: 24px;
}

.journey-panel__text {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
}
