
:root {
  --black: #07080F;
  --cream: #F4F0E8;
  --gold: #B8974A;
  --gold-light: #D4B06A;
  --white: #FFFFFF;
  --gray: #5C5C6B;
  --gray-light: #E8E6E0;
  --navy: #0D1426;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* PAGE SYSTEM */
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(7,8,15,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white);
  cursor: pointer; letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: white; display: block; transition: 0.3s; }

/* ======= HOME PAGE ======= */
section.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,151,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(13,20,38,0.8) 0%, transparent 50%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%; right: 10%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(184,151,74,0.3), transparent);
  animation: lineFall 8s ease-in-out infinite;
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -50%; right: 25%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(184,151,74,0.15), transparent);
  animation: lineFall 8s ease-in-out infinite 2s;
}
@keyframes lineFall {
  0% { transform: translateY(-10%); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(10%); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 800px;
  animation: heroIn 1.2s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 16px 36px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.25s; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 36px; font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.15em;
}
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* STATS BAR */
.stats-bar {
  background: var(--navy); padding: 40px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  border-bottom: 1px solid rgba(184,151,74,0.2);
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; margin-top: 8px; text-transform: uppercase; }

/* SECTION STYLES */
section { padding: 120px 60px; }
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--gray); max-width: 600px; }

/* ABOUT SECTION */
.about-section { background: var(--black); color: var(--white); }
.about-section .section-body { color: rgba(255,255,255,0.55); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-timeline { margin-top: 60px; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 40px; }
.timeline-year {
  font-family: var(--font-display); font-size: 28px; font-weight: 300;
  color: var(--gold); min-width: 80px; padding-top: 2px;
}
.timeline-content h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.about-visual {
  position: relative; height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.about-card {
  width: 300px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,151,74,0.2); border-radius: 4px;
  padding: 48px 40px; text-align: center;
  position: relative;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px; background: var(--gold);
}
.about-initials {
  font-family: var(--font-display); font-size: 64px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 16px;
}
.about-name { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.about-role { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.floating-tag {
  position: absolute; background: var(--gold); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 8px 16px; border-radius: 2px;
}
.ft-1 { top: 60px; right: 0; }
.ft-2 { bottom: 80px; left: 0; }
.ft-3 { top: 50%; right: -20px; transform: translateY(-50%); }

/* BRANDS GRID */
.brands-section { background: var(--cream); }
.brands-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-bottom: 80px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-light);
  border: 2px solid var(--gray-light);
}
.brand-card {
  background: var(--white); padding: 48px 40px;
  cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
  border: 2px solid transparent;
}
.brand-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--brand-color, var(--gold));
  transform: scaleX(0); transition: transform 0.3s;
}
.brand-card:hover { background: var(--black); border-color: var(--brand-color, var(--gold)); transform: translateY(-4px); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover .brand-name { color: var(--white); }
.brand-card:hover .brand-desc { color: rgba(255,255,255,0.5); }
.brand-card:hover .brand-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.brand-icon {
  width: 48px; height: 48px; border-radius: 8px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  background: var(--brand-color, var(--gold));
  color: white; letter-spacing: -1px;
}
.brand-name { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 12px; transition: color 0.3s; }
.brand-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; transition: color 0.3s; }
.brand-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gray-light); color: var(--gray);
  padding: 6px 14px; border-radius: 2px; transition: all 0.3s;
}
.brand-arrow { position: absolute; top: 40px; right: 40px; font-size: 20px; opacity: 0; transition: opacity 0.3s; color: var(--gold); }
.brand-card:hover .brand-arrow { opacity: 1; }

/* VALUES */
.values-section { background: var(--black); color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 80px; }
.value-item { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.value-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: rgba(184,151,74,0.3); margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* CONTACT */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-info h3 { font-family: var(--font-display); font-size: 48px; font-weight: 300; margin-bottom: 24px; }
.contact-info h3 em { font-style: italic; color: var(--gold); }
.contact-details { margin-top: 48px; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--gray-light); }
.contact-icon { width: 40px; height: 40px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; color: var(--black); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 20px;
  border: 1px solid var(--gray-light); border-radius: 2px;
  background: var(--white); font-family: var(--font-body); font-size: 15px;
  color: var(--black); margin-bottom: 16px; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form .btn-primary { width: 100%; text-align: center; }

/* FOOTER */
footer {
  background: var(--black); padding: 60px 60px 40px;
  border-top: 1px solid rgba(184,151,74,0.2);
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; margin-bottom: 60px; }
.footer-brand { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 12px; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ======= BRAND PAGES ======= */
.brand-page-hero {
  min-height: 70vh; display: flex; align-items: flex-end;
  padding: 0 60px 80px; position: relative; overflow: hidden;
}
.brand-hero-bg { position: absolute; inset: 0; background: var(--black); }
.brand-hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 60px),
                    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 60px);
}
.brand-hero-accent {
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: var(--brand-accent-color, var(--gold));
  opacity: 0.04; clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.brand-back {
  position: absolute; top: 120px; left: 60px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.1em;
}
.brand-back:hover { color: var(--gold); }
.brand-hero-content { position: relative; z-index: 2; max-width: 700px; }
.brand-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 8px 16px; margin-bottom: 32px;
}
.brand-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-accent-color, var(--gold)); }
.brand-hero-badge-text { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.brand-hero-title {
  font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px);
  font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 24px;
}
.brand-hero-title em { font-style: italic; color: var(--brand-accent-color, var(--gold)); }
.brand-hero-tagline { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; }

/* Brand content sections */
.brand-content { padding: 100px 60px; }
.brand-content.dark { background: var(--black); color: var(--white); }
.brand-content.light { background: var(--cream); }
.brand-content.navy { background: var(--navy); color: var(--white); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.feature-card {
  padding: 40px 32px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
}
.feature-icon { font-size: 28px; margin-bottom: 20px; }
.feature-title { font-size: 17px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.feature-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }

.feature-card.light-card { background: var(--white); border: none; box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.feature-card.light-card .feature-title { color: var(--black); }
.feature-card.light-card .feature-desc { color: var(--gray); }

.cta-band {
  padding: 80px 60px; text-align: center;
  background: var(--brand-accent-color, var(--gold));
}
.cta-band h2 { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--black); margin-bottom: 16px; }
.cta-band p { font-size: 16px; color: rgba(0,0,0,0.6); margin-bottom: 32px; }
.btn-dark { background: var(--black); color: var(--white); padding: 16px 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block; }
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); }

/* CLIENTS / SECTORS */
.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.sector-item {
  padding: 32px; background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--brand-accent-color, var(--gold));
  border-radius: 0 4px 4px 0;
}
.sector-icon { font-size: 24px; margin-bottom: 12px; }
.sector-name { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.sector-desc { font-size: 13px; color: rgba(255,255,255,0.5); }

/* PRICING STRIP */
.pricing-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px; }
.price-tier {
  padding: 32px 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
  text-align: center; transition: all 0.3s;
}
.price-tier.featured { background: var(--brand-accent-color, var(--gold)); border-color: transparent; }
.price-tier:hover { transform: translateY(-4px); }
.price-tier-name { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.price-tier.featured .price-tier-name { color: rgba(0,0,0,0.6); }
.price-amount { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--white); }
.price-tier.featured .price-amount { color: var(--black); }
.price-unit { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.price-tier.featured .price-unit { color: rgba(0,0,0,0.5); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 16px 30px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 30px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 40px 30px; }
  .about-grid, .brands-intro, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-strip { grid-template-columns: repeat(2,1fr); }
  .brand-page-hero { padding: 0 30px 60px; }
  .brand-content { padding: 60px 30px; }
  .hero-content { padding: 0 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .sectors-grid { grid-template-columns: 1fr; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; background: var(--black); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 32px; color: var(--white); text-decoration: none; cursor: pointer; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 30px; font-size: 28px; color: var(--white); cursor: pointer; }

.nav-links a.active { color: var(--gold); }
.breadcrumb { padding: 120px 60px 0; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb.light { color: var(--gray); padding-top: 100px; }
.breadcrumb.light a { color: var(--gray); }
.content-block { max-width: 720px; }
.content-block p { font-size: 16px; line-height: 1.85; color: var(--gray); margin-bottom: 18px; }
.content-block p:last-child { margin-bottom: 0; }
.stats-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.stat-box { padding: 28px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; }
.stat-box.light { background: white; box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.stat-box .n { font-family: var(--font-display); font-size: 36px; color: var(--brand-accent-color, var(--gold)); margin-bottom: 8px; }
.stat-box .l { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.stat-box.light .l { color: var(--gray); }
.brand-content.light .stat-box {
  background: white;
  border: none;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.brand-content.light .stat-box .l { color: var(--gray); }
.process-list { margin-top: 40px; display: grid; gap: 20px; }
.process-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 24px; background: rgba(255,255,255,0.03); border-radius: 4px; border: 1px solid rgba(255,255,255,0.06); }
.process-item.light { background: white; border: none; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.process-num { font-family: var(--font-display); font-size: 28px; color: var(--brand-accent-color, var(--gold)); }
.process-item h4 { font-size: 16px; margin-bottom: 8px; color: var(--white); }
.process-item.light h4 { color: var(--black); }
.process-item p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 0; }
.process-item.light p { color: var(--gray); }
.brand-content.light .process-item {
  background: white;
  border: none;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.brand-content.light .process-item h4 { color: var(--black); }
.brand-content.light .process-item p { color: var(--gray); }
@media (max-width: 1024px) { .stats-inline { grid-template-columns: repeat(2,1fr); } .breadcrumb { padding: 100px 30px 0; } }
