/* ===========================
   ChainVest Capital — style.css
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --gold:         #B08B3A;
  --gold-light:   #C9A84C;
  --gold-dim:     #D4B96A;
  --gold-pale:    #F5EDD6;
  --bg:           #FAFAF8;
  --bg2:          #F4F3EF;
  --bg3:          #EDECEA;
  --surface:      #FFFFFF;
  --dark:         #13120F;
  --dark2:        #1C1A15;
  --dark3:        #242118;
  --border:       rgba(176, 139, 58, 0.18);
  --border-mid:   rgba(176, 139, 58, 0.32);
  --border-dark:  rgba(176, 139, 58, 0.5);
  --text:         #1A1810;
  --text-mid:     #4A4535;
  --text-muted:   #8A7E65;
  --text-dim:     #B8AE97;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed nav */
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ======= SCROLL PROGRESS ======= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 300;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.4s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 21px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-mid);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--gold-pale);
  border-color: var(--border-dark);
}

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 72% 18%, rgba(176,139,58,0.13) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at 12% 88%, rgba(176,139,58,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 28% 32% at 92% 65%, rgba(176,139,58,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 20% 20% at 50% 50%, rgba(176,139,58,0.03) 0%, transparent 60%);
  will-change: transform;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,139,58,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,139,58,0.065) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 95% 90% at 55% 45%, black 5%, transparent 72%);
  will-change: transform;
}


.hero-location {
  position: absolute;
  top: 130px;
  left: 60px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-location .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

/* ── HERO VISUAL — triangular thesis composition ── */
.hero-visual {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  z-index: 2;
  pointer-events: none;
  animation: heroVisualIn 1.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(calc(-50% + 36px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* Single outer frame */
.hv-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}

/* Four corner marks */
.hv-corner { position: absolute; width: 14px; height: 14px; }
.hv-tl { top: -2px;    left: -2px;   border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hv-tr { top: -2px;    right: -2px;  border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.hv-bl { bottom: -2px; left: -2px;   border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hv-br { bottom: -2px; right: -2px;  border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* ── SVG triangle + spokes ── */
.hv-tri-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Triangle outline: draws itself in */
.hv-draw-tri {
  stroke-dasharray: 1450;
  stroke-dashoffset: 1450;
  animation: svgDraw 1.6s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}

/* Spokes from each vertex to orbital centre */
.hv-draw-s1 { stroke-dasharray: 190; stroke-dashoffset: 190; animation: svgDraw 0.5s ease 1.5s forwards; }
.hv-draw-s2 { stroke-dasharray: 340; stroke-dashoffset: 340; animation: svgDraw 0.6s ease 1.7s forwards; }
.hv-draw-s3 { stroke-dasharray: 340; stroke-dashoffset: 340; animation: svgDraw 0.6s ease 1.9s forwards; }

/* Vertex dots appear after their spoke finishes */
.hv-vdot { opacity: 0; animation: vdotIn 0.35s ease forwards; }
.hv-vdot-1 { animation-delay: 1.55s; }
.hv-vdot-2 { animation-delay: 2.05s; }
.hv-vdot-3 { animation-delay: 2.25s; }

@keyframes svgDraw { to { stroke-dashoffset: 0; } }
@keyframes vdotIn  { to { opacity: 0.6; } }

/* Orbital — centred, shifted slightly upward to sit within triangle */
.hero-graphic {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: 300px; height: 300px;
  pointer-events: none;
  z-index: 2;
}

/* ── Thesis label cards at triangle vertices ── */
.hv-card {
  position: absolute;
  background: rgba(250,250,248,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid);
  padding: 9px 15px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  white-space: nowrap;
  opacity: 0;
}

/* Top vertex — Blockchain Infrastructure, horizontally centred */
.hv-card-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: cardFadeIn1 0.5s ease 1.65s forwards;
}

/* Bottom-left vertex — Decentralised Finance */
.hv-card-2 {
  bottom: 10px;
  left: 4px;
  animation: cardFadeIn 0.5s ease 2.1s forwards;
}

/* Bottom-right vertex — AI × Web3 */
.hv-card-3 {
  bottom: 10px;
  right: 4px;
  animation: cardFadeIn 0.5s ease 2.3s forwards;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn1 {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hv-card-icon {
  font-size: 13px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.hv-card-l {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Concentric rings */
.hg-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-color: var(--border);
}

.hg-r1 {
  width: 340px; height: 340px;
  border-width: 1px;
  animation: spinCCW 40s linear infinite;
}

.hg-r2 {
  width: 240px; height: 240px;
  border-width: 1px;
  border-color: var(--border-mid);
  animation: spinCW 28s linear infinite;
}

.hg-r3 {
  width: 140px; height: 140px;
  border-width: 1px;
  border-color: rgba(176,139,58,0.28);
  animation: spinCCW 16s linear infinite;
}

/* Orbits (same size as rings, rotate to carry the node) */
.hg-orbit {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hg-o1 { width: 340px; height: 340px; animation: spinCW 40s linear infinite; }
.hg-o2 { width: 240px; height: 240px; animation: spinCCW 28s linear infinite; }
.hg-o3 { width: 340px; height: 340px; animation: spinCCW 56s linear infinite; }
.hg-o4 { width: 140px; height: 140px; animation: spinCW 16s linear infinite; }

/* Nodes that travel along the orbits */
.hg-node {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(176,139,58,0.6);
}

.hg-node-sm { width: 4px; height: 4px; top: -2px; background: var(--gold-dim); box-shadow: none; }
.hg-node-lg { width: 10px; height: 10px; top: -5px; box-shadow: 0 0 16px rgba(176,139,58,0.7); }

/* Central hexagon symbol */
.hg-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  color: rgba(176,139,58,0.22);
  line-height: 1;
  animation: breathe 4s ease-in-out infinite;
}

/* Pulse ring from center */
.hg-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(176,139,58,0.3);
  animation: expandPulse 3s ease-out infinite;
}

@keyframes expandPulse {
  0%   { width: 60px; height: 60px; opacity: 0.6; }
  100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes breathe {
  0%, 100% { opacity: 0.22; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.35; transform: translate(-50%,-50%) scale(1.06); }
}

@keyframes spinCW  { from { transform: translate(-50%,-50%) rotate(0deg);   } to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes spinCCW { from { transform: translate(-50%,-50%) rotate(0deg);   } to { transform: translate(-50%,-50%) rotate(-360deg); } }

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 680px;
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
  will-change: transform;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 400px;
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}

/* ── Hero entrance stagger ── */
.hero-location {
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-heading {
  animation: heroFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.28s both;
}
.hero-sub {
  animation: heroFadeUp 1.0s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
.hero-actions {
  animation: heroFadeUp 1.0s cubic-bezier(0.16,1,0.3,1) 0.75s both;
}
.hero-scroll-hint {
  animation: heroFadeUp 0.8s ease 1.05s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Em text: animated gold shimmer ── */
.hero-heading em {
  font-style: italic;
  background: linear-gradient(
    100deg,
    var(--gold) 0%,
    var(--gold-light) 38%,
    #e8d08a 50%,
    var(--gold-light) 62%,
    var(--gold) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold); /* fallback */
  animation: goldShimmer 3.5s ease-in-out infinite 2s;
}

@keyframes goldShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Hero-visual ambient glow ── */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 65% 65% at 50% 54%,
    rgba(176,139,58,0.06) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: visualGlow 4s ease-in-out infinite;
}

@keyframes visualGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.04); }
}

/* ── Ambient floating particles ── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 1;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0)     translateX(0)           scale(1);    opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.3; }
  100% { transform: translateY(-130px) translateX(var(--drift, 0px)) scale(0.7); opacity: 0; }
}

/* ── Redesigned scroll indicator ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(176,139,58,0.55);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  flex-shrink: 0;
}

.scroll-wheel {
  width: 2.5px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.8s cubic-bezier(0.45,0,0.55,1) infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0);    opacity: 1; }
  55%  { transform: translateY(10px); opacity: 0; }
  56%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ── Improved fade-up (adds subtle scale) ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Contact section ambient glow ── */
.contact {
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 60%,
    rgba(176,139,58,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: contactGlow 5s ease-in-out infinite;
}

@keyframes contactGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── Process dot pulse on line-visible ── */
.process-steps.line-visible .step-dot-inner {
  animation: dotPulse 1s cubic-bezier(0.16,1,0.3,1) both;
}
.process-steps.line-visible .step:nth-child(1) .step-dot-inner { animation-delay: 0.2s; }
.process-steps.line-visible .step:nth-child(2) .step-dot-inner { animation-delay: 0.7s; }
.process-steps.line-visible .step:nth-child(3) .step-dot-inner { animation-delay: 1.2s; }
.process-steps.line-visible .step:nth-child(4) .step-dot-inner { animation-delay: 1.7s; }

@keyframes dotPulse {
  0%   { transform: rotate(45deg) scale(0); opacity: 0; }
  60%  { transform: rotate(45deg) scale(1.4); }
  100% { transform: rotate(45deg) scale(1); opacity: 1; }
}

/* ======= BUTTONS ======= */
.btn-primary {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  font-weight: 500;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s;
}

.btn-ghost:hover { color: var(--text); }

.btn-ghost::after {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: width 0.3s;
}

.btn-ghost:hover::after { width: 44px; }

.btn-outline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--border-dark);
  color: var(--text);
}

/* ======= STATS BAND ======= */
.stats-band {
  background: var(--dark);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 50% 50%, rgba(176,139,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid on dark band */
.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,139,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,139,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.stats-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; flex: 1; }

.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 6.5vw, 92px);
  color: var(--gold-dim);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.stat-item:hover .stat-big { color: var(--gold-light); }

.stat-big-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 14px;
}

.stat-divider-v {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ======= MARQUEE ======= */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg2);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.marquee-item b {
  color: var(--gold-dim);
  font-size: 8px;
  margin-left: 4px;
  font-weight: 400;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======= SECTION SHARED ======= */
section { padding: 120px 60px; }

.section-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ======= ABOUT ======= */
.about {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── About Visual (three thesis panels) ── */
.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.av-panels {
  display: flex;
  flex: 1;
}

.av-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 18px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.16,1,0.3,1), background 0.35s;
  cursor: default;
}

.av-panel:last-child { border-right: none; }

.about-visual.visible .av-p1 { clip-path: inset(0 0 0% 0); transition-delay: 0s; }
.about-visual.visible .av-p2 { clip-path: inset(0 0 0% 0); transition-delay: 0.15s; }
.about-visual.visible .av-p3 { clip-path: inset(0 0 0% 0); transition-delay: 0.30s; }

.av-p1 { background: var(--bg); }
.av-p2 { background: var(--bg2); }
.av-p3 { background: var(--bg3); }

.av-panel:hover { background: var(--gold-pale) !important; }

/* Ghost number — top-right of each panel */
.av-p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(176,139,58,0.07);
  line-height: 1;
  position: absolute;
  top: -10px; right: 6px;
  pointer-events: none;
  user-select: none;
}

.av-p-body {
  position: relative;
  z-index: 1;
}

.av-p-icon {
  font-size: 22px;
  color: rgba(176,139,58,0.45);
  margin-bottom: 10px;
  line-height: 1;
}

.av-p-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* Stats footer bar */
.av-footer {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}

.av-stat {
  flex: 1;
  padding: 16px 16px;
  border-right: 1px solid var(--border);
}

.av-stat:last-child { border-right: none; }

.av-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}

.av-stat-l {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Corner accent marks */
.av-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
}

.av-tl {
  top: 8px; left: 8px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.av-br {
  bottom: 8px; right: 8px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* About text */
.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-text blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.about-text blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* ======= PILLARS ======= */
.pillars { background: var(--bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.pillar {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.pillar:hover { background: var(--surface); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  color: rgba(176,139,58,0.1);
  line-height: 1;
  margin-bottom: 28px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.pillar-tag {
  display: inline-block;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

/* ======= PORTFOLIO ======= */
.portfolio { background: var(--bg2); }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

/* Two-column body */
.portfolio-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.portfolio-overview { max-width: 100%; }

/* ── Portfolio right visual ── */
.portfolio-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  overflow: hidden;
}

/* Subtle inner background gradient */
.portfolio-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(176,139,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Corner accents */
.pv-corner {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  z-index: 2;
}
.pv-tl { top: 8px; left: 8px; border-top: 1px solid var(--border-dark); border-left: 1px solid var(--border-dark); }
.pv-br { bottom: 8px; right: 8px; border-bottom: 1px solid var(--border-dark); border-right: 1px solid var(--border-dark); }

/* Header row */
.pv-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pv-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex: 1;
}

.pv-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.pv-live {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Allocation bars */
.pv-bars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pv-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.pv-bar-name {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 300;
}

.pv-bar-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.pv-bar-track {
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: visible;
}

.pv-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}

/* Endpoint dot on the fill */
.pv-bar-fill::after {
  content: '';
  position: absolute;
  top: 50%; right: -3px;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s ease 1.2s;
}

.pv-bar-fill.animated::after { opacity: 1; }

/* Active state — triggers JS */
.pv-bar-fill.animated { width: var(--bar-target); }

.pv-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Key metrics row */
.pv-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
}

.pv-metric {
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
}

.pv-metric:last-child { border-right: none; }

.pv-metric-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  line-height: 1;
}

.pv-metric-l {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Decorative triangle watermark */
.pv-tri {
  position: absolute;
  bottom: -8px; right: -8px;
  width: 130px; height: 120px;
  pointer-events: none;
  opacity: 0.6;
}

.portfolio-statement {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.portfolio-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 48px;
}

.sector-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  padding: 10px 20px;
  cursor: default;
  transition: all 0.3s;
}

.sector-tag:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ======= PROCESS ======= */
.process { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-mid) 15%, var(--border-mid) 85%, transparent);
}

/* Animated progress line */
.process-steps::after {
  content: '';
  position: absolute;
  top: 27px; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 2s cubic-bezier(0.16,1,0.3,1);
  z-index: 1;
}

.process-steps.line-visible::after { width: 100%; }

.step { padding-right: 36px; }

.step-dot {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--bg);
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.step:hover .step-dot {
  background: var(--gold-pale);
  border-color: var(--border-dark);
}

.step-dot-inner {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ======= MÜNCHEN CALLOUT ======= */
.zurich {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zurich-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zurich-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 8px;
}

.zurich-card {
  border: 1px solid var(--border-mid);
  background: var(--surface);
  overflow: hidden;
}

/* München card — inner blocks */
.muc-head {
  padding: 36px 36px 28px;
}

.muc-coords {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.muc-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.muc-divider {
  height: 1px;
  background: var(--border);
  margin: 0 36px 28px;
}

.muc-facts {
  padding: 0 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.muc-fact-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}

.muc-fact-l {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.zurich-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 36px;
  border-top: 1px solid var(--border);
}

.z-badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-mid);
  padding: 6px 14px;
  background: var(--gold-pale);
}

/* ======= CONTACT ======= */
.contact {
  background: var(--surface);
  text-align: center;
}

.contact .section-tag { justify-content: center; }
.contact .section-tag::before { display: none; }
.contact .section-heading { margin-bottom: 20px; }

.contact-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 48px;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ======= CLOCK BAR ======= */
.clock-bar {
  background: var(--dark);
  border-top: 1px solid rgba(176,139,58,0.15);
  padding: 44px 60px;
  position: relative;
  overflow: hidden;
}

.clock-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,139,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,139,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.clock-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.clock-item { text-align: center; }

.clock-city {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}

.clock-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.clock-divider {
  width: 1px;
  height: 48px;
  background: rgba(176,139,58,0.15);
  flex-shrink: 0;
}

/* ======= FOOTER ======= */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px 60px 44px;
}

/* Top row: brand + contact link */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

/* Footer brand (logo + name) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

/* Contact link */
.footer-contact-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}

.footer-contact-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Description */
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Bottom row: links + copyright */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

/* ======= ANIMATIONS ======= */

/* Fade up — defined above with scale enhancement */

/* Fade left */
.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade right */
.fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Word-split heading reveal ── */
.reveal-heading { overflow: visible; }

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.04em;
  line-height: 1.05;
}

.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1),
              opacity   0.5s ease;
}

.reveal-heading.visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  top: -200px; left: -200px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,139,58,0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  mix-blend-mode: multiply;
}

/* ── Section parallax containers ── */
.zurich-text,
.zurich-card { will-change: transform; }

/* ── Stats band parallax items ── */
.stat-item { will-change: transform; }

/* ======================================================
   RESPONSIVE — mobile-first adjustments
   Desktop styles are untouched above this block.
   ====================================================== */

/* ── Hamburger: hidden on desktop ── */
.nav-hamburger  { display: none; }
.nav-mobile-only { display: none; }

/* ── Tablet + mobile (≤ 960px) ── */
@media (max-width: 960px) {

  /* ── NAV ── */
  .nav { padding: 18px 28px; }

  /* Fullscreen slide-in menu overlay */
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
    list-style: none;
  }

  /* Decorative gold accent line in menu overlay */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--border-mid) 30%, var(--border-mid) 70%, transparent);
    pointer-events: none;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
    margin-bottom: 0;
    text-align: center;
    padding: 18px 0;
    position: relative;
    z-index: 1;
  }

  /* Subtle separator between links */
  .nav-links li + li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background: var(--border);
  }

  .nav-links.open li:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.12s; }
  .nav-links.open li:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.19s; }
  .nav-links.open li:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.26s; }
  .nav-links.open li:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:.33s; }
  .nav-links.open li:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:.40s; }

  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: none;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
  }

  .nav-links a:hover  { color: var(--gold); transform: translateY(-2px); }

  .nav-mobile-only { display: list-item; }
  .nav-cta         { display: none; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  .nav-hamburger span:nth-child(3) { width: 14px; }

  .nav.menu-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); width: 22px; }
  .nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav.menu-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); width: 22px; }

  /* ── SECTION BASE ── */
  section,
  .about,
  .zurich { padding: 80px 28px; }

  /* Section tags + headings centered on mobile */
  .section-tag  { text-align: center; }
  .section-heading { text-align: center; }

  /* ── HERO ── */
  .hero {
    padding: 0 28px 80px;
    min-height: 100svh;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-location {
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    white-space: nowrap;
  }

  .hero-heading {
    font-size: clamp(40px, 10.5vw, 64px);
    margin-bottom: 22px;
    text-align: center;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 480px;
    margin-bottom: 40px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-scroll-hint {
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
  }

  .hero-visual   { display: none; }
  .hero-particle { display: none; }

  /* Disable JS mouse-parallax on mobile */
  .hero-bg, .hero-grid, .hero-heading, .hero-sub { will-change: auto; }

  /* ── STATS BAND ── */
  .stats-band { padding: 60px 28px; }
  .stats-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px 16px;
    max-width: 560px;
  }
  .stat-divider-v { display: none; }
  .stat-big       { font-size: clamp(44px, 11vw, 72px); }
  .stat-item      { will-change: auto !important; transform: none !important; }

  /* ── ABOUT ── */
  .about { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-visual  { min-height: auto; }
  .av-p-num      { font-size: 60px; }
  .av-watermark  { font-size: 160px; }
  .about-text blockquote { text-align: left; }

  /* ── PILLARS ── */
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar       { padding: 40px 32px; text-align: center; }
  .pillar-tag   { display: inline-block; }

  /* ── PORTFOLIO ── */
  .portfolio-header   { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
  .portfolio-body     { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-overview { max-width: 100%; text-align: center; }
  .portfolio-sectors  { justify-content: center; }
  .portfolio-statement { font-size: 14px; }
  .pv-metrics         { grid-template-columns: repeat(3,1fr); }

  /* ── PROCESS ── */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }
  .process-steps::before,
  .process-steps::after { display: none; }
  .step { text-align: center; }
  .step-dot { margin: 0 auto 16px; }

  /* ── ZURICH ── */
  .zurich-inner   { grid-template-columns: 1fr; gap: 36px; }
  .zurich-text    { text-align: center; }
  .zurich-text, .zurich-card { will-change: auto !important; transform: none !important; }
  .muc-head       { padding: 28px 28px 20px; text-align: center; }
  .muc-city       { font-size: 44px; }
  .muc-facts      { padding: 0 28px 24px; gap: 14px; justify-content: center; }
  .zurich-badges  { padding: 18px 28px; justify-content: center; }

  /* ── CONTACT ── */
  .contact        { text-align: center; }
  .contact-sub    { max-width: 400px; margin-left: auto; margin-right: auto; }
  .contact-actions { flex-direction: column; align-items: center; gap: 16px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; display: block; }

  /* ── CLOCK BAR ── */
  .clock-bar       { padding: 40px 28px; }
  .clock-bar-inner { flex-wrap: wrap; justify-content: center; gap: 32px 48px; }
  .clock-divider   { display: none; }
  .clock-time      { font-size: clamp(26px, 7vw, 40px); }
  .clock-item      { text-align: center; min-width: 110px; }

  /* ── FOOTER ── */
  footer        { padding: 44px 28px 36px; }
  .footer-top   { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-desc  { font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding-top: 24px; }
  .footer-links  { flex-wrap: wrap; justify-content: center; }

  /* Disable cursor glow on touch */
  .cursor-glow { display: none; }
}

/* ── Small phones (≤ 500px) ── */
@media (max-width: 500px) {

  section,
  .about,
  .zurich { padding-left: 20px; padding-right: 20px; }

  /* NAV */
  .nav        { padding: 16px 20px; }
  .nav-logo   { font-size: 17px; gap: 9px; }
  .logo-mark  { width: 28px; height: 26px; }

  /* NAV MENU links */
  .nav-links a { font-size: 26px; }
  .nav-links li { padding: 15px 0; }

  /* HERO */
  .hero         { padding: 0 20px 70px; }
  .hero-location { font-size: 10px; top: 82px; }
  .hero-heading { font-size: clamp(34px, 11vw, 50px); line-height: 1.0; }
  .hero-sub     { font-size: 13px; line-height: 1.72; }
  .hero-actions { gap: 14px; }
  .btn-primary  { padding: 14px 32px; font-size: 10px; }
  .btn-outline  { padding: 14px 28px; font-size: 10px; }

  /* STATS */
  .stats-band       { padding: 48px 20px; }
  .stats-band-inner { gap: 32px 12px; }
  .stat-big         { font-size: clamp(38px, 13vw, 56px); }
  .stat-big-label   { font-size: 9px; letter-spacing: 0.16em; }

  /* ABOUT */
  .about          { padding: 60px 20px; gap: 28px; }
  .about-visual   { min-height: auto; }
  .av-p-num       { font-size: 48px; }
  .av-p-title     { font-size: 11px; }
  .av-stat-n      { font-size: 18px; }
  .av-stat-l      { font-size: 7px; }

  /* SECTION HEADINGS */
  .section-heading { font-size: clamp(28px, 9.5vw, 44px); }

  /* PILLARS */
  .pillars-grid   { margin-top: 36px; }
  .pillar         { padding: 32px 22px; }
  .pillar-num     { font-size: 52px; margin-bottom: 20px; }
  .pillar-title   { font-size: 22px; }
  .pillar-desc    { font-size: 13px; }

  /* PROCESS */
  .process-steps  { grid-template-columns: 1fr; gap: 32px; }
  .step-title     { font-size: 20px; }

  /* ZURICH */
  .muc-head       { padding: 22px 22px 16px; }
  .muc-city       { font-size: 36px; }
  .muc-fact-n     { font-size: 24px; }
  .muc-facts      { padding: 0 22px 20px; }
  .zurich-badges  { padding: 16px 22px; flex-wrap: wrap; gap: 6px; }
  .z-badge        { font-size: 9px; padding: 5px 10px; }

  /* CLOCK BAR */
  .clock-bar          { padding: 32px 20px; }
  .clock-bar-inner    { gap: 24px 20px; }
  .clock-time         { font-size: clamp(20px, 8.5vw, 32px); }
  .clock-city         { font-size: 8px; letter-spacing: 0.2em; }
  .clock-item         { min-width: 90px; }

  /* CONTACT */
  .contact    { padding: 72px 20px; }
  .contact-sub { font-size: 13px; }
  .btn-primary,
  .btn-outline { max-width: 280px; }

  /* FOOTER */
  footer              { padding: 36px 20px 28px; }
  .footer-brand span  { font-size: 16px; }
  .footer-desc        { font-size: 11px; }
  .footer-copy        { font-size: 10px; }
}
