/* ═══════════════════════════════════════════════════════════
   CY & SONS PTE. LTD. — cynsons.com
   Stylesheet v8 · Four-Divider Motion System
   Galaxy · Galaxy · Sweep · Whisper
   Design constitution: motion · rhythm · timing · pacing
═══════════════════════════════════════════════════════════ */

:root {
  --navy:      #14244a;
  --navy-deep: #0c1830;
  --navy-mid:  #1e3360;
  --gold:      #b8922a;
  --gold-lt:   #d4aa55;
  --gold-pale: #f0dfa0;
  --gold-dim:  rgba(184,146,42,0.18);
  --cream:     #f7f4ee;
  --white:     #ffffff;
  --muted:     #5a5040;
  --muted-lt:  #8a8070;
  --border:    rgba(184,146,42,0.20);
  --border-lt: rgba(184,146,42,0.12);
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fs: 'Tenor Sans', 'Gill Sans', sans-serif;
  --fb: 'Montserrat', sans-serif;
  --mw: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.section-inner { max-width: var(--mw); margin: 0 auto; padding: 96px 5vw; }
.section-alt   { background: var(--cream); }
#contact       { background: var(--cream); }

.section-tag {
  font-family: var(--fs); font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }

.section-title { font-family: var(--fd); font-size: clamp(34px, 4.2vw, 54px); font-weight: 500; line-height: 1.12; color: var(--navy); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold); }

.section-intro { font-family: var(--fb); font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.8; margin-bottom: 52px; }

.gold-rule { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.gold-rule .line { display: block; height: 1px; width: 56px; background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-rule .line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-rule .diamond { display: block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.btn-primary { display: inline-block; font-family: var(--fs); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--navy); border: 1.5px solid var(--navy); padding: 15px 34px; cursor: pointer; transition: background 0.25s var(--ease), transform 0.2s var(--ease); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { display: inline-block; font-family: var(--fs); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); background: transparent; border: 1.5px solid var(--navy); padding: 15px 34px; cursor: pointer; transition: background 0.25s var(--ease), color 0.25s, transform 0.2s var(--ease); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ════════════════════════════════════════════════════════
   SCROLL ANIMATION SYSTEM
════════════════════════════════════════════════════════ */
.sc { opacity: 0; transform: translateY(36px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); will-change: transform, opacity; }
.sc.from-left  { transform: translateX(-52px); }
.sc.from-right { transform: translateX(52px); }
.sc.visible    { opacity: 1; transform: translate(0,0) !important; }
.sc-d1 { transition-delay: 0.08s; }
.sc-d2 { transition-delay: 0.16s; }
.sc-d3 { transition-delay: 0.24s; }
.sc-d4 { transition-delay: 0.32s; }
.sc-d5 { transition-delay: 0.40s; }
.sc-d6 { transition-delay: 0.48s; }

/* ════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════ */
#cys-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--navy-deep); border-bottom: 1px solid rgba(184,146,42,0.25); transition: box-shadow 0.4s; }
#cys-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
.nav-inner { max-width: var(--mw); margin: 0 auto; padding: 0 5vw; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; }
.nav-logo-wrap { width: 56px; height: 56px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.nav-logo { width: 50px; height: 50px; object-fit: contain; }
.nav-links { display: flex; gap: 34px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-family: var(--fs); font-size: 11px; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(255,255,255,0.65); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold-lt); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--fs); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold-lt); border: 1.5px solid var(--gold-lt); padding: 11px 26px; white-space: nowrap; transition: background 0.2s, transform 0.2s var(--ease); }
.nav-cta:hover { background: var(--gold-pale); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: var(--navy-deep); border-top: 1px solid rgba(184,146,42,0.2); padding: 16px 5vw 28px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--fs); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.nav-mobile a:hover { color: var(--gold-lt); }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero { min-height: 100vh; background: var(--cream); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 72px; border-bottom: 3px solid var(--gold); }
#hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(184,146,42,0.055) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 15% 80%, rgba(184,146,42,0.03) 0%, transparent 50%); pointer-events: none; }
.hero-corner { position: absolute; width: 160px; height: 160px; pointer-events: none; }
.hero-corner.tl { top: 72px; right: 0; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); opacity: 0.4; }
.hero-corner.br { bottom: 0; left: 0; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); opacity: 0.4; }
.hero-inner { text-align: center; z-index: 1; padding: 40px 20px 80px; max-width: 780px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-logo { height: 200px; width: auto; margin: 0 auto 28px; opacity: 0; transform: translateY(20px) scale(0.97); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.hero-logo.entered { opacity: 1; transform: translateY(0) scale(1); }
.hero-sublabel { font-family: var(--fs); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; opacity: 0; transform: translateY(14px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.hero-sublabel.entered { opacity: 1; transform: translateY(0); }
.hero-title { font-family: var(--fd); font-size: clamp(30px, 4.2vw, 52px); font-weight: 400; color: var(--navy); line-height: 1.22; margin-bottom: 4px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-word { display: inline-block; opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.hero-word.entered { opacity: 1; transform: translateY(0); }
.hero-rule { opacity: 0; transform: scaleX(0.4); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); transform-origin: center; }
.hero-rule.entered { opacity: 1; transform: scaleX(1); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.hero-cta.entered { opacity: 1; transform: translateY(0); }
.scroll-hint { position: absolute; bottom: 28px; left: 0; right: 0; display: flex; justify-content: center; flex-direction: column; align-items: center; gap: 8px; opacity: 0; transition: opacity 0.6s; }
.scroll-hint.entered { opacity: 1; }
.scroll-line { display: block; width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.scroll-label { font-family: var(--fs); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-lt); }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.about-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-left .section-title { font-size: clamp(30px, 3.4vw, 46px); text-align: center; }
.about-left .gold-rule { justify-content: center; }
.about-photo { width: 100%; max-width: 300px; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border: 1px solid var(--border); margin: 0 auto 20px; display: block; transform: scale(1.04); transition: transform 6s ease-out; }
.about-photo.entered { transform: scale(1); }
.about-linkedin { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--fs); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); transition: color 0.2s; }
.about-linkedin:hover { color: var(--navy); }
.about-linkedin svg { width: 16px; height: 16px; }
.about-lead { font-family: var(--fd); font-size: 19px; font-weight: 400; color: var(--navy); line-height: 1.75; margin-bottom: 22px; }
.about-body { font-family: var(--fb); font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }

/* ════════════════════════════════════════════════════════
   DIVIDER TIER 1 & 2 — GALAXY
   Dark · Immersive · Dramatic · Live particle canvas
════════════════════════════════════════════════════════ */
.galaxy-divider { position: relative; min-height: 380px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; overflow: hidden; border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.galaxy-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.galaxy-content { position: relative; z-index: 2; text-align: center; padding: 72px 5vw; max-width: 740px; }
.galaxy-tag { font-family: var(--fs); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); text-shadow: 0 0 24px rgba(184,146,42,0.7); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0.9; }
.galaxy-tag::before { content: ''; display: block; width: 36px; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,146,42,0.7)); }
.galaxy-tag::after  { content: ''; display: block; width: 36px; height: 1px; background: linear-gradient(90deg, rgba(184,146,42,0.7), transparent); }
.galaxy-statement { font-family: var(--fd); font-size: clamp(24px, 3.6vw, 46px); font-weight: 300; line-height: 1.28; color: var(--white); font-style: italic; margin-bottom: 32px; }
.galaxy-statement em { font-style: normal; color: var(--gold-lt); }
.galaxy-rule { display: flex; align-items: center; justify-content: center; gap: 14px; }
.galaxy-rule .line { display: block; height: 1px; width: 48px; background: linear-gradient(90deg, transparent, rgba(184,146,42,0.5)); }
.galaxy-rule .line.r { background: linear-gradient(90deg, rgba(184,146,42,0.5), transparent); }
.galaxy-rule .diamond { display: block; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* ════════════════════════════════════════════════════════
   DIVIDER TIER 3 — SWEEP
   Board → Ventures
   Cream background. Large gold word sweeps across viewport
   as you scroll into the section. Statement below.
   Pure CSS + JS — no canvas, no heavy rendering.
════════════════════════════════════════════════════════ */
.sweep-divider {
  position: relative;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}

/* The large sweeping word — starts off-screen right, sweeps to left */
.sweep-word {
  position: absolute;
  font-family: var(--fd);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,146,42,0.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  /* Initial position: off right edge */
  transform: translateX(110%);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
  letter-spacing: -0.02em;
}
.sweep-word.swept { transform: translateX(-5%); }

.sweep-content {
  position: relative; z-index: 2;
  text-align: center; padding: 52px 5vw;
  max-width: 640px;
}
.sweep-tag {
  font-family: var(--fs); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.sweep-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.sweep-tag::after  { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.sweep-statement {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400; font-style: italic;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 24px;
}
.sweep-statement em { font-style: normal; color: var(--gold); }

/* ════════════════════════════════════════════════════════
   DIVIDER TIER 4 — WHISPER
   Ventures → Contact
   White. Centred. Single italic line. Two gold hairlines.
   Quiet. Intimate. Draws you in.
════════════════════════════════════════════════════════ */
.whisper-divider {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 64px 5vw;
}
.whisper-rule {
  width: min(320px, 60vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.whisper-statement {
  font-family: var(--fd);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 300; font-style: italic;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.whisper-statement em { font-style: normal; color: var(--gold); }

/* ════════════════════════════════════════════════════════
   ADVISORY — Option B horizontal editorial cards
════════════════════════════════════════════════════════ */
#advisory { background: var(--cream); }
.advisory-cards { display: flex; flex-direction: column; gap: 0; }
.advisory-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; overflow: hidden; border-bottom: 1px solid var(--border-lt); position: relative; }
.advisory-card:first-child { border-top: 1px solid var(--border-lt); }
.advisory-card.flip { direction: rtl; }
.advisory-card.flip > * { direction: ltr; }
.ac-image { position: relative; overflow: hidden; background: var(--navy-deep); }
.ac-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.65) brightness(0.88); transform: scale(1.08); transition: transform 0.8s var(--ease-out), filter 0.6s; }
.advisory-card:hover .ac-image img { transform: scale(1.0); filter: saturate(0.9) brightness(0.95); }
.ac-image::after { content: ''; position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); transition: width 0.5s var(--ease-out); z-index: 2; }
.advisory-card:hover .ac-image::after { width: 100%; }
.ac-num-bg { position: absolute; bottom: 12px; right: 16px; font-family: var(--fd); font-size: 80px; font-weight: 300; color: rgba(255,255,255,0.09); line-height: 1; pointer-events: none; z-index: 1; user-select: none; }
.ac-body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; background: var(--white); transition: background 0.3s; position: relative; }
.advisory-card:hover .ac-body { background: #fdfcf9; }
.ac-body::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(180deg, var(--gold), var(--gold-lt)); transition: height 0.5s var(--ease-out); }
.advisory-card:hover .ac-body::before { height: 100%; }
.ac-service-num { font-family: var(--fs); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ac-service-num::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.ac-body h3 { font-family: var(--fd); font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.ac-body p { font-family: var(--fb); font-size: 14px; color: var(--muted); line-height: 1.85; }

/* ════════════════════════════════════════════════════════
   BOARD
════════════════════════════════════════════════════════ */
#board { background: var(--white); }
.board-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.board-card { background: var(--cream); border: 1px solid var(--border-lt); overflow: hidden; transition: border-color 0.35s, transform 0.4s var(--ease), box-shadow 0.35s; }
.board-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 18px 52px rgba(20,36,74,0.11); }
.board-card-image { width: 100%; height: 210px; overflow: hidden; position: relative; }
.board-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: saturate(0.72) brightness(0.88); transform: scale(1.08); transition: transform 0.7s var(--ease-out), filter 0.5s; }
.board-card:hover .board-card-image img { transform: scale(1.0); filter: saturate(0.95) brightness(0.95); }
.board-card-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, rgba(12,24,48,0.4) 0%, transparent 100%); pointer-events: none; }
.board-card-image::before { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); transition: width 0.45s var(--ease-out); z-index: 2; }
.board-card:hover .board-card-image::before { width: 100%; }
.board-card-body { padding: 28px 24px 32px; }
.board-icon { width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease); }
.board-card:hover .board-icon { background: var(--gold-dim); border-color: var(--gold); transform: rotate(8deg) scale(1.08); }
.board-icon svg { width: 20px; height: 20px; }
.board-card-body h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.board-card-body p { font-family: var(--fb); font-size: 13.5px; color: var(--muted); line-height: 1.85; }

/* ════════════════════════════════════════════════════════
   VENTURES
════════════════════════════════════════════════════════ */
.ventures-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-bottom: 40px; }
.venture-card { background: var(--white); border: 1px solid var(--border-lt); overflow: hidden; transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.3s; }
.venture-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 14px 44px rgba(20,36,74,0.09); }
.venture-card-image { width: 100%; height: 200px; overflow: hidden; }
.venture-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 0.6s var(--ease-out); }
.venture-card:hover .venture-card-image img { transform: scale(1.0); }
.venture-card-body { padding: 32px 36px 36px; }
.venture-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; gap: 12px; }
.venture-name { font-family: var(--fd); font-size: 22px; font-weight: 500; color: var(--navy); }
.venture-status { font-family: var(--fs); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 11px; white-space: nowrap; flex-shrink: 0; margin-top: 4px; }
.status-prototype { background: rgba(184,146,42,0.1); color: var(--gold); border: 1px solid rgba(184,146,42,0.3); }
.status-building  { background: rgba(20,36,74,0.06); color: var(--navy); border: 1px solid rgba(20,36,74,0.15); }
.venture-desc { font-family: var(--fb); font-size: 14px; color: var(--muted); line-height: 1.88; margin-bottom: 20px; }
.venture-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.venture-tags span { font-family: var(--fs); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-lt); border: 1px solid var(--border); padding: 4px 11px; }
.venture-link { font-family: var(--fs); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-block; transition: color 0.2s, transform 0.2s; }
.venture-link:hover { color: var(--navy); transform: translateX(3px); }
.venture-link.muted { color: var(--muted-lt); cursor: default; }
.ventures-note { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 24px 0; }
.ventures-note p { font-family: var(--fb); font-size: 15px; color: var(--muted); text-align: center; line-height: 1.7; }
.diamond-sm { display: block; width: 5px; height: 5px; background: var(--gold-dim); transform: rotate(45deg); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.contact-details { padding-top: 8px; }
.contact-intro-text { font-family: var(--fb); font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.contact-info-block { padding: 24px; background: var(--white); border: 1px solid var(--border-lt); border-left: 3px solid var(--gold); margin-bottom: 28px; }
.contact-info-item { margin-bottom: 18px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-label { font-family: var(--fs); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-val { font-family: var(--fb); font-size: 14px; font-weight: 500; color: var(--navy); }
.contact-image { overflow: hidden; border: 1px solid var(--border-lt); }
.contact-image img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
.contact-image:hover img { transform: scale(1.03); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--fs); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.required-star { color: var(--gold); margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--fb); font-size: 14px; color: var(--navy); background: var(--white); border: 1.5px solid var(--border); padding: 13px 15px; outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-lt); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8922a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; cursor: pointer; }
.form-honeypot { display: none !important; }
.form-note { font-family: var(--fb); font-size: 12px; color: var(--muted-lt); line-height: 1.6; padding: 12px 14px; background: var(--white); border: 1px solid var(--border-lt); }
.form-errors { display: none; background: rgba(180,40,40,0.06); border: 1px solid rgba(180,40,40,0.2); border-left: 3px solid #b42828; padding: 14px 16px; }
.form-errors p { font-family: var(--fb); font-size: 13px; color: #8b1a1a; line-height: 1.7; }
.form-errors.visible { display: block; }
.form-success { display: none; font-family: var(--fd); font-size: 16px; font-style: italic; color: var(--gold); text-align: center; padding: 16px; border: 1px solid var(--border); background: var(--white); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
#cys-footer { background: var(--navy-deep); border-top: 3px solid var(--gold); position: relative; overflow: hidden; }
#cys-footer::before { content: ''; position: absolute; top: -60px; left: -60px; width: 180px; height: 180px; border-bottom: 1.5px solid rgba(184,146,42,0.3); border-right: 1.5px solid rgba(184,146,42,0.3); pointer-events: none; }
#cys-footer::after  { content: ''; position: absolute; bottom: -60px; right: -60px; width: 180px; height: 180px; border-top: 1.5px solid rgba(184,146,42,0.3); border-left: 1.5px solid rgba(184,146,42,0.3); pointer-events: none; }
.footer-inner { max-width: var(--mw); margin: 0 auto; padding: 52px 5vw; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo-wrap { width: 72px; height: 72px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo { width: 64px; height: 64px; object-fit: contain; }
.footer-tagline { font-family: var(--fs); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; flex-direction: column; gap: 11px; align-items: center; }
.footer-links a { font-family: var(--fs); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { text-align: right; }
.footer-copy p { font-family: var(--fb); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-reg { font-size: 12px !important; color: rgba(255,255,255,0.22) !important; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .board-grid    { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner  { grid-template-columns: 1fr; text-align: center; }
  .footer-brand  { align-items: center; }
  .footer-copy   { text-align: center; }
  .footer-links  { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .form-row      { grid-template-columns: 1fr; }
  .advisory-card { grid-template-columns: 1fr; min-height: auto; }
  .advisory-card.flip { direction: ltr; }
  .ac-image      { height: 220px; }
  .ac-body       { padding: 32px 28px; }
  .galaxy-statement  { font-size: clamp(20px, 5vw, 32px); }
  .sweep-word    { font-size: clamp(60px, 18vw, 120px); }
}
@media (max-width: 580px) {
  .section-inner { padding: 64px 5vw; }
  .hero-logo     { height: 130px; }
  .hero-cta      { flex-direction: column; align-items: center; }
  .hero-corner   { width: 80px; height: 80px; }
  .ventures-note { flex-direction: column; gap: 10px; }
  .whisper-divider { padding: 48px 5vw; }
}
