/* ════════════════════════════════════════════════
   INTERVISTA GROUP — style.css
   Premium Conglomerate Landing Page
   ════════════════════════════════════════════════ */

/* 0. CUSTOM FONTS
   ─────────────── */
@font-face {
  font-family: 'MaisonDeArtisan';
  src: url('fonts/MaisonDeArtisanFree-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Microsoft YaHei Light is a system font on Windows; we list it with
   cross-platform fallbacks so other OSes get a similarly light sans. */

/* 1. DESIGN TOKENS
   ─────────────── */
:root {
  --navy-deep: #08091A;
  --navy-mid: #0E1228;
  --navy-light: #161B38;
  --gold: #C9A84C;
  --gold-light: #E2C278;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --platinum: #D4D4D4;
  --white: #FFFFFF;
  --text-muted: rgba(212, 212, 212, 0.65);
  --border: rgba(201, 168, 76, 0.18);

  --ff-display: 'MaisonDeArtisan', 'Playfair Display', Georgia, serif;
  --ff-sub: 'Microsoft YaHei Light', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 100px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* 2. RESET & BASE
   ─────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--navy-deep);
  color: var(--platinum);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* 3. UTILITIES
   ─────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 40px;
}

.section {
  padding-block: var(--section-py);
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-sub);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
}

.section-title.centered {
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--ff-sub);
  font-weight: 300;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

.body-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}

.link-arrow:hover {
  gap: 14px;
}

.link-arrow span {
  font-size: 1.1rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  border: 1.5px solid var(--border);
  color: var(--platinum);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* 4. SCROLL REVEAL ANIMATIONS
   ─────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(48px);
}

.reveal-left {
  transform: translateX(-48px);

}

.reveal-right {
  transform: translateX(48px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;

}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}



/* 5. NAVBAR
   ─────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), box-shadow 0.5s;
}

.navbar.scrolled {
  background: rgba(8, 9, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  box-shadow: 0 1px 0 var(--border), 0 20px 80px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  /* White-bg logo: show on a frosted light pill so it reads on dark nav */
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 5px 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s;
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-thin {
  font-weight: 400;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--platinum);
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .nav-cta {
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--platinum);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 6. HERO
   ──────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(14, 18, 40, 0.8) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 9, 26, 0.3) 0%, rgba(8, 9, 26, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding-inline: 24px;
}

.hero-eyebrow {
  font-family: var(--ff-sub);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: normal;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--ff-sub);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* 7. MARQUEE STRIP
   ─────────────── */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(201, 168, 76, 0.04);
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  padding-right: 4px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* 8. ABOUT
   ──────── */
.about-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About photo */
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.5s;
}

.about-image-wrap:hover .about-img {
  filter: brightness(0.95);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 9, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aib-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.aib-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), background 0.4s;
}

.about-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.04);
  transform: translateX(8px);
}

.ac-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.about-card h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 6px;
}

.about-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Offset cards */
.ac-1 {
  transform: translateX(0px);
}

.ac-2 {
  transform: translateX(24px);
}

.ac-3 {
  transform: translateX(0px);
}

.ac-2:hover {
  transform: translateX(32px);
}

.ac-1:hover,
.ac-3:hover {
  transform: translateX(8px);
}

/* 9. STATS
   ────────── */
.stats-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 72px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: normal;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  vertical-align: super;
  font-weight: normal;
}

.stat-label {
  font-family: var(--ff-sub);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* 10. BUSINESSES
    ────────────── */
.businesses-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.biz-card {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(14, 18, 40, 0.6);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}

.biz-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
}

/* Card background image layer */
.biz-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.5s;
  opacity: 0.22;
}

.biz-card:hover .biz-card-bg {
  transform: scale(1.05);
  opacity: 0.32;
}

.biz-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 1;
}

.biz-card:hover .biz-card-glow {
  opacity: 1;
}

.biz-card-inner {
  padding: 40px 40px 36px;
  position: relative;
  z-index: 2;
}

/* Business card logo container */
.biz-logo-wrap {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.biz-logo-wrap img {
  /* Logos have white backgrounds — display them on a white pill */
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}

.biz-card:hover .biz-logo-wrap img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.biz-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: background 0.4s, border-color 0.4s;
}

.biz-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.biz-card:hover .biz-icon-wrap {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.4);
}

.biz-sector-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.biz-name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.biz-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.biz-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}

.biz-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.biz-card:hover .biz-link {
  gap: 12px;
}

.biz-card:hover .biz-link svg {
  transform: translate(2px, -2px);
}

/* Portfolio Tier Labels */
.portfolio-tier-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.tier-tag {
  font-family: var(--ff-sub);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.75;
}

.tier-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Service Divisions Grid */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.div-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(8, 9, 26, 0.5);
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
}

.div-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}

.div-card-inner {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Division card logo container */
.div-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  /* White bg so logo (which has white bg) looks intentional */
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}

.div-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 4px;
}

.div-card:hover .div-logo {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.div-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.4s, border-color 0.4s;
}

.div-icon svg {
  width: 20px;
  height: 20px;
}

.div-card:hover .div-icon {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.4);
}

.div-card-inner div h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.div-card-inner div p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 11. SECTORS
    ──────────── */
.sectors-section {
  background: var(--navy-mid);
  position: relative;
}

.sectors-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sector-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(8, 9, 26, 0.5);
  text-align: center;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}

.sector-card:hover {
  transform: translateY(-6px);
  background: rgba(8, 9, 26, 0.8);
  border-color: rgba(201, 168, 76, 0.35);
}

.sector-card.primary {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.3);
}

.sector-card.primary:hover {
  background: rgba(201, 168, 76, 0.1);
}

.sector-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
  transition: background 0.4s, border-color 0.4s;
}

.sector-icon svg {
  width: 36px;
  height: 36px;
}

.sector-card:hover .sector-icon {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.5);
}

.sector-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 12px;
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Image-based sector cards */
.sector-card.img-card {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 9, 26, 0.92) 0%,
      rgba(8, 9, 26, 0.55) 50%,
      rgba(8, 9, 26, 0.15) 100%);
  transition: background 0.5s;
}

.sector-card.img-card:hover .sector-img-overlay {
  background: linear-gradient(to top,
      rgba(8, 9, 26, 0.96) 0%,
      rgba(8, 9, 26, 0.65) 50%,
      rgba(8, 9, 26, 0.2) 100%);
}

.sector-card-inner {
  position: relative;
  z-index: 1;
  padding: 32px 36px;
  text-align: center;
}

.sector-card.img-card .sector-icon {
  margin: 0 auto 20px;
}

.sector-card.img-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.sector-card.img-card p {
  font-size: 0.875rem;
  color: rgba(212, 212, 212, 0.8);
  line-height: 1.75;
}

.sector-card.img-card:hover {
  transform: translateY(-6px);
}

/* 12. VISION
    ────────── */
.vision-section {
  background: var(--navy-deep);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.vision-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 26, 0.82) 0%, rgba(8, 9, 26, 0.75) 50%, rgba(8, 9, 26, 0.88) 100%);
  z-index: 0;
  pointer-events: none;
}

.vision-section .container {
  position: relative;
  z-index: 1;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.vision-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vision-quote-mark {
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.7;
  margin-bottom: 8px;
}

.vision-quote {
  /*font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;*/
  color: var(--platinum);
  line-height: 1.7;
  max-width: 780px;
  margin-inline: auto;
  border: none;
  font-family: 'MaisonDeArtisan';
  /*padding: 24% 0px;*/
}

.vision-attribution {
  margin-top: 24px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* Vision + Mission split */
.vision-mission-split {
  display: grid;
  /*grid-template-columns: 1fr auto 1fr;*/
  gap: 0;
  align-items: start;
  margin-top: 8px;
  text-align: center;
}

.vm-block {
  padding: 0 0px;
}

.vm-block:first-child {
  padding-left: 0;
}

.vm-block:last-child {
  padding-right: 0;
}

.vm-label {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 16px;
}

.vm-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 120px;
}

.vm-mission-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.vm-mission-list {
  width: 50%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vm-mission-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.vm-mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: left;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, background 0.4s;
}

.pillar:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.03);
}

.pillar-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pillar-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 13. FOUNDERS
    ───────────── */
.founders-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.founder-card {
  text-align: center;
  padding: 48px 32px 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gold-dim);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}

.founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
}

.founder-card.primary {
  border-color: rgba(201, 168, 76, 0.25);
  background: var(--gold-dim);
}

.founder-card.second {
  border-color: rgba(201, 168, 76, 0.25);
  background: var(--gold-dim);
}

.founder-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
}

.fa-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotate 12s linear infinite;
}

.founder-card.primary .fa-ring {
  border-color: rgba(201, 168, 76, 0.4);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fa-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.fa-inner svg {
  width: 48px;
  height: 48px;
}

.fa-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid var(--border);
}

.founder-card.primary .fa-photo {
  border-color: rgba(201, 168, 76, 0.5);
}

.founder-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.founder-domain {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.founder-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.founder-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* 14. ADVISORS
    ────────────── */
.advisors-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

/* Single wide panel card */
.advisors-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(14, 18, 40, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.advisor-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  transition: background 0.4s;
}

.advisor-item:hover {
  background: rgba(201, 168, 76, 0.03);
}

/* horizontal rule between advisors */
.advisor-sep {
  height: 1px;
  background: var(--border);
  margin: 0 56px;
}

/* Circular photo */
.advisor-photo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  display: block;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.advisor-item:hover .advisor-photo {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.15);
}

/* Text block */
.advisor-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advisor-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--white);
  line-height: 1.3;
}

.advisor-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 4px;
}

.advisor-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .advisor-item {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    text-align: center;
  }

  .advisor-photo-wrap {
    justify-content: center;
  }

  .advisor-sep {
    margin: 0 32px;
  }
}

/* 15. CONTACT
    ──────────── */
.contact-section {
  background: var(--navy-deep);
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 26, 0.85) 0%, rgba(8, 9, 26, 0.78) 50%, rgba(8, 9, 26, 0.9) 100%);
  z-index: 0;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-inner .section-tag {
  display: block;
}

.contact-inner .section-title {
  margin-top: 12px;
  margin-bottom: 16px;
}

.contact-inner .section-subtitle {
  margin: 10 40px;
      padding-bottom: 20px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}

/* Email + phone row */
.contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cd-icon {
  font-size: 1rem;
}

/* 3-column address grid */
.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-office {
  text-align: center;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s;
}

.contact-office:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.co-city {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 10px;
}

.co-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* 15. FOOTER
    ───────── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding-block: 48px 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-brand:hover .footer-logo-img {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(201, 168, 76, 0.5) !important;
}

/* 16. RESPONSIVE
    ────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ac-2 {
    transform: translateX(0);
  }

  .ac-2:hover {
    transform: translateX(8px);
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .container {
    padding-inline: 24px;
  }

  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    max-width: 100%;
  }

  .nav-inner {
    padding-inline: 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 9, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .businesses-grid {
    grid-template-columns: 1fr;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 40px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    letter-spacing: -0.5px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}

/* Retina / HiDPI sharpness */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .logo-mark {
    -webkit-font-smoothing: antialiased;
  }
}