/* ========== SHARED STYLES — 聚光文化 ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6F3E;
  --black: #0A0A0A;
  --off-black: #111111;
  --dark: #1A1A1A;
  --mid: #2E2E2E;
  --muted: #666666;
  --light: #AAAAAA;
  --off-white: #F5F2ED;
  --white: #FFFFFF;
  --display: 'Outfit', 'Noto Sans SC', sans-serif;
  --sans: 'Outfit', 'Noto Sans SC', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; }

/* CURSOR */
.cursor {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.4); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px max(60px, calc((100vw - 1400px) / 2));
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 20px max(60px, calc((100vw - 1400px) / 2));
}
.nav-logo { font-family: var(--display); font-weight: 300; font-size: 20px; letter-spacing: 0.25em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light); text-decoration: none; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: right 0.4s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after, .nav-links a:hover::after { right: 0; }
.nav-cta {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 10px 28px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* NAV DROPDOWN */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -20px;
  min-width: 200px; padding: 16px 0;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(201,169,110,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1001;
  margin-top: 12px;
}
.dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 24px;
  font-size: 13px; letter-spacing: 0.08em;
  color: var(--light); text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  text-transform: none;
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  color: var(--gold); padding-left: 30px;
}

/* NAV TOGGLE (HAMBURGER) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none; cursor: pointer;
  padding: 0; z-index: 1002;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* BUTTONS */
.btn-primary {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 16px 40px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: transparent; padding: 16px 40px;
  border: 1px solid rgba(201,169,110,0.4); cursor: pointer; text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

/* TAG */
.tag {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid rgba(201,169,110,0.2); padding: 4px 10px;
  transition: border-color 0.3s, color 0.3s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* PAGE HERO */
.page-hero {
  min-height: 70vh; padding: 180px max(60px, calc((100vw - 1400px) / 2)) 100px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0d0d0d 100%); }
.hero-orb {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  top: 50%; right: -100px; transform: translateY(-50%); border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; }
.breadcrumb {
  display: flex; align-items: center; gap: 12px; margin-bottom: 40px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.page-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(44px, 6vw, 84px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white);
}
.page-hero-title em { font-style: normal; font-weight: 500; color: var(--gold); }
.page-hero-side {}
.page-hero-desc {
  font-size: 16px; color: var(--light); line-height: 1.9; margin-bottom: 36px;
}
.page-hero-meta { display: flex; gap: 48px; }
.page-hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.meta-num { font-family: var(--display); font-size: 42px; font-weight: 200; color: var(--gold); letter-spacing: -0.02em; }
.meta-num em { font-style: normal; font-size: 24px; }
.meta-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* SECTIONS */
section { padding: 120px max(60px, calc((100vw - 1400px) / 2)); position: relative; }
.block-section { background: var(--off-black); }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow[style*="center"]::before { display: none; }
.section-title {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(32px, 4.5vw, 58px); line-height: 1.12; color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: normal; font-weight: 500; color: var(--gold); }
.section-body { font-size: 15px; color: var(--light); line-height: 1.9; max-width: 560px; }

/* CAPABILITY GRID */
.capability-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,169,110,0.1);
  margin-top: 80px;
}
.capability-card {
  background: var(--off-black); padding: 48px 36px;
  position: relative; transition: background 0.3s;
}
.capability-card:hover { background: rgba(201,169,110,0.04); }
.cap-num {
  font-family: var(--display); font-size: 13px; color: var(--gold-dark);
  letter-spacing: 0.12em; margin-bottom: 28px; display: block;
}
.cap-title {
  font-family: var(--display); font-size: 24px; font-weight: 300;
  color: var(--white); margin-bottom: 14px; letter-spacing: -0.01em;
}
.cap-desc { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.cap-list { list-style: none; }
.cap-list li {
  font-size: 13px; color: var(--light); padding: 8px 0;
  border-top: 1px solid rgba(201,169,110,0.08); position: relative; padding-left: 18px;
}
.cap-list li::before {
  content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

/* DELIVERABLES */
.deliverables-section { background: var(--black); }
.deliverables-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start;
}
.deliverables-list {}
.deliv-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: padding-left 0.3s;
}
.deliv-row:hover { padding-left: 12px; }
.deliv-num { font-family: var(--display); color: var(--gold-dark); font-size: 14px; letter-spacing: 0.1em; }
.deliv-name { font-family: var(--display); color: var(--white); font-size: 18px; font-weight: 300; }
.deliv-meta { font-size: 11px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }

/* METHOD */
.method-section { background: var(--dark); border-top: 1px solid rgba(201,169,110,0.08); border-bottom: 1px solid rgba(201,169,110,0.08); }
.method-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(201,169,110,0.08); margin-top: 80px;
}
.method-card { background: var(--dark); padding: 44px 32px; position: relative; }
.method-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.5s;
}
.method-card:hover::before { width: 100%; }
.method-letter { font-family: var(--display); font-size: 56px; font-weight: 200; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 24px; letter-spacing: -0.03em; }
.method-step { background: var(--dark); padding: 44px 32px; position: relative; }
.method-step::before {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.5s;
}
.method-step:hover::before { width: 100%; }
.method-num { font-family: var(--display); font-size: 56px; font-weight: 200; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 24px; letter-spacing: -0.03em; }
.method-name { font-family: var(--display); font-size: 20px; color: var(--white); margin-bottom: 12px; font-weight: 400; }
.method-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* FAQ */
.faq-section { background: var(--off-black); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: start; }
.faq-list {}
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.1); padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--display); font-size: 18px; color: var(--white); font-weight: 400;
}
.faq-q::after {
  content: '+'; color: var(--gold); font-size: 24px; font-weight: 200;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.9;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.faq-item.open .faq-a { max-height: 320px; margin-top: 16px; }

/* CTA */
.cta-section {
  background: var(--dark); text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--display); font-size: clamp(36px, 4.5vw, 62px); font-weight: 200;
  color: var(--white); line-height: 1.18; margin-bottom: 24px; letter-spacing: -0.02em;
}
.cta-title em { font-style: normal; font-weight: 500; background: linear-gradient(90deg, rgba(201,169,110,0.35) 0%, rgba(201,169,110,0.35) 30%, rgba(201,169,110,1) 50%, rgba(201,169,110,0.35) 70%, rgba(201,169,110,0.35) 100%); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: lightSweep 8s linear infinite; }
.cta-sub { font-size: 15px; color: var(--muted); margin-bottom: 52px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; }

/* FOOTER */
footer { background: var(--black); padding: 80px max(60px, calc((100vw - 1400px) / 2)) 40px; border-top: 1px solid rgba(201,169,110,0.1); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: var(--display); font-size: 20px; font-weight: 300; letter-spacing: 0.2em; color: var(--white); margin-bottom: 20px; display: block; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-qr { margin-top: 24px; }
.qr-placeholder {
  width: 72px; height: 72px;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.04);
}
.qr-placeholder span { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }
.qr-label { display: none; }
.footer-contact { margin-top: 28px; font-size: 13px; color: var(--muted); line-height: 2; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-col-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* CASES LIST */
.cases-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(201,169,110,0.1); margin-bottom: 60px;
}
.filter-group { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-pill {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); padding: 10px 20px; border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: all 0.3s; background: transparent;
}
.filter-pill:hover, .filter-pill.active { color: var(--black); background: var(--gold); border-color: var(--gold); }
.cases-count { font-size: 12px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.cases-count em { font-style: normal; color: var(--gold); font-weight: 500; }

.cases-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.case-list-card { cursor: pointer; }
.case-list-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  margin-bottom: 24px; transition: transform 0.5s;
}
.case-list-card:hover .case-list-thumb { transform: translateY(-6px); }
.case-list-thumb-content {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.case-list-thumb-content::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.2) 0px, rgba(201,169,110,0.2) 1px, transparent 1px, transparent 50px);
  opacity: 0.5;
}
.case-list-logo {
  font-family: var(--display); font-size: 72px; color: rgba(201,169,110,0.3);
  font-weight: 200; letter-spacing: 0.05em; transition: transform 0.5s; z-index: 2;
}
.case-list-card:hover .case-list-logo { transform: scale(1.1); }
.case-list-cat { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.case-list-title { font-family: var(--display); font-size: 20px; font-weight: 300; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.case-list-meta { font-size: 12px; color: var(--muted); }

/* CASE DETAIL */
.case-detail-hero {
  min-height: 80vh; padding: 180px 60px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1208 0%, #2d1f0e 50%, #0a0a0a 100%);
}
.case-detail-hero .hero-grid { opacity: 0.4; }
.case-detail-meta {
  position: relative; z-index: 2; display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(201,169,110,0.15);
}
.cd-meta-item { display: flex; flex-direction: column; gap: 6px; }
.cd-meta-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.cd-meta-value { font-family: var(--display); font-size: 18px; color: var(--white); font-weight: 400; }

.case-feature-img {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1208, #2d1f0e);
  position: relative; overflow: hidden;
}
.case-feature-img::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.15) 0px, rgba(201,169,110,0.15) 1px, transparent 1px, transparent 60px);
}
.case-feature-logo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 180px; font-weight: 200; color: rgba(201,169,110,0.2); letter-spacing: 0.05em;
}

.case-content {
  display: grid; grid-template-columns: 240px 1fr; gap: 80px;
  max-width: 1200px; margin: 0 auto;
}
.case-side { position: sticky; top: 120px; align-self: start; }
.case-side-title { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.case-side-list { list-style: none; }
.case-side-list li { font-size: 13px; color: var(--muted); padding: 10px 0; border-top: 1px solid rgba(201,169,110,0.08); }
.case-side-list li:first-child { border-top: none; }

.case-block { margin-bottom: 80px; }
.case-block h2 {
  font-family: var(--display); font-size: 32px; font-weight: 300; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.case-block p { font-size: 15px; color: var(--light); line-height: 1.9; margin-bottom: 16px; }
.case-quote {
  font-family: var(--display); font-size: 24px; color: var(--off-white); line-height: 1.6;
  margin: 40px 0; padding-left: 28px; border-left: 2px solid var(--gold); font-weight: 300;
  letter-spacing: -0.01em;
}
.case-figure {
  width: 100%; aspect-ratio: 16/10; margin: 40px 0;
  background: linear-gradient(135deg, #1a1208, #2d1f0e); position: relative; overflow: hidden;
}
.case-figure::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.12) 0px, rgba(201,169,110,0.12) 1px, transparent 1px, transparent 50px);
}
.case-figure-cap { font-size: 12px; color: var(--muted); margin-top: 12px; letter-spacing: 0.1em; }

.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.1); margin: 40px 0; }
.case-stat { background: var(--off-black); padding: 36px 28px; }
.case-stat-num { font-family: var(--display); font-size: 48px; color: var(--gold); font-weight: 200; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.case-stat-num em { font-style: normal; font-size: 24px; }
.case-stat-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* INSIGHTS */
.insights-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(201,169,110,0.1); margin-bottom: 60px;
}
.insights-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.08); }
.insight-list-card { background: var(--black); padding: 44px 36px; cursor: pointer; transition: background 0.3s; position: relative; }
.insight-list-card:hover { background: rgba(201,169,110,0.03); }
.insight-list-thumb {
  aspect-ratio: 16/10; margin: -44px -36px 28px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1208, #2d1f0e);
}
.insight-list-thumb::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.15) 0px, rgba(201,169,110,0.15) 1px, transparent 1px, transparent 50px); }

.featured-insight { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; margin-bottom: 80px; align-items: center; }
.featured-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; background: linear-gradient(135deg, #1a1208, #2d1f0e); }
.featured-thumb::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.15) 0px, rgba(201,169,110,0.15) 1px, transparent 1px, transparent 50px); }
.featured-tag { display: inline-block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 6px 14px; margin-bottom: 24px; }
.featured-title { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.01em; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.contact-info-block { padding: 32px 0; border-bottom: 1px solid rgba(201,169,110,0.1); }
.contact-info-block:first-child { padding-top: 0; }
.contact-info-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-info-value { font-family: var(--display); font-size: 22px; color: var(--white); font-weight: 300; line-height: 1.5; letter-spacing: -0.01em; }
.contact-info-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-info-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }

.form-card { background: var(--off-black); padding: 56px; border: 1px solid rgba(201,169,110,0.1); }
.form-row { margin-bottom: 28px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.15);
  color: var(--white); padding: 14px 18px; font-size: 14px; font-family: var(--sans);
  outline: none; transition: border-color 0.3s; font-weight: 300;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-checks { display: flex; flex-wrap: wrap; gap: 12px; }
.form-check {
  font-size: 12px; letter-spacing: 0.1em; color: var(--light);
  border: 1px solid rgba(255,255,255,0.08); padding: 10px 18px;
  cursor: pointer; transition: all 0.3s; user-select: none;
}
.form-check.active { background: rgba(201,169,110,0.1); border-color: var(--gold); color: var(--gold); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--black); border: none;
  padding: 18px 32px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--sans); cursor: pointer; transition: background 0.3s; font-weight: 500;
}
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 11px; color: var(--muted); margin-top: 16px; line-height: 1.7; }

/* ABOUT */
.about-hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,169,110,0.1); margin-top: 60px; }
.about-hero-meta > div { background: var(--black); padding: 36px 28px; }
.timeline { display: grid; grid-template-columns: 200px 1fr; gap: 40px; padding: 36px 0; border-bottom: 1px solid rgba(201,169,110,0.08); }
.timeline-year { font-family: var(--display); font-size: 36px; font-weight: 200; color: var(--gold); letter-spacing: -0.02em; }
.timeline-content h3 { font-family: var(--display); font-size: 22px; color: var(--white); font-weight: 400; margin-bottom: 10px; letter-spacing: -0.01em; }
.timeline-content p { font-size: 14px; color: var(--muted); line-height: 1.9; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.team-card {}
.team-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 20px;
  background: linear-gradient(135deg, #1a1208, #2d1f0e);
}
.team-photo::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(201,169,110,0.06) 0px, rgba(201,169,110,0.06) 1px, transparent 1px, transparent 30px); }
.team-photo-letter { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 96px; color: rgba(201,169,110,0.2); font-weight: 200; }
.team-name { font-family: var(--display); font-size: 20px; color: var(--white); font-weight: 300; margin-bottom: 4px; letter-spacing: -0.01em; }
.team-title { font-size: 12px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.1); margin-top: 60px; }
.value-card { background: var(--off-black); padding: 56px 36px; }
.value-num { font-family: var(--display); font-size: 64px; color: rgba(201,169,110,0.2); font-weight: 200; line-height: 1; margin-bottom: 24px; letter-spacing: -0.03em; }
.value-title { font-family: var(--display); font-size: 24px; color: var(--white); font-weight: 300; margin-bottom: 14px; letter-spacing: -0.01em; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.9; }

/* CAREERS */
.jobs-list {}
.job-row {
  display: grid; grid-template-columns: 80px 1.5fr 1fr 0.8fr 0.8fr auto;
  gap: 24px; align-items: center; padding: 32px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  cursor: pointer; transition: padding-left 0.3s;
}
.job-row:hover { padding-left: 12px; }
.job-num { font-family: var(--display); font-size: 14px; color: var(--gold-dark); letter-spacing: 0.15em; }
.job-title { font-family: var(--display); font-size: 20px; color: var(--white); font-weight: 400; letter-spacing: -0.01em; }
.job-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.job-arrow {
  width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px;
  transition: all 0.3s;
}
.job-row:hover .job-arrow { background: var(--gold); color: var(--black); transform: rotate(-45deg); }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,169,110,0.08); margin-top: 60px; }
.benefit-card { background: var(--off-black); padding: 36px 28px; }
.benefit-icon { width: 40px; height: 40px; margin-bottom: 20px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--display); font-size: 18px; font-weight: 300; }
.benefit-name { font-family: var(--display); font-size: 16px; color: var(--white); font-weight: 400; margin-bottom: 8px; letter-spacing: -0.01em; }
.benefit-desc { font-size: 12px; color: var(--muted); line-height: 1.8; }

/* PARTNERS */
.partner-tiers { margin-top: 60px; display: flex; flex-direction: column; gap: 40px; }
.tier-block { padding: 40px 0; border-top: 1px solid rgba(201,169,110,0.1); }
.tier-block:first-child { border-top: none; padding-top: 0; }
.tier-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.tier-title { font-family: var(--display); font-size: 22px; color: var(--white); font-weight: 400; letter-spacing: -0.01em; }
.tier-meta { font-size: 11px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }
.partner-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(201,169,110,0.08); }
.partner-logo {
  background: var(--off-black); aspect-ratio: 5/3;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 16px; color: var(--muted); font-weight: 300; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.partner-logo:hover { background: rgba(201,169,110,0.04); color: var(--gold); }

/* ========== HOME PAGE — HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0 max(60px, calc((100vw - 1400px) / 2));
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0d0d0d 100%); }
.hero-grid {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-grid::before, .hero-grid::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
}
.hero-grid::before {
  width: 600px; height: 400px;
  background: rgba(201,169,110,0.07);
  top: 20%; left: 15%;
  animation: floatA 18s ease-in-out infinite;
}
.hero-grid::after {
  width: 500px; height: 350px;
  background: rgba(201,169,110,0.05);
  bottom: 10%; right: 10%;
  animation: floatB 22s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(60px, -40px); }
  50% { transform: translate(120px, 20px); }
  75% { transform: translate(40px, 50px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-50px, 30px); }
  50% { transform: translate(-100px, -20px); }
  75% { transform: translate(-30px, -60px); }
}
.hero-orb { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%); top: 50%; right: -100px; transform: translateY(-50%); border-radius: 50%; }
.hero-orb-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%); top: 20%; left: 30%; border-radius: 50%; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(48px, 6.5vw, 88px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 32px; opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: normal; font-weight: 500; color: var(--gold); }
.hero-subtitle {
  font-size: 16px; font-weight: 300; color: var(--light); line-height: 1.8;
  max-width: 500px; margin-bottom: 52px; opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-actions { display: flex; gap: 20px; align-items: center; opacity: 0; animation: fadeUp 1s 0.9s forwards; }
.hero-scroll {
  position: absolute; bottom: 48px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

/* WORD CYCLE */
.word-cycle { display: inline-block; position: relative; }
.word-cycle .word {
  font-style: normal; font-weight: 500; color: var(--gold);
  display: inline-block; opacity: 0; position: absolute; left: 0; top: 0;
  white-space: nowrap; transition: opacity 0.5s ease, transform 0.5s ease; transform: translateY(12px);
}
.word-cycle .word.active { opacity: 1; position: relative; transform: translateY(0); }
.word-cycle .word.exit { opacity: 0; position: absolute; transform: translateY(-12px); }

/* HOME SERVICES */
.services-section { background: var(--off-black); }
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 80px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,169,110,0.1); }
.service-card {
  background: var(--off-black); padding: 44px 36px; cursor: pointer;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.service-card:hover { background: rgba(201,169,110,0.04); }
.service-card:hover::before { height: 100%; }
.service-num { font-family: var(--display); font-size: 13px; color: var(--gold-dark); letter-spacing: 0.1em; margin-bottom: 28px; display: block; font-weight: 300; }
.service-name { font-family: var(--display); font-size: 22px; font-weight: 300; color: var(--white); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.01em; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-arrow {
  position: absolute; bottom: 36px; right: 36px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}
.service-arrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(201,169,110,0.35);
  transition: width 0.4s ease, background 0.3s;
}
.service-arrow::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s ease;
  flex-shrink: 0;
}
.service-card:hover .service-arrow::before { width: 32px; background: var(--gold); }
.service-card:hover .service-arrow::after { opacity: 1; transform: translateX(4px); }

/* HOME CASES */
.cases-section { background: var(--black); }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.cases-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.case-card { position: relative; overflow: hidden; cursor: pointer; }
.case-card:nth-child(1) { grid-row: span 2; }
.case-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 50%, transparent 100%); padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
.case-category { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.case-title { font-family: var(--display); font-size: 24px; font-weight: 300; color: var(--white); margin-bottom: 8px; line-height: 1.25; letter-spacing: -0.01em; }
.case-card:nth-child(1) .case-title { font-size: 32px; }
.case-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.case-demo-1 { background: linear-gradient(135deg, #1a1208 0%, #2d1f0e 100%); }
.case-demo-2 { background: linear-gradient(135deg, #0d1a14 0%, #0f2018 100%); }
.case-demo-3 { background: linear-gradient(135deg, #0f0f1a 0%, #161625 100%); }
.case-demo-content { width: 100%; height: 100%; min-height: 300px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.case-card:nth-child(1) .case-demo-content { min-height: 680px; }
.case-demo-pattern { position: absolute; inset: 0; opacity: 0.15; background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.3) 0px, rgba(201,169,110,0.3) 1px, transparent 1px, transparent 60px); }
.case-demo-logo { font-family: var(--display); font-size: 64px; color: rgba(201,169,110,0.25); letter-spacing: 0.1em; font-weight: 200; transition: transform 0.7s ease; }
.case-card:hover .case-demo-logo { transform: scale(1.08); }

/* HOME PROCESS */
.process-section { background: var(--dark); border-top: 1px solid rgba(201,169,110,0.08); border-bottom: 1px solid rgba(201,169,110,0.08); }
.process-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-top: 80px; }
.process-step { display: flex; gap: 28px; padding: 36px 0; border-bottom: 1px solid rgba(201,169,110,0.08); cursor: pointer; transition: padding-left 0.3s ease; }
.process-step:first-child { padding-top: 0; }
.process-step:hover { padding-left: 12px; }
.step-num { font-family: var(--display); font-size: 48px; font-weight: 200; color: rgba(201,169,110,0.2); line-height: 1; min-width: 52px; transition: color 0.3s; letter-spacing: -0.03em; }
.process-step:hover .step-num { color: var(--gold); }
.step-name { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* HOME ABOUT */
.about-section { background: var(--off-black); }
.about-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-img-frame { width: 100%; aspect-ratio: 1/1; position: relative; overflow: visible; }
.about-img-pattern { position: absolute; inset: 0; }
.about-img-accent { display: none; }
.about-img-year { display: none; }
.about-growth-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.growth-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,169,110,0.1); animation: ringPulse 8s ease-out infinite; }
.ring-1 { width: 80px; height: 80px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 2.5s; }
.ring-3 { width: 300px; height: 300px; animation-delay: 5s; }
@keyframes ringPulse { 0% { transform: scale(0.8); opacity: 0; } 20% { opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }
.about-year-counter { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: clamp(48px, 6vw, 72px); font-weight: 200; line-height: 1; letter-spacing: -0.02em; display: flex; align-items: center; gap: 20px; white-space: nowrap; background: linear-gradient(90deg, rgba(201,169,110,0.35) 0%, rgba(201,169,110,0.35) 30%, rgba(201,169,110,1) 50%, rgba(201,169,110,0.35) 70%, rgba(201,169,110,0.35) 100%); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: lightSweep 8s linear infinite; }
.about-year-counter .year-start, .about-year-counter .year-end { font-size: inherit; }
.about-year-counter .year-sep { font-size: 0.6em; }
@keyframes lightSweep { 0% { background-position: 200% center; } 100% { background-position: -100% center; } }
.about-growth-line { display: none; }
.about-quote { font-family: var(--display); font-size: 24px; font-style: normal; font-weight: 300; color: var(--off-white); line-height: 1.6; margin-bottom: 36px; padding-left: 24px; border-left: 2px solid var(--gold); letter-spacing: -0.01em; }
.about-p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.about-clients { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 48px; border-top: 1px solid rgba(201,169,110,0.1); }
.client-pill { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(255,255,255,0.08); padding: 8px 16px; transition: border-color 0.3s, color 0.3s; }
.client-pill:hover { border-color: var(--gold-dark); color: var(--gold-light); }

/* HOME INSIGHTS */
.insights-section { background: var(--black); }
.insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.08); }
.insight-card { background: var(--black); padding: 44px 36px; cursor: pointer; transition: background 0.3s; position: relative; }
.insight-card:hover { background: rgba(201,169,110,0.03); }
.insight-date { font-size: 11px; letter-spacing: 0.15em; color: var(--gold-dark); margin-bottom: 20px; text-transform: uppercase; }
.insight-title { font-family: var(--display); font-size: 20px; font-weight: 300; color: var(--white); line-height: 1.4; margin-bottom: 16px; letter-spacing: -0.01em; }
.insight-excerpt { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.insight-link { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.insight-link:hover { gap: 14px; }
.insight-card::after { content: ''; position: absolute; bottom: 0; left: 36px; right: 36px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.insight-card:hover::after { opacity: 1; }

/* HOME CTA FORM */
.cta-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.cta-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.2); border-right: none; color: var(--white); padding: 16px 20px; font-size: 13px; font-family: var(--sans); outline: none; transition: border-color 0.3s; }
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: var(--gold); }
.cta-submit { background: var(--gold); color: var(--black); border: none; padding: 16px 32px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: background 0.3s; }
.cta-submit:hover { background: var(--gold-light); }

/* SCROLL PULSE */
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }



/* SERVICE OVERVIEW PAGE */
.services-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(201,169,110,0.1);
}
.service-overview-card {
  background: var(--off-black); padding: 56px 44px;
  text-decoration: none; color: inherit; display: block;
  position: relative; transition: background 0.3s;
}
.service-overview-card:hover { background: rgba(201,169,110,0.04); }
.service-overview-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.5s ease;
}
.service-overview-card:hover::before { width: 100%; }
.sov-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.sov-num { font-family: var(--display); font-size: 14px; color: var(--gold-dark); letter-spacing: 0.15em; }
.sov-arrow {
  display: flex; align-items: center; gap: 0; overflow: hidden;
}
.sov-arrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(201,169,110,0.35);
  transition: width 0.4s ease, background 0.3s;
}
.sov-arrow::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s ease;
  flex-shrink: 0;
}
.service-overview-card:hover .sov-arrow::before { width: 32px; background: var(--gold); }
.service-overview-card:hover .sov-arrow::after { opacity: 1; transform: translateX(4px); }
.sov-title { font-family: var(--display); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
.sov-desc { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.sov-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.sov-stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(201,169,110,0.1); }
.sov-stats > div { display: flex; flex-direction: column; gap: 4px; }
.sov-stat-num { font-family: var(--display); font-size: 28px; font-weight: 200; color: var(--gold); letter-spacing: -0.02em; }
.sov-stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }


/* CLIENT LOGOS GRID */
.client-logos-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: rgba(201,169,110,0.06); margin-top: 48px;
}
.client-logos-collapsible { max-height: 160px; overflow: hidden; transition: max-height 0.6s ease; position: relative; }
.client-logos-scroll { animation: scrollLogos 25s linear infinite; }
.client-logos-collapsible.expanded { max-height: none; overflow: visible; }
.client-logos-collapsible.expanded .client-logos-scroll { animation: none; }
.client-logos-collapsible.expanded .client-logo-item.is-duplicate { display: none; }
@keyframes scrollLogos {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.client-logo-item {
  background: var(--off-black); aspect-ratio: 5/2;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; color: var(--muted);
  font-weight: 300; letter-spacing: 0.08em;
  transition: color 0.3s, background 0.3s;
}
.client-logo-item:hover { color: var(--gold); background: rgba(201,169,110,0.04); }

/* Client marquee (index page) */
.client-marquee {
  overflow: hidden; margin-top: 48px; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.client-marquee-track {
  display: flex; gap: 1px; width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.client-marquee-track .client-logo-item {
  aspect-ratio: auto; padding: 20px 40px; white-space: nowrap; flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logos-toggle {
  display: block; margin: 24px auto 0;
  background: transparent; border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold); font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 32px; cursor: pointer; transition: all 0.3s;
}
.client-logos-toggle:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); }

/* LOAD MORE */
.load-more-wrap { text-align: center; margin-top: 60px; }
.load-more-btn {
  background: transparent; border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold); font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 48px; cursor: pointer; transition: all 0.3s;
}
.load-more-btn:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); }


/* ========== SERVICE PAGE — OTHER SERVICES ========== */
.other-services {
  padding: 80px max(80px, calc((100vw - 1400px) / 2));
  background: var(--off-black);
  border-top: 1px solid rgba(201,169,110,0.08);
}
.other-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.other-services-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
}
.other-services-title em {
  font-style: normal;
  color: var(--gold);
}
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
}
.other-service-card {
  background: var(--off-black);
  padding: 40px 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.other-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.other-service-card:hover { background: rgba(201,169,110,0.04); }
.other-service-card:hover::after { transform: scaleX(1); }
.osc-num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}
.osc-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.osc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}
.osc-link {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.osc-link::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(201,169,110,0.35);
  transition: width 0.4s ease, background 0.3s;
}
.osc-link::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.4s ease;
}
.other-service-card:hover .osc-link::before { width: 30px; background: var(--gold); }
.other-service-card:hover .osc-link::after { opacity: 1; transform: translateX(5px); }

@media (max-width: 1024px) {
  .other-services { padding: 60px 28px; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .other-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed; inset: 0; z-index: 1001;
    background: rgba(10,10,10,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; padding: 80px 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; letter-spacing: 0.12em; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: auto; padding: 12px 0 0; background: none; border: none; margin-top: 0;
  }
  .has-dropdown .dropdown a { padding: 6px 0; font-size: 14px; text-align: center; }
  .page-hero, section, footer, .hero { padding-left: 28px; padding-right: 28px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .capability-grid, .insights-list-grid, .cases-list-grid, .values-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .method-grid, .benefits-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .wanchun-showcase { grid-template-columns: 1fr; }
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .deliverables-layout, .contact-grid, .faq-layout, .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .case-content { grid-template-columns: 1fr; gap: 40px; }
  .case-side { position: static; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 12px; }
  .featured-insight { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; }
  .job-row { grid-template-columns: 1fr; gap: 8px; }
  .about-hero-meta { grid-template-columns: 1fr 1fr; }
  .related-cases { padding-left: 28px; padding-right: 28px; }
  .other-services { padding-left: 28px; padding-right: 28px; }
  .eligibility-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .capability-grid, .cases-list-grid, .values-grid, .method-grid, .benefits-grid, .team-grid, .insights-list-grid, .partner-logos { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .case-feature-logo { font-size: 96px; }
  .page-hero-meta { gap: 24px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .wanchun-showcase { grid-template-columns: 1fr; }
  .wanchun-visual { min-height: 260px; }
  .wanchun-meta { grid-template-columns: 1fr 1fr; }
  .page-hero, section, footer, .hero { padding-left: 20px; padding-right: 20px; }
  .page-hero { min-height: 50vh; padding-top: 140px; padding-bottom: 60px; }
  .related-cases, .other-services { padding-left: 20px; padding-right: 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-outline { width: 100%; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  nav { padding-left: 20px; padding-right: 20px; }
  nav.scrolled { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ========== CAPABILITIES GRID (about.html) ========== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  margin-top: 60px;
}
.cap-card {
  background: var(--off-black);
  padding: 48px 36px;
  transition: background 0.3s;
}
.cap-card:hover { background: var(--dark); }
.cap-icon {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.cap-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cap-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

/* ========== WANCHUN SHOWCASE (about.html) ========== */
.wanchun-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: rgba(201,169,110,0.06);
  margin-top: 60px;
  overflow: hidden;
}
.wanchun-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1a14 0%, #122520 100%);
  overflow: hidden;
}
.wanchun-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(
    45deg, rgba(201,169,110,0.4) 0px, rgba(201,169,110,0.4) 1px,
    transparent 1px, transparent 60px
  );
}
.wanchun-mark {
  font-family: var(--display);
  font-size: 120px;
  font-weight: 200;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.05em;
  z-index: 2;
  transition: transform 0.7s ease;
}
.wanchun-showcase:hover .wanchun-mark { transform: scale(1.06); }
.wanchun-info {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-black);
}
.brand-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.wanchun-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.wanchun-name-en {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.wanchun-desc {
  font-size: 14px;
  color: var(--light);
  line-height: 2;
  margin-bottom: 32px;
}
.wanchun-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,169,110,0.12);
  margin-bottom: 32px;
}
.wanchun-meta-item { display: flex; flex-direction: column; gap: 6px; }
.wanchun-meta-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.wanchun-meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-link {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: gap 0.3s, border-color 0.3s;
}
.brand-link:hover { gap: 16px; border-bottom-color: var(--gold); }

/* ========== PROBONO IMPACT ========== */
.probono-impact { background: var(--black); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  margin-top: 60px;
}
.impact-item {
  background: var(--black);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.impact-num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.impact-num em {
  font-style: normal;
  font-size: 0.55em;
  opacity: 0.7;
}
.impact-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== SERVICE PAGE — RELATED CASES ========== */
.related-cases {
  padding: 100px max(80px, calc((100vw - 1400px) / 2));
  background: var(--off-black);
}
.related-cases .cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(201,169,110,0.08);
}
.rel-card {
  display: flex;
  flex-direction: column;
  background: var(--off-black);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.rel-card::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.rel-card:hover { background: rgba(201,169,110,0.04); }
.rel-card:hover::before { transform: scaleX(1); }
.rel-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rel-img .case-demo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(
    45deg, rgba(201,169,110,0.3) 0px, rgba(201,169,110,0.3) 1px,
    transparent 1px, transparent 40px
  );
}
.rel-img .case-demo-logo {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 200;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.05em;
  z-index: 1;
  transition: transform 0.5s ease;
}
.rel-card:hover .rel-img .case-demo-logo { transform: scale(1.1); }
.rel-info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rel-cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.rel-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.rel-arrow {
  display: flex;
  align-items: center;
  padding: 0 28px 24px;
}
.rel-arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(201,169,110,0.35);
  transition: width 0.4s ease, background 0.3s;
}
.rel-arrow::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.4s ease;
}
.rel-card:hover .rel-arrow::before { width: 32px; background: var(--gold); }
.rel-card:hover .rel-arrow::after { opacity: 1; transform: translateX(4px); }

@media (max-width: 1024px) {
  .related-cases { padding: 80px 28px; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .rel-grid { grid-template-columns: 1fr; }
}

/* ========== BRAND PORTFOLIO (brands.html) ========== */
.brand-portfolio { display: flex; flex-direction: column; gap: 2px; background: rgba(201,169,110,0.08); margin-top: 60px; }
.brand-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: var(--off-black); min-height: 480px; overflow: hidden;
}
.brand-row:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.brand-row:nth-child(even) .brand-visual { order: 2; }
.brand-row:nth-child(even) .brand-info { order: 1; }
.brand-visual {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.brand-visual-pattern {
  position: absolute; inset: 0; opacity: 0.18;
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.4) 0px, rgba(201,169,110,0.4) 1px, transparent 1px, transparent 60px);
}
.brand-visual-mark {
  font-family: var(--display); font-weight: 200;
  color: rgba(201,169,110,0.35); letter-spacing: 0.05em;
  text-align: center; z-index: 2; transition: transform 0.7s ease;
}
.brand-row:hover .brand-visual-mark { transform: scale(1.06); }
.brand-info {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.brand-name-cn {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px;
}
.brand-name-en {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 32px;
}
.brand-desc { font-size: 14px; color: var(--light); line-height: 2; margin-bottom: 28px; }
.brand-meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.12); margin-bottom: 32px;
}
.brand-meta-item { display: flex; flex-direction: column; gap: 6px; }
.brand-meta-num {
  font-family: var(--display); font-size: 24px;
  font-weight: 200; color: var(--gold); letter-spacing: -0.02em;
}
.brand-meta-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.ip-char-mark {
  font-family: var(--display); font-size: 220px; font-weight: 200;
  color: rgba(201,169,110,0.3); letter-spacing: -0.03em; transition: transform 0.7s ease;
}
.brand-visual.bg-park { background: linear-gradient(135deg, #0d1a14 0%, #122520 100%); }
.brand-visual.bg-trade { background: linear-gradient(135deg, #1a1208 0%, #2d1f0e 100%); }
.brand-visual.bg-pala { background: linear-gradient(135deg, #1a0d12 0%, #2d141d 100%); }
.brand-visual.bg-qin { background: linear-gradient(135deg, #0d0d1a 0%, #161625 100%); }
.strategy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(201,169,110,0.08); margin-top: 60px;
}
.strategy-card { background: var(--off-black); padding: 48px 40px; }
.strategy-num {
  font-family: var(--display); font-size: 14px;
  color: var(--gold-dark); letter-spacing: 0.15em; margin-bottom: 24px; display: block;
}
.strategy-title {
  font-family: var(--display); font-size: 22px;
  font-weight: 300; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em;
}
.strategy-desc { font-size: 13px; color: var(--muted); line-height: 1.9; }

@media (max-width: 1024px) {
  .brand-row { grid-template-columns: 1fr; min-height: auto; }
  .brand-row:nth-child(even) { grid-template-columns: 1fr; }
  .brand-row:nth-child(even) .brand-visual { order: 0; }
  .brand-row:nth-child(even) .brand-info { order: 0; }
  .brand-visual { min-height: 320px; }
  .strategy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .brand-info { padding: 40px 28px; }
  .brand-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strategy-grid { grid-template-columns: 1fr; }
}

/* ========== BRAND DETAIL (brand-*.html) ========== */
.brand-hero-visual {
  min-height: 520px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.brand-hero-pattern {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,0.4) 0px, rgba(201,169,110,0.4) 1px, transparent 1px, transparent 60px);
}
.brand-hero-mark {
  font-family: var(--display); font-size: clamp(100px, 14vw, 180px);
  font-weight: 200; color: rgba(201,169,110,0.3); letter-spacing: 0.05em; z-index: 2;
}
.brand-overview-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-top: 60px; }
.brand-stat-stack { display: flex; flex-direction: column; gap: 2px; }
.brand-stat-item { background: var(--off-black); padding: 32px 36px; display: flex; flex-direction: column; gap: 8px; }
.brand-stat-num { font-family: var(--display); font-size: 36px; font-weight: 200; color: var(--gold); letter-spacing: -0.02em; }
.brand-stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.brand-story-tag { display: inline-block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,0.3); padding: 6px 14px; margin-bottom: 28px; }
.brand-story-title { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 300; color: var(--white); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 28px; }
.brand-story-body { font-size: 15px; color: var(--light); line-height: 2.1; margin-bottom: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.08); margin-top: 60px; }
.feature-card { background: var(--off-black); padding: 48px 40px; }
.feature-num { font-family: var(--display); font-size: 13px; letter-spacing: 0.2em; color: var(--gold-dark); margin-bottom: 24px; display: block; }
.feature-title { font-family: var(--display); font-size: 20px; font-weight: 300; color: var(--white); margin-bottom: 14px; letter-spacing: -0.01em; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.9; }

@media (max-width: 1024px) {
  .brand-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .brand-hero-visual { min-height: 300px; }
}

/* ========== LEGAL PAGES (privacy/terms) ========== */
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  color: var(--white); margin: 48px 0 16px; letter-spacing: -0.01em;
  padding-top: 48px; border-top: 1px solid rgba(201,169,110,0.1);
}
.legal-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body p { font-size: 14px; color: var(--light); line-height: 2; margin-bottom: 16px; }
.legal-body ul { list-style: none; margin-bottom: 16px; }
.legal-body ul li {
  font-size: 14px; color: var(--light); line-height: 2;
  padding-left: 20px; position: relative;
}
.legal-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.legal-meta {
  font-size: 12px; color: var(--muted); letter-spacing: 0.1em;
  margin-bottom: 60px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.legal-highlight {
  background: rgba(201,169,110,0.06); border-left: 2px solid var(--gold);
  padding: 20px 24px; margin: 24px 0;
  font-size: 14px; color: var(--off-white); line-height: 1.9;
}
