/* ==========================================================================
   CIL Global Capital — Premium Website Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy:       #0a1628;
  --navy-light: #111d33;
  --navy-mid:   #162340;
  --slate:      #1e2d4a;
  --gold:       #c1a368;
  --gold-light: #d4ba82;
  --gold-dark:  #a88c4f;
  --white:      #ffffff;
  --white-90:   rgba(255,255,255,0.9);
  --white-70:   rgba(255,255,255,0.7);
  --white-50:   rgba(255,255,255,0.5);
  --white-30:   rgba(255,255,255,0.3);
  --white-15:   rgba(255,255,255,0.15);
  --white-08:   rgba(255,255,255,0.08);
  --white-04:   rgba(255,255,255,0.04);
  --accent-green: #4ade80;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(20px, 4vw, 60px);
  --container-max: 1280px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;

  --border-subtle: 1px solid rgba(255,255,255,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white-70);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em; margin-bottom: 24px;
}
.preloader-bar {
  width: 200px; height: 2px; background: var(--white-08);
  border-radius: 2px; overflow: hidden;
}
.preloader-progress {
  width: 0; height: 100%; background: var(--gold);
  border-radius: 2px; animation: preload 1.2s var(--ease-out-expo) forwards;
}
@keyframes preload { to { width: 100%; } }

/* ---------- Header / Nav ---------- */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 42px 0;
  background: transparent;
}
.header.scrolled {
  background: transparent;
}
/* Sub-pages keep sticky nav */
.header--solid {
  position: fixed;
  transition: background var(--duration-normal) ease, padding var(--duration-normal) ease;
}
.header--solid.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom: var(--border-subtle);
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; line-height: 1;
}
.logo-text {
  font-size: 0.85rem; font-weight: 400; color: var(--white-70);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.7rem; font-weight: 500; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: color var(--duration-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out-expo);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  color: var(--navy); background: var(--gold);
  padding: 12px 28px; border-radius: 5px; font-weight: 600; font-size: 0.75rem;
  transition: all var(--duration-fast) ease;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--navy); color: var(--gold);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--white-70);
  border-radius: 2px; transition: all var(--duration-normal) var(--ease-out-expo);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%); object-fit: cover;
}

.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,22,40,0.65);
}

.hero-gradient {
  display: none;
}
.hero-particles { position: absolute; inset: 0; z-index: 3; }

.hero-content {
  position: relative; z-index: 4; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: 0; padding-bottom: 0; margin-top: -40px;
  max-width: 700px; padding-left: 0; margin-left: 10vw;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border: 1px solid var(--white-15); border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent-green);
  border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500; font-style: normal; color: var(--white); line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -0.01em; white-space: nowrap;
}
.text-accent { color: var(--gold); }

.hero-subtitle {
  max-width: 620px; margin: 0 0 28px;
  font-family: 'Inter', sans-serif; font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--white); line-height: 1.75;
}

.hero-actions {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 16px; flex-wrap: wrap;
}
.hero-text-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}
.hero-text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; font-size: 0.88rem; font-weight: 600;
  border-radius: 8px; letter-spacing: 0.02em;
  transition: all var(--duration-fast) ease; white-space: nowrap;
}
.btn-sm { padding: 12px 24px; font-size: 0.82rem; }
.btn-primary { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.btn-primary:hover {
  background: var(--navy); color: var(--gold); border-color: var(--gold);
}
.btn-outline { border: 1px solid var(--white-30); color: var(--white-90); }
.btn-outline:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; padding-top: 40px; border-top: var(--border-subtle);
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 600;
  color: var(--white); line-height: 1.2;
}
.hero-stat-prefix,
.hero-stat-suffix {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 600;
  color: var(--gold); line-height: 1.2;
}
.hero-stat-label {
  display: block; font-size: 0.75rem; color: var(--white-50);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.hero-stat-divider { width: 1px; height: 40px; background: var(--white-15); }

/* Hero Scroll */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 4;
}
.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.7rem; color: var(--white-30);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 20px; }
}

/* ---------- Sections (shared) ---------- */
.section { padding: var(--section-py) 0; position: relative; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 72px); }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.18em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--white); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.section-subtitle { font-size: 1.05rem; color: var(--white); line-height: 1.8; }
.section-text { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }

/* ---------- About Section ---------- */
.section-about {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.section-grid { display: grid; gap: clamp(40px, 5vw, 80px); align-items: center; }
.section-grid--2col { grid-template-columns: 1fr 1fr; }

.about-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(193,163,104,0.1); color: var(--gold);
}
.about-feature h4 { font-size: 0.95rem; font-weight: 600; color: var(--white-90); margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--white); line-height: 1.5; }

.about-image-wrapper { position: relative; }
.about-image-card {
  border-radius: 8px; overflow: hidden;
  border: none; background: var(--navy-mid); aspect-ratio: 12/10;
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  background: linear-gradient(180deg, #0f1f3a 0%, #162340 60%, #1a2a4a 100%);
  position: relative; overflow: hidden; padding-bottom: 24px;
}
.about-image-placeholder span {
  font-size: 0.75rem; color: var(--white-30);
  letter-spacing: 0.1em; text-transform: uppercase; position: relative; z-index: 1;
}

.placeholder-skyline {
  display: flex; align-items: flex-end; gap: 6px;
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
}
.building {
  background: linear-gradient(180deg, rgba(193,163,104,0.2), rgba(193,163,104,0.05));
  border-radius: 2px 2px 0 0; position: relative;
}
.building::before {
  content: ''; position: absolute; inset: 4px 3px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 3px, transparent 3px, transparent 7px);
}
.b1 { width: 24px; height: 80px; }
.b2 { width: 20px; height: 120px; }
.b3 { width: 32px; height: 160px; }
.b4 { width: 22px; height: 100px; }
.b5 { width: 28px; height: 130px; }

.about-float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: rgba(10, 22, 40, 0.9); backdrop-filter: blur(20px);
  border: var(--border-subtle); border-radius: var(--radius-md);
  padding: 20px 24px; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.float-card-icon { color: var(--gold); margin-bottom: 4px; }
.float-card-value {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white);
}
.float-card-label {
  font-size: 0.7rem; color: var(--white-50);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  padding: clamp(56px, 6vw, 96px) 0 clamp(48px, 5.5vw, 80px);
  background: linear-gradient(180deg, rgba(10,22,40,0.95) 0%, rgba(12,26,48,0.98) 100%);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(193,163,104,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  align-items: center;
}
.stats-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  position: relative;
}
.stats-banner-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: rgba(193,163,104,0.2);
}
.stats-banner-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  height: 1em;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.stats-banner-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-banner { padding: 56px 0 48px; }
  .stats-banner-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-banner-item::after { display: none; }
}

/* ---------- Featured Projects Section (Horizontal Scroll) ---------- */
.section-featured-wrap {
  background: var(--navy-light);
  position: relative;
  padding-top: clamp(64px, 7vw, 120px);
  overflow: hidden;
}

.section-featured-wrap .section-header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.featured-slider {
  overflow: hidden;
  padding: 0 var(--container-px);
  padding-bottom: clamp(64px, 7vw, 120px);
}

.featured-track {
  display: flex;
  gap: 60px;
}

.featured-panel {
  width: calc(100vw - var(--container-px) * 2);
  min-height: clamp(280px, 28vw, 420px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.02);
  border: none;
}

.featured-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.featured-panel-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 40%, rgba(10,22,40,0.3) 70%, transparent 100%);
}

.featured-panel-content {
  position: relative; z-index: 2;
  padding: clamp(32px, 4vw, 64px) clamp(32px, 5vw, 80px);
  max-width: clamp(420px, 44%, 560px);
  display: flex; flex-direction: column; justify-content: center;
}

.featured-panel-content .featured-card-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}

.featured-panel-location {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-panel-location svg {
  flex-shrink: 0;
}

.featured-panel-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--white); line-height: 1.15;
  margin-bottom: 20px;
}

.featured-panel-text {
  font-size: 0.92rem; color: var(--white); line-height: 1.8;
  margin-bottom: 32px;
}

.featured-panel-stats {
  display: flex; gap: 32px; padding: 20px 0; margin-bottom: 32px;
  border-top: var(--border-subtle); border-bottom: var(--border-subtle);
}

.featured-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(193,163,104,0.3);
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.featured-panel-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .section-featured-wrap { padding-top: 64px; }
  .featured-panel { min-height: 480px; width: calc(100vw - 32px); }
  .featured-panel-content { padding: 32px 24px; max-width: 100%; }
  .featured-panel-title { font-size: 1.6rem; }
  .featured-panel-stats { gap: 20px; flex-wrap: wrap; }
}

/* Featured Placeholders */
.featured-placeholder {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}

.featured-placeholder--stadium {
  background: linear-gradient(135deg, #0c1929 0%, #162340 50%, #1a2a4a 100%);
}
.fp-stadium-bowl {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; height: 55%; border: 2px solid rgba(193,163,104,0.15);
  border-radius: 50%;
}
.fp-stadium-bowl::before {
  content: ''; position: absolute; inset: 12%;
  border: 1px solid rgba(193,163,104,0.08); border-radius: 50%;
}
.fp-stadium-field {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 30%; height: 22%; background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.12); border-radius: 50%;
}
.fp-stadium-lights {
  position: absolute; inset: 0;
}
.fp-light {
  position: absolute; width: 4px; height: 4px;
  background: rgba(193,163,104,0.4); border-radius: 50%;
  animation: fp-light-pulse 3s ease-in-out infinite;
}
.fp-light:nth-child(1) { top: 18%; left: 25%; animation-delay: 0s; }
.fp-light:nth-child(2) { top: 18%; right: 25%; animation-delay: 0.5s; }
.fp-light:nth-child(3) { bottom: 18%; left: 25%; animation-delay: 1s; }
.fp-light:nth-child(4) { bottom: 18%; right: 25%; animation-delay: 1.5s; }
@keyframes fp-light-pulse {
  0%, 100% { opacity: 0.3; box-shadow: 0 0 8px rgba(193,163,104,0.2); }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(193,163,104,0.4); }
}

.featured-placeholder--whatcom {
  background: linear-gradient(135deg, #0c1929 0%, #162340 50%, #1a2a4a 100%);
}
.fp-corridor-line {
  position: absolute; top: 50%; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(193,163,104,0.2), var(--gold));
}
.fp-corridor-node {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 0.65rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.fp-corridor-node::before {
  content: ''; position: absolute; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%; top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(193,163,104,0.4);
}
.fp-corridor-node--van { left: 12%; padding-left: 20px; }
.fp-corridor-node--van::before { left: 0; }
.fp-corridor-node--sea { right: 12%; padding-right: 20px; }
.fp-corridor-node--sea::before { right: 0; }
.fp-master-blocks {
  position: absolute; top: 30%; left: 25%; right: 25%; height: 40%;
  display: flex; align-items: flex-end; justify-content: center; gap: 8px;
}
.fp-block {
  background: rgba(193,163,104,0.08); border: 1px solid rgba(193,163,104,0.12);
  border-radius: 2px 2px 0 0;
}
.fp-block--1 { width: 14%; height: 40%; }
.fp-block--2 { width: 12%; height: 65%; }
.fp-block--3 { width: 16%; height: 80%; }
.fp-block--4 { width: 12%; height: 50%; }
.fp-block--5 { width: 14%; height: 55%; }
.fp-corridor-pulse {
  position: absolute; top: calc(50% - 4px); width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; opacity: 0.6;
  animation: fp-corridor-travel 4s ease-in-out infinite;
}
@keyframes fp-corridor-travel {
  0% { left: 14%; opacity: 1; }
  50% { opacity: 0.3; }
  100% { left: calc(88% - 8px); opacity: 1; }
}

/* ---------- Portfolio Section ---------- */
.section-portfolio {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.portfolio-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.portfolio-stagger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
}
.portfolio-tile--tall .portfolio-tile-image {
  aspect-ratio: 4/3;
}
.portfolio-tile--offset { margin-top: 0; }
.portfolio-tile--offset-up { margin-top: 0; }

.portfolio-tile {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  border-radius: 8px; overflow: hidden;
  cursor: default;
}
.portfolio-tile:hover {
  transform: none;
  box-shadow: none;
}

.portfolio-tile-image {
  aspect-ratio: 3/2; overflow: hidden; position: relative;
}
.portfolio-tile-placeholder {
  width: 100%; height: 100%; position: relative;
  background: linear-gradient(180deg, #0c1929 0%, #162340 100%);
  display: flex; align-items: center; justify-content: center;
}

/* Tile placeholder variants */
.ptile-building {
  position: absolute; bottom: 20%;
  background: linear-gradient(180deg, rgba(193,163,104,0.2), rgba(193,163,104,0.06));
  border-radius: 2px 2px 0 0;
}
.ptile-b1 { left: 25%; width: 14%; height: 35%; }
.ptile-b2 { left: 42%; width: 16%; height: 55%; }
.ptile-b3 { left: 62%; width: 12%; height: 40%; }

.ptile-parcel {
  width: 50%; height: 50%; border: 2px dashed rgba(193,163,104,0.25);
  border-radius: 6px; position: relative;
}
.ptile-parcel::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(193,163,104,0.04); border-radius: 4px;
}

.ptile--mixed { background: linear-gradient(180deg, #0c1929 0%, #162340 100%); }
.ptile-mixed-base {
  position: absolute; bottom: 20%; left: 20%; right: 20%; height: 20%;
  background: rgba(193,163,104,0.08); border: 1px solid rgba(193,163,104,0.12);
  border-radius: 2px;
}
.ptile-mixed-tower {
  position: absolute; bottom: 20%; left: 35%; width: 18%; height: 55%;
  background: linear-gradient(180deg, rgba(193,163,104,0.2), rgba(193,163,104,0.06));
  border-radius: 2px 2px 0 0;
}

.ptile--industrial { background: linear-gradient(180deg, #0c1929 0%, #162340 100%); }
.ptile-warehouse {
  position: absolute; bottom: 25%; left: 15%; width: 35%; height: 25%;
  background: rgba(193,163,104,0.08); border: 1px solid rgba(193,163,104,0.1);
  border-radius: 2px;
}
.ptile-wh2 { left: 52%; width: 30%; height: 30%; }

.portfolio-tile-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.portfolio-tile-tag {
  font-size: 0.65rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.portfolio-tile-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px; line-height: 1.3;
}
.portfolio-tile-desc {
  font-size: 0.82rem; color: var(--white); line-height: 1.6;
  margin-bottom: 16px; flex: 1;
}
.portfolio-tile-meta {
  display: flex; gap: 16px; padding-top: 12px; border-top: var(--border-subtle);
}
.portfolio-tile-meta span {
  font-size: 0.7rem; font-weight: 500; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.portfolio-cta { text-align: center; margin-top: 48px; }

/* ---------- Portfolio Text Cards (no images) ---------- */
.portfolio-category {
  margin-bottom: 72px;
}
.portfolio-category:last-child {
  margin-bottom: 0;
}
.portfolio-category-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(193,163,104,0.15);
}
.portfolio-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-text-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.portfolio-text-card:hover {
  border-color: rgba(193,163,104,0.2);
  background: rgba(255,255,255,0.035);
}
.portfolio-text-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.portfolio-text-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.portfolio-text-desc {
  font-size: 0.8rem;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}
.portfolio-text-location {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .portfolio-text-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portfolio-text-grid { grid-template-columns: 1fr; }
  .portfolio-text-card { padding: 22px 20px; }
}

/* ---------- Invest With Us Section ---------- */
.section-invest {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.invest-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.invest-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 18, 36, 0.75);
  z-index: 1;
}
.section-invest .container {
  max-width: 100%; margin: 0; padding-left: 8%;
}
.invest-body {
  font-size: 1.125rem; line-height: 1.8; color: var(--white);
  max-width: 600px; margin: 0; text-align: left;
}

/* Legacy - keeping for reference */
.section-why {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.section-why::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(193,163,104,0.03) 0%, transparent 70%);
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 64px;
}

.why-card {
  background: rgba(255,255,255,0.02); border: var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--duration-normal);
}
.why-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(193,163,104,0.2);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }

.why-card-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(193,163,104,0.08); line-height: 1; margin-bottom: 16px;
}
.why-card-icon { color: var(--gold); margin-bottom: 16px; }
.why-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.why-card-text {
  font-size: 0.85rem; color: var(--white); line-height: 1.7;
}

/* Trust Bar */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
  padding: 32px; border: var(--border-subtle); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500; color: var(--white);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- News & Insights Section ---------- */
.section-news {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.news-section-header .section-header {
  margin-bottom: 0;
  text-align: left;
}
.news-section-header .section-title { text-align: left; }
.news-section-header .title-line { margin-left: 0; }
.news-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 8px;
}
.news-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.news-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.news-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.news-carousel-wrap {
  overflow: hidden;
}
.news-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-grid .news-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.news-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02); border: none;
  border-radius: 6px; overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
}
.news-card:hover {
  background: rgba(255,255,255,0.04);
}

.news-card-image {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.news-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(193,163,104,0.2);
}
.news-placeholder--1 { background: linear-gradient(135deg, #0f1f3a 0%, #1a2a4a 100%); }
.news-placeholder--2 { background: linear-gradient(135deg, #121e35 0%, #1a2a4a 100%); }
.news-placeholder--3 { background: linear-gradient(135deg, #0c1929 0%, #162340 100%); }

.news-card-category {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.65rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border: 1px solid rgba(193,163,104,0.2);
  border-radius: 100px; backdrop-filter: blur(8px);
  background: rgba(10,22,40,0.6);
}

.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-date {
  font-size: 0.72rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px; line-height: 1.35;
}
.news-card-excerpt {
  font-size: 0.85rem; color: var(--white); line-height: 1.7;
  margin-bottom: 20px; flex: 1;
}
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: gap var(--duration-normal) var(--ease-out-expo);
}
.news-card:hover .news-card-link { gap: 12px; }

/* ---------- Contact Section (for contact.html) ---------- */
.section-contact { background: var(--navy-light); position: relative; }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--white-70);
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; }

.accredited-notice {
  display: flex; gap: 12px; padding: 16px; border-radius: var(--radius-sm);
  background: rgba(193,163,104,0.06); border: 1px solid rgba(193,163,104,0.1);
  margin-top: 32px;
}
.accredited-notice svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.accredited-notice p { font-size: 0.78rem; color: var(--white-50); line-height: 1.6; }

.contact-form-wrapper {
  background: rgba(255,255,255,0.03); border: var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px;
}

.form-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--white); margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500; color: var(--white-70);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em;
}
.optional { color: var(--white-30); text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06); border: none;
  border-radius: 6px; color: var(--white-90); font-size: 0.9rem;
  transition: border-color var(--duration-fast), background var(--duration-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-checkbox { display: flex; gap: 12px; align-items: flex-start; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold);
}
.form-checkbox label {
  font-size: 0.78rem; color: var(--white-50);
  text-transform: none; letter-spacing: 0; line-height: 1.5;
}

/* Page header (for sub-pages) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(193,163,104,0.06) 0%, transparent 70%);
}

/* Portfolio page grid */
.portfolio-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ---------- Footer ---------- */
.footer {
  padding: clamp(56px, 6vw, 96px) 0 clamp(24px, 3vw, 48px); background: var(--navy);
  border-top: var(--border-subtle);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px); margin-bottom: clamp(32px, 4vw, 56px);
  justify-items: end;
}
.footer-grid .footer-brand {
  justify-self: start;
}

.footer-tagline {
  font-size: 0.88rem; color: var(--white-50);
  margin-top: clamp(10px, 1.2vw, 20px); max-width: clamp(200px, 22%, 300px);
}

.footer-links h5 {
  font-size: 0.85rem; font-weight: 600; color: var(--white-70);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: clamp(10px, 1.2vw, 20px);
}
.footer-links li { margin-bottom: clamp(6px, 0.8vw, 12px); }
.footer-links a {
  font-size: clamp(0.85rem, 1vw, 0.95rem); color: var(--white-50);
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom { padding-top: clamp(20px, 2.5vw, 40px); border-top: var(--border-subtle); }
.footer-bottom p { font-size: clamp(0.7rem, 0.9vw, 0.8rem); color: var(--white-30); }
.footer-disclaimer {
  margin-top: clamp(8px, 1vw, 16px); font-size: clamp(0.65rem, 0.8vw, 0.75rem); color: var(--white-30);
  line-height: 1.7; max-width: clamp(480px, 62%, 840px);
}

/* ---------- Animations ---------- */

/* Base state for ALL animated elements */
[data-animate] {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo),
              filter 1s var(--ease-out-expo);
  will-change: opacity, transform;
}

/* Direction variants */
[data-animate="fade-up"]    { transform: translateY(60px); }
[data-animate="fade-down"]  { transform: translateY(-60px); }
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="fade-left"]  { transform: translateX(60px); }
/* About section slide-in: handled by GSAP ScrollTrigger in main.js */
[data-animate="fade-in"]    { transform: none; }
[data-animate="zoom-in"]    { transform: scale(0.9); }
[data-animate="zoom-out"]   { transform: scale(1.05); }

/* Text reveal — characters/words clip from below */
[data-animate="reveal-up"] {
  clip-path: inset(100% 0 0 0);
  transform: translateY(20px);
  transition: clip-path 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo),
              opacity 0.8s var(--ease-out-expo);
}

/* Blur-in effect */
[data-animate="blur-in"] {
  filter: blur(12px);
  transform: translateY(20px);
}

/* Scale-up from small */
[data-animate="scale-up"] {
  transform: scale(0.85) translateY(30px);
}

/* Slide-in with rotation */
[data-animate="rotate-in"] {
  transform: perspective(1000px) rotateY(8deg) translateX(-40px);
}

/* Counter grow bar */
[data-animate="grow-width"] {
  transform: scaleX(0);
  transform-origin: left center;
}

/* Visible state for ALL */
[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotateY(0deg);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
[data-animate="grow-width"].visible {
  transform: scaleX(1);
}

/* Stagger children — applied to parent containers */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
[data-stagger].visible > *:nth-child(1)  { transition-delay: 0s; }
[data-stagger].visible > *:nth-child(2)  { transition-delay: 0.08s; }
[data-stagger].visible > *:nth-child(3)  { transition-delay: 0.16s; }
[data-stagger].visible > *:nth-child(4)  { transition-delay: 0.24s; }
[data-stagger].visible > *:nth-child(5)  { transition-delay: 0.32s; }
[data-stagger].visible > *:nth-child(6)  { transition-delay: 0.40s; }
[data-stagger].visible > *:nth-child(7)  { transition-delay: 0.48s; }
[data-stagger].visible > *:nth-child(8)  { transition-delay: 0.56s; }
[data-stagger].visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax-tracked elements get smooth transform */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Section divider line animation */
.section-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  transition: width 1.2s var(--ease-out-expo);
}
.section-divider.visible { width: 200px; }

/* Animated underline on section titles */
.section-title .title-line {
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  transition: width 0.8s var(--ease-out-expo) 0.4s;
}
.section-title.visible .title-line,
[data-animate].visible .title-line {
  width: 60px;
}
.section-header .title-line { margin: 16px auto 0; }

/* Image hover zoom for portfolio/news cards */
.portfolio-tile-image,
.news-card-image,
.featured-card-image {
  overflow: hidden;
}
.portfolio-tile-image > *,
.news-card-image > *,
.featured-card-image > * {
  transition: transform 0.6s var(--ease-out-expo);
}
.news-card:hover .news-card-image > *,
.featured-card:hover .featured-card-image > * {
  transform: scale(1.06);
}

/* Glow pulse on gold accent elements */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,163,104,0); }
  50% { box-shadow: 0 0 30px 4px rgba(193,163,104,0.15); }
}
.featured-card:hover { animation: glow-pulse 2s ease-in-out infinite; }

/* Progress bar that fills on scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.15s linear;
}

/* Magnetic hover effect on buttons */
.btn {
  transition: all var(--duration-normal) var(--ease-out-expo);
}

/* Number ticker styling */
.ticker-value {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

/* Smooth section background transitions */
.section {
  transition: background 0.6s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section-grid--2col { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card--reverse { direction: ltr; }
  .featured-card-image { min-height: 280px; }
  .portfolio-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 360px; height: 100vh;
    background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 24px; padding: 40px;
    transition: right var(--duration-normal) var(--ease-out-expo);
    border-left: var(--border-subtle);
  }
  .nav-menu.active { right: 0; }
  .nav-toggle { display: flex; }

  .hero-content { padding-bottom: 80px; margin-left: 4vw; max-width: 75vw; }
  .hero-actions { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
  .btn { justify-content: center; }

  .portfolio-grid-4 { grid-template-columns: 1fr; }
  .portfolio-stagger-grid { grid-template-columns: 1fr; }
  .portfolio-tile--offset { margin-top: 0; }
  .portfolio-tile--offset-up { margin-top: 0; }
  .why-grid { grid-template-columns: 1fr; }

  .trust-bar { flex-direction: column; gap: 16px; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .section-title { font-size: 1.8rem; }
  .contact-form-wrapper { padding: 24px; }
}

/* ---------- Selection & Scrollbar ---------- */
::selection { background: rgba(193,163,104,0.3); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(193,163,104,0.3); }

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Nav logo */
  .nav-logo img { height: 50px !important; }

  /* Hero actions — override inline gap: 40px */
  .hero-actions { gap: 16px !important; }

  /* Featured projects — stack vertically (GSAP disabled in JS) */
  .section-featured-wrap { overflow: hidden; padding-top: 48px; }
  .featured-track { flex-direction: column !important; gap: 32px !important; }
  .featured-panel { width: 100% !important; min-height: 380px; }

  /* News carousel — 1 card at a time */
  .news-grid .news-card { flex: 0 0 100%; }

  /* News section header — stack label + arrows */
  .news-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Invest structure — stack panels vertically */
  .invest-structure-track { flex-direction: column !important; }
  .invest-structure-panel { flex: 0 0 auto !important; width: 100% !important; }

  /* General section spacing */
  .section { padding: clamp(48px, 8vw, 80px) 0; }

  /* Footer — fix alignment and spacing on mobile */
  .footer-grid { justify-items: start; gap: 32px; }
  .footer-bottom { text-align: left; }
  .footer-disclaimer { max-width: 100%; }

  /* About section — hide image on mobile */
  .section-about .section-visual { display: none; }
}

/* ===== SMALL PHONES (max-width: 480px) ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.5rem; }
  .container { padding-left: 16px; padding-right: 16px; }
  .footer-brand img { height: 40px !important; }
  .news-arrow { width: 36px; height: 36px; }
}

/* Portfolio tag (shared) */
.portfolio-tag {
  font-size: 0.68rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border: 1px solid rgba(193,163,104,0.2); border-radius: 100px;
}
.portfolio-stat-value {
  display: block; font-family: var(--font-body); font-size: 1.2rem;
  font-weight: 600; color: var(--gold);
}
.portfolio-stat-label {
  font-size: 0.72rem; color: var(--white-50);
  text-transform: uppercase; letter-spacing: 0.08em;
}
