/* =====================================================
   THE STAY COLLECTION — Shared Stylesheet
   Instrument Serif + DM Sans | Dark Luxury Editorial
   ===================================================== */

/* ---- TOKENS ---- */
:root {
  --bg:       #090909;
  --bg-1:     #0d0d0d;
  --bg-2:     #131313;
  --bg-3:     #1a1a1a;
  --bg-4:     #232323;

  --gold:     #c4a46b;
  --gold-lt:  #d6b87a;
  --gold-dk:  #8c7248;
  --gold-dim: rgba(196, 164, 107, 0.10);

  --white:    #eeebe5;
  --muted:    #9a9690;
  --dim:      #5c5955;

  --border:   rgba(196, 164, 107, 0.16);
  --border-s: rgba(255, 255, 255, 0.06);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:     78px;
  --wrap:      1280px;
  --pad-x:     clamp(20px, 5vw, 64px);
  --section-v: clamp(72px, 9vw, 120px);

  --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:  cubic-bezier(0, 0, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ---- BASE ---- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section         { padding: var(--section-v) 0; }
.section-dark    { background: var(--bg-1); }
.section-darker  { background: var(--bg-2); }

/* ---- TYPOGRAPHY UTILS ---- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-light { color: var(--gold-lt); }

.heading-xl {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
}
.heading-xl em { font-style: italic; color: var(--gold-lt); }

.heading-lg {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.heading-lg em { font-style: italic; color: var(--gold-lt); }
.heading-lg.light { color: #ece9e2; }

.heading-md {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.heading-md em { font-style: italic; color: var(--gold-lt); }

.body-lg {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}
.body-md {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 42px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  border: 1px solid rgba(196, 164, 107, 0.5);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196, 164, 107, 0.06);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.22s;
  padding: 0;
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.btn-ghost:hover { gap: 14px; }

/* ---- HEADER / NAV ---- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-s);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.22s;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.22s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 12px 28px;
  border: 1px solid rgba(196, 164, 107, 0.4);
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  transition: all 0.26s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(196, 164, 107, 0.07);
  border-color: var(--gold);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.28s var(--ease), opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(9, 9, 9, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 28px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s var(--ease-out), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-s);
  transition: color 0.22s;
  display: block;
}
.mobile-link:hover { color: var(--white); }
.mobile-link.active { color: var(--gold); }
.mobile-link-cta {
  margin-top: 20px;
  border: 1px solid rgba(196, 164, 107, 0.4);
  border-bottom: 1px solid rgba(196, 164, 107, 0.4);
  color: var(--gold);
  padding: 14px 24px;
  text-align: center;
  transition: all 0.26s;
}
.mobile-link-cta:hover {
  background: rgba(196, 164, 107, 0.07);
  color: var(--gold-lt);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-s);
  padding: 64px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-s);
}
.footer-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.footer-tag {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: uppercase;
}
.footer-nav { display: flex; gap: 52px; }
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-nav-col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.22s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-social .footer-nav-label { margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: all 0.25s;
  flex-shrink: 0;
}
.social-icon:hover {
  border-color: var(--gold-dk);
  color: var(--gold);
  background: rgba(196, 164, 107, 0.05);
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-base {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-base p {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 96px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2);
}
.page-hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,9,0.3), rgba(9,9,9,0.7));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}
.page-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 20px;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,9,9,0.15) 0%,
    rgba(9,9,9,0.4) 40%,
    rgba(9,9,9,0.82) 72%,
    rgba(9,9,9,0.97) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x) 96px;
  max-width: calc(var(--wrap) + var(--pad-x) * 2);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HOME — STATEMENT
   ============================================================ */
.statement-section {
  padding: calc(var(--section-v) * 0.9) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-s);
}
.statement-section .container { max-width: 820px; }
.statement-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dk));
  margin: 0 auto 36px;
}
.statement-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
  opacity: 0.88;
}
.statement-sub {
  margin-top: 24px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   HOME — PILLARS
   ============================================================ */
.pillars-header { text-align: center; margin-bottom: 60px; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pillar-card {
  background: var(--bg-2);
  padding: 52px 48px;
  border-top: 2px solid var(--gold-dk);
  position: relative;
  overflow: hidden;
  transition: border-top-color 0.35s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.35s;
}
.pillar-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-3);
}
.pillar-bg-num {
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--serif);
  font-size: 140px;
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 164, 107, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pillar-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.pillar-subtitle {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 18px);
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.pillar-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pillar-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 1px;
  background: var(--gold-dk);
}

/* ============================================================
   HOME — SERVICES PREVIEW
   ============================================================ */
.srv-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.srv-preview-header .heading-lg { margin: 0; }
.srv-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.srv-prev-card {
  background: var(--bg-1);
  padding: 44px 40px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.28s, background 0.28s;
}
.srv-prev-card:hover {
  background: var(--bg-2);
  border-bottom-color: var(--gold-dk);
}
.srv-prev-num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--gold-dk);
  margin-bottom: 18px;
}
.srv-prev-name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.srv-prev-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   HOME — PLATFORM PREVIEW
   ============================================================ */
.platform-prev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.platform-prev-info {}
.platform-prev-info .heading-lg { margin-bottom: 20px; }
.platform-prev-info .body-lg { margin-bottom: 36px; }
.platform-prev-media {}
.dashboard-card-home {
  background: var(--bg-3);
  border: 1px solid var(--border-s);
  padding: 36px;
  margin-bottom: 12px;
  transition: border-color 0.28s;
}
.dashboard-card-home:hover { border-color: var(--border); }
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 400;
  color: #5a9e6e;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a9e6e;
  animation: pulse-dot 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.dash-headline {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.dash-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.platform-video-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

/* ============================================================
   HOME — RESULTS
   ============================================================ */
.results-wrap {
  position: relative;
  overflow: hidden;
}
.results-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.results-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.1);
}
.results-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.75);
}
.results-content {
  position: relative;
  z-index: 1;
}
.results-header { margin-bottom: 56px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(196, 164, 107, 0.08);
}
.result-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(196, 164, 107, 0.08);
  border-bottom: 1px solid rgba(196, 164, 107, 0.08);
}
.result-item:nth-child(3n) { border-right: none; }
.result-fig {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 10px;
  line-height: 1;
}
.result-note {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* ============================================================
   HOME — TEAM PREVIEW
   ============================================================ */
.team-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}
.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.team-prev-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
}
.team-prev-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.78) saturate(0.75);
}
.team-prev-card:hover img { transform: scale(1.04); }
.team-prev-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(9,9,9,0.93));
  padding: 64px 28px 28px;
}
.team-prev-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.team-prev-role {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.07em;
}

/* ============================================================
   HOME — FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border-s);
}
.cta-section .heading-lg { margin-bottom: 16px; }
.cta-section .body-lg { max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-s);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.service-block-num {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 164, 107, 0.35);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  letter-spacing: -0.02em;
}
.service-block-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-block-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 164, 107, 0.28);
  padding: 5px 12px;
}
.service-block-lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(238, 235, 229, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-style: italic;
}
.service-block-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 36px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.service-detail-box {}
.service-detail-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-detail-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--gold-dk);
}

/* dept tabs */
.dept-tabs-wrap { margin-top: 12px; }
.dept-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-s);
  margin-bottom: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dept-tabs::-webkit-scrollbar { display: none; }
.dept-tab {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 13px 22px;
  border-bottom: 2px solid transparent;
  transition: all 0.22s;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.dept-tab.active, .dept-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.dept-panel { display: none; }
.dept-panel.active { display: block; }
.dept-panel-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.dept-panel-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}
.dept-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dept-focus-tag {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--muted);
  border: 1px solid var(--border-s);
  padding: 6px 14px;
  letter-spacing: 0.04em;
  transition: all 0.22s;
}
.dept-focus-tag:hover {
  border-color: var(--border);
  color: var(--white);
}

/* training modules */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 24px;
}
.module-card {
  background: var(--bg-2);
  padding: 28px 32px;
  border-left: 2px solid transparent;
  transition: border-color 0.25s;
}
.module-card:hover { border-left-color: var(--gold-dk); }
.module-card-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}
.module-card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.module-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 36px;
}
.format-card {
  background: var(--bg-1);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.26s, background 0.26s;
}
.format-card:hover {
  background: var(--bg-2);
  border-top-color: var(--gold-dk);
}
.format-num {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: var(--gold-dk);
  margin-bottom: 10px;
}
.format-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.format-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   PLATFORM PAGE
   ============================================================ */
.platform-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 158, 110, 0.07);
  border: 1px solid rgba(90, 158, 110, 0.22);
  color: #5a9e6e;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.platform-badge .status-dot { background: #5a9e6e; }
.yt-player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
  cursor: pointer;
}
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.72);
}
.yt-player:hover .yt-thumb { transform: scale(1.03); }
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.yt-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 164, 107, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.yt-player:hover .yt-play-circle {
  transform: scale(1.1);
  background: var(--gold);
}
.yt-play-circle svg {
  width: 24px;
  height: 24px;
  fill: var(--bg);
  margin-left: 3px;
}
.yt-cap {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 235, 229, 0.55);
}
.platform-dashboard-link {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  padding: 40px 44px;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.platform-dashboard-link:hover {
  border-color: var(--border);
  background: var(--bg-3);
}
.platform-dashboard-link .dash-headline { font-size: 24px; }
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.platform-feat {
  background: var(--bg-1);
  padding: 40px 44px;
  border-left: 2px solid transparent;
  transition: border-left-color 0.28s;
}
.platform-feat:hover { border-left-color: var(--gold-dk); }
.platform-feat-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dk);
}
.platform-feat-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.platform-feat-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.platform-feat-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-statement {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-v) 0;
}
.about-statement-text {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  font-style: italic;
}
.about-statement-text em {
  font-style: normal;
  color: var(--gold-lt);
}
.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-philosophy-img {
  position: relative;
  overflow: hidden;
}
.about-philosophy-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.72);
}
.about-numbered {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}
.about-numbered-item {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-s);
}
.about-numbered-item:first-child { border-top: 1px solid var(--border-s); }
.about-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dk);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 32px;
}
.about-item-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.about-item-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-s);
}
.process-step:first-child { border-top: 1px solid var(--border-s); }
.step-num-circle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 7px;
}
.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-members { display: flex; flex-direction: column; }
.team-member-block {
  display: grid;
  grid-template-columns: 440px 1fr;
  border-bottom: 1px solid var(--border-s);
}
.team-member-block.reverse { grid-template-columns: 1fr 440px; }
.team-member-block.reverse .tm-photo { order: 2; }
.team-member-block.reverse .tm-info { order: 1; }
.tm-photo {
  position: relative;
  overflow: hidden;
}
.tm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.8) saturate(0.72);
  transition: filter 0.5s var(--ease);
  display: block;
  min-height: 520px;
}
.tm-iulia .tm-photo img { object-position: center 35%; }
.team-member-block:hover .tm-photo img {
  filter: brightness(0.88) saturate(0.82);
}
.tm-info {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-1);
}
.tm-role-tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tm-name {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.tm-title {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.tm-bio {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.tm-bio:last-of-type { margin-bottom: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.contact-info .heading-lg { margin-bottom: 20px; }
.contact-info .body-lg { margin-bottom: 0; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-s);
}
.contact-detail-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.contact-form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; gap: 20px; }
.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-field label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.22s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dim); }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5955' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-field select option { background: #131313; color: var(--white); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: rgba(196, 164, 107, 0.42); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: rgba(90, 158, 110, 0.07);
  border: 1px solid rgba(90, 158, 110, 0.24);
  color: #6ab882;
  font-size: 13.5px;
  font-weight: 300;
  padding: 16px 20px;
  line-height: 1.55;
}
.form-error {
  display: none;
  background: rgba(180, 60, 60, 0.07);
  border: 1px solid rgba(180, 60, 60, 0.24);
  color: #c47070;
  font-size: 13.5px;
  padding: 16px 20px;
  line-height: 1.55;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.acc-item { border-bottom: 1px solid var(--border-s); }
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.acc-header-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.acc-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border-s);
  position: relative;
}
.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dk);
  transition: transform 0.28s var(--ease), opacity 0.25s;
}
.acc-icon::before {
  width: 8px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.acc-icon::after {
  width: 1px; height: 8px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.acc-item.open .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s var(--ease);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-content {
  padding-bottom: 24px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.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-right { transform: translateX(24px); }
.reveal-right.visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1400px) {
  :root { --pad-x: 80px; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .pillars-grid { grid-template-columns: 1fr; }
  .srv-preview-grid { grid-template-columns: 1fr 1fr; }
  .platform-prev-inner { grid-template-columns: 1fr; gap: 48px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-item:nth-child(2n) { border-right: none; }
  .result-item:nth-child(3n) { border-right: 1px solid rgba(196,164,107,0.08); }
  .team-preview-grid { grid-template-columns: 1fr 1fr; }

  .service-block-inner { grid-template-columns: 1fr; gap: 28px; }
  .platform-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .platform-features-grid { grid-template-columns: 1fr; }

  .about-philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-philosophy-img img { aspect-ratio: 16/9; }

  .team-member-block { grid-template-columns: 1fr !important; }
  .team-member-block.reverse .tm-photo { order: 0 !important; }
  .team-member-block.reverse .tm-info { order: 1 !important; }
  .tm-photo img { min-height: 360px; aspect-ratio: 16/9; }
  .tm-iulia .tm-photo img { object-position: center 40%; }
  .tm-info { padding: 48px 40px; }

  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --nav-h: 68px; }
  .srv-preview-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .team-preview-grid { grid-template-columns: 1fr; }
  .team-prev-card { aspect-ratio: unset; height: 320px; }

  .srv-preview-header { flex-direction: column; align-items: flex-start; }
  .team-preview-header { flex-direction: column; align-items: flex-start; }

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

  .tm-info { padding: 36px 28px; }
  .hero-body { padding-bottom: 64px; }
  .form-row { flex-direction: column; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { gap: 32px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 420px) {
  .results-grid { grid-template-columns: 1fr; }
  .result-item { border-right: none !important; }
  .formats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .page-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
}

/* ============================================================
   ADDITIONS v2 — Premium Refinement Pass
   ============================================================ */

/* Footer legal link */
.footer-legal {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.04em;
  transition: color 0.22s;
}
.footer-legal:hover { color: var(--muted); }

/* Statement section — rewritten */
.statement-v2 {
  padding: calc(var(--section-v) * 0.85) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-s);
}
.statement-v2 .container { max-width: 780px; }
.statement-v2-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dk);
  margin: 0 auto 40px;
}
.statement-v2-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.9;
}
.statement-v2-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* Section centered intro */
.section-intro-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-intro-center .heading-lg { margin-bottom: 16px; }
.section-intro-center .body-lg { margin-top: 16px; }

/* Platform full-width video block */
.platform-full-video {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.platform-full-video .yt-player {
  aspect-ratio: 16/9;
}
.yt-player-large .yt-play-circle {
  width: 88px;
  height: 88px;
}
.yt-player-large .yt-play-circle svg {
  width: 30px;
  height: 30px;
}

/* Platform full dashboard CTA */
.platform-dash-full {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  padding: 56px 64px;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  text-align: center;
}
.platform-dash-full:hover {
  border-color: var(--border);
  background: var(--bg-3);
}
.platform-dash-full .dash-headline {
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 12px;
}
.platform-dash-full .dash-desc {
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.platform-dash-full .dash-header {
  justify-content: center;
  margin-bottom: 24px;
}

/* Services pillar headers */
.service-pillar-header {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border-s);
}
.service-pillar-header:first-child { border-top: none; padding-top: 0; }
.service-pillar-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.service-pillar-num {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: var(--gold-dk);
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-pillar-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--white);
}
.service-pillar-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
  margin-top: 12px;
}

/* Platform callout card (services page pillar II) */
.platform-callout {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-left: 3px solid var(--gold-dk);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 48px 0;
  transition: border-left-color 0.28s;
}
.platform-callout:hover { border-left-color: var(--gold); }
.platform-callout-text {}
.platform-callout-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.platform-callout-heading {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.platform-callout-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* About page refined */
.about-brand-intro {
  padding: calc(var(--nav-h) + var(--section-v)) 0 var(--section-v);
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-s);
}
.about-brand-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  max-width: 820px;
}
.about-brand-title em {
  font-style: italic;
  color: var(--gold-lt);
}

/* Who-we-work-with tags */
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.client-tag {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  border: 1px solid var(--border-s);
  padding: 11px 22px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.client-tag:hover {
  border-color: var(--border);
  color: var(--white);
}

/* At a glance — styled stat rows */
.stat-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-s);
}
.stat-row:last-child { border-bottom: none; }
.stat-fig {
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
}
.stat-label {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.35;
}
.stat-sub {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* Terms page */
.terms-hero {
  padding: calc(var(--nav-h) + 80px) 0 72px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-s);
}
.terms-body {
  max-width: 760px;
  margin: 0 auto;
}
.terms-body h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 40px 0 12px;
  line-height: 1.25;
}
.terms-body h2:first-child { margin-top: 0; }
.terms-body p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.terms-body ul {
  margin: 12px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.terms-body ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.terms-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--gold-dk);
}
.terms-body a {
  color: var(--gold);
  transition: color 0.22s;
}
.terms-body a:hover { color: var(--gold-lt); }
.terms-last-updated {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .platform-dash-full { padding: 36px 28px; }
  .platform-callout { flex-direction: column; gap: 24px; align-items: flex-start; }
  .about-brand-intro { padding-top: calc(var(--nav-h) + 56px); }
}

/* ============================================================
   Intelligent Automation — Channel Grid
   ============================================================ */
.automation-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-s);
  margin-top: 56px;
}
.channel-card {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.28s;
  position: relative;
  overflow: hidden;
}
.channel-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.channel-card:hover { background: var(--bg-3); }
.channel-card:hover::after { width: 100%; }
.channel-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.channel-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.channel-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
.channel-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 164, 107, 0.25);
  padding: 4px 10px;
  margin-top: auto;
}

/* ============================================================
   Mobile — Comprehensive improvements
   ============================================================ */
@media (max-width: 1080px) {
  .automation-channels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  /* Section spacing tighter on mobile */
  :root { --section-v: 72px; }

  /* Service block: stack sidebar above content */
  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-block-num {
    font-size: 48px;
    -webkit-text-stroke-width: 1px;
  }

  /* Automation channels single col on mobile */
  .automation-channels { grid-template-columns: 1fr; }
  .channel-card { padding: 28px 24px; }

  /* Stat rows tighter */
  .stat-fig { font-size: 24px; min-width: 48px; }

  /* Section intro center less margin */
  .section-intro-center { margin-bottom: 40px; }

  /* Platform video full width */
  .platform-full-video { max-width: 100%; }
  .platform-dash-full { padding: 28px 20px; }

  /* About philosophy grid stacks */
  .about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Client tags smaller */
  .client-tag { font-size: 11px; padding: 9px 16px; }

  /* Terms */
  .terms-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .terms-body h2 { font-size: 17px; margin-top: 32px; }

  /* Service pillar header */
  .service-pillar-name { font-size: 20px; }

  /* CTA buttons full-width stack */
  .cta-btns { flex-direction: column; gap: 12px; }
  .cta-btns .btn { width: 100%; justify-content: center; text-align: center; }

  /* Platform callout */
  .platform-callout { padding: 28px 24px; }
}
/* =====================================================
   WOW CALL BUTTON — Demo sections & floating
   ===================================================== */

/* ── Inline demo call bar ── */
.wow-call-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  margin-top: 24px;
  background: rgba(196,164,107,0.08);
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  overflow: visible;
  box-shadow: 0 0 0 0 rgba(196,164,107,0), inset 0 0 40px rgba(196,164,107,0.03);
}
/* diagonal gold shine */
.wow-call-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196,164,107,0.09) 0%, transparent 50%);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
/* bottom gold gradient line */
.wow-call-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}
.wow-call-bar:hover {
  background: rgba(196,164,107,0.13);
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(196,164,107,0.26), 0 0 0 1px rgba(196,164,107,0.22);
}
.wow-call-bar:active { transform: translateY(-1px); }

/* pulsing expansion rings */
.wcb-ring {
  position: absolute;
  inset: -5px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  pointer-events: none;
  animation: wcb-pulse 2.4s ease-out infinite;
  z-index: -1;
}
.wcb-ring-b { animation-delay: 1.2s; }
@keyframes wcb-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.06); }
}

/* gold phone circle — larger & more prominent */
.wcb-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(196,164,107,0.35);
}
.wcb-icon svg { width: 22px; height: 22px; fill: #090909; }

.wcb-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.wcb-title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.wcb-sub {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}
.wcb-badge {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #090909;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Floating sticky call button ── */
.call-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 14px;
  background: var(--gold);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(196,164,107,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, padding 0.3s;
  overflow: hidden;
  animation: cf-enter 0.6s cubic-bezier(0,0,0.2,1) 1.2s both;
}
@keyframes cf-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.call-float::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  animation: cf-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.call-float::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  animation: cf-ring 2.4s ease-out 1.2s infinite;
  pointer-events: none;
}
@keyframes cf-ring {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}
.call-float svg {
  width: 18px; height: 18px;
  fill: #090909;
  flex-shrink: 0;
}
.cf-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: #090909;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.call-float:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,164,107,0.45);
}
.call-float:active { transform: translateY(-1px); }

@media (max-width: 420px) {
  .call-float { bottom: 20px; right: 16px; padding: 12px 16px 12px 13px; }
  .cf-label { font-size: 11px; }
  .wow-call-bar { padding: 16px 18px; gap: 12px; }
}

@media (max-width: 420px) {
  .service-block-num { font-size: 40px; }
  .channel-icon { width: 36px; height: 36px; }
  .about-brand-title { font-size: 28px; }
  .terms-body p, .terms-body ul li { font-size: 13.5px; }
}
