/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F5F2ED;
  font-family: 'IBM Plex Sans', Helvetica, sans-serif;
  color: #003366;
  -webkit-font-smoothing: antialiased;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Common ─── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-eyebrow span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #4A90A4;
  text-transform: uppercase;
}
.eyebrow-line {
  width: 24px;
  height: 1px;
  background: #4A90A4;
  flex-shrink: 0;
}

.section-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 200;
  line-height: 1.1;
  color: #003366;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(0,51,102,0.55);
}
.section-heading--white { color: #FFFFFF; }
.section-heading--white em { color: rgba(255,255,255,0.45); }

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: #595549;
  margin-bottom: 18px;
}
.body-text--dim { color: rgba(255,255,255,0.4); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.28);
  color: #FFFFFF;
}
.btn--outline-white:hover { background: #FFFFFF; color: #003366; border-color: #FFFFFF; }

.btn--dark {
  background: #003366;
  color: #FFFFFF;
  border: 1px solid #003366;
}
.btn--dark:hover { background: #1C4C7C; border-color: #1C4C7C; }

.btn--navy {
  background: #003366;
  color: #FFFFFF;
  border: 1px solid #003366;
}
.btn--navy:hover { background: #001D3A; border-color: #001D3A; }

.btn--outline-navy {
  border: 1px solid rgba(0,51,102,0.28);
  color: #003366;
}
.btn--outline-navy:hover { border-color: #003366; background: rgba(0,51,102,0.04); }

/* ─── Nav ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(245,242,237,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(0,51,102,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-logo-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  color: #FFFFFF;
  line-height: 1;
  transition: color 0.4s;
}
.nav-logo-inc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  color: rgba(255,255,255,0.35);
  transition: color 0.4s;
}
#nav.scrolled .nav-logo-name { color: #003366; }
#nav.scrolled .nav-logo-inc  { color: #4A90A4; }

.mark-rect {
  fill: #FFFFFF;
  transition: fill 0.4s;
}
#nav.scrolled .mark-rect { fill: #003366; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: opacity 0.25s, color 0.4s;
}
.nav-link:hover { opacity: 0.5; }
#nav.scrolled .nav-link { color: #003366; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
  transition: all 0.3s;
}
.nav-cta:hover { background: #FFFFFF; border-color: #FFFFFF; color: #003366; }
#nav.scrolled .nav-cta { border-color: rgba(0,51,102,0.35); color: #003366; }
#nav.scrolled .nav-cta:hover { background: #003366; color: #FFFFFF; border-color: #003366; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #FFFFFF;
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
}
#nav.scrolled .nav-hamburger span { background: #003366; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 190;
  background: rgba(245,242,237,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(0,51,102,0.1);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.mobile-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #003366;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,51,102,0.08);
  display: block;
}
.mobile-link--cta {
  margin-top: 16px;
  border: 1px solid rgba(0,51,102,0.28);
  padding: 12px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,51,102,0.28);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: #001D3A;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 72px 100px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-eyebrow span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #4A90A4;
  text-transform: uppercase;
}
.hero-eyebrow .eyebrow-line { background: #4A90A4; }

.hero-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 200;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-size: clamp(52px, 5vw, 84px);
  letter-spacing: -0.01em;
}
.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.hero-heading .accent { color: #4A90A4; }

.hero-body {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.14);
}
.hero-scroll span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
}

.hero-graphic {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark {
  width: 500px;
  height: 434px;
  position: relative;
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-blend {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 180px;
  background: linear-gradient(to right, #001D3A, transparent);
  z-index: 2;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,29,58,0.35);
  z-index: 1;
}

/* ─── Stats ─── */
.stats {
  background: #003366;
  padding: 64px 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; border-right: none; }

.stat-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(46px, 4vw, 66px);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number sup {
  font-size: 0.36em;
  vertical-align: super;
}
.stat-plus {
  font-size: 0.3em;
  vertical-align: middle;
  margin-left: 8px;
  font-weight: 300;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

/* ─── Strategy ─── */
.strategy {
  padding: 128px 80px;
  background: #F5F2ED;
}
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.strategy-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDD9D4;
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-icon {
  width: 34px; height: 34px; min-width: 34px;
  border: 1px solid rgba(74,144,164,0.32);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar-dot {
  width: 10px; height: 10px;
  background: #4A90A4;
}
.pillar-title {
  font-size: 13px;
  font-weight: 500;
  color: #003366;
  margin-bottom: 6px;
}
.pillar-body {
  font-size: 13px;
  color: #807B6F;
  line-height: 1.72;
}

/* Allocation card */
.strategy-right { position: sticky; top: 128px; }
.allocation-card {
  background: #FFFFFF;
  border: 1px solid #E6E3DB;
  padding: 48px;
}
.allocation-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #807B6F;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.allocation-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.allocation-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.allocation-bar-header span:first-child {
  font-size: 13px;
  color: #003366;
}
.allocation-pct {
  font-weight: 200;
  font-size: 22px;
  color: #003366;
}
.bar-track {
  height: 2px;
  background: #E6E3DB;
}
.bar-fill {
  height: 100%;
  background: #003366;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.allocation-footer {
  padding-top: 32px;
  border-top: 1px solid #E6E3DB;
}
.return-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #807B6F;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.return-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 7px 14px;
  background: #F5F2ED;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #595549;
  letter-spacing: 0.07em;
}
.tag--active {
  background: #003366;
  color: #FFFFFF;
}

/* ─── Markets ─── */
.markets {
  background: #001D3A;
  padding: 128px 80px;
}
.markets-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.markets-header-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.market-card {
  background: #001D3A;
  padding: 56px 48px;
  transition: background 0.3s;
}
.market-card:hover { background: #002347; }
.market-region {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #4A90A4;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.market-city {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 200;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.market-body {
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  line-height: 1.85;
  margin-bottom: 28px;
}
.market-rule {
  width: 18px;
  height: 1px;
  background: #4A90A4;
}

/* ─── Portfolio ─── */
.portfolio {
  padding: 128px 80px;
  background: #F5F2ED;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.portfolio-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003366;
  text-decoration: none;
  transition: opacity 0.25s;
  margin-bottom: 8px;
}
.portfolio-view-all:hover { opacity: 0.5; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.asset-card {
  cursor: pointer;
  transition: transform 0.35s ease;
}
.asset-card:hover { transform: translateY(-6px); }
.asset-image {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg,#E6E3DB 0px,#E6E3DB 1px,#EDE9E2 1px,#EDE9E2 34px);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.asset-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.asset-badge--navy { background: #003366; }
.asset-badge--teal { background: #4A90A4; }
.asset-badge--dark { background: #001D3A; }
.asset-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.asset-card:hover .asset-photo { transform: scale(1.04); }
.asset-location {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #807B6F;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.asset-name {
  font-weight: 300;
  font-size: 26px;
  color: #003366;
  margin-bottom: 14px;
  line-height: 1.2;
}
.asset-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #DDD9D4;
}
.asset-type {
  font-size: 12px;
  color: #595549;
}
.asset-confidential {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #4A90A4;
  letter-spacing: 0.06em;
}

/* ─── Quote ─── */
.quote-section {
  background: #003366;
  padding: 128px 80px;
}
.quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.quote-rule {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin: 0 auto 44px;
}
.quote-inner blockquote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 200;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.quote-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ─── Leadership ─── */
.leadership {
  padding: 128px 80px;
  background: #F5F2ED;
}
.leadership-header { margin-bottom: 72px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-photo {
  aspect-ratio: 3/4;
  background: #E6E3DB;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.team-member:hover .team-portrait { transform: scale(1.03); }
.team-name {
  font-weight: 300;
  font-size: 21px;
  color: #003366;
  margin-bottom: 5px;
}
.team-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #4A90A4;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.team-rule {
  width: 16px;
  height: 1px;
  background: #4A90A4;
}

/* ─── Enquire ─── */
.enquire {
  padding: 128px 80px;
  background: #FFFFFF;
  border-top: 1px solid #E6E3DB;
}
.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.enquire-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.enquire-details {
  display: flex;
  flex-direction: column;
}
.detail-row {
  padding: 28px 0;
  border-bottom: 1px solid #E6E3DB;
}
.detail-row--last { border-bottom: none; }
.detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #807B6F;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.detail-value {
  font-weight: 300;
  font-size: 20px;
  color: #003366;
}
.detail-value--teal { color: #4A90A4; }
.detail-value--small { font-size: 13px; color: #595549; line-height: 1.65; font-weight: 400; }

/* ─── Footer ─── */
.footer {
  background: #001D3A;
  padding: 72px 80px 44px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}
.footer-logo-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  color: #FFFFFF;
  line-height: 1;
}
.footer-logo-inc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  color: rgba(255,255,255,0.28);
  margin-top: 4px;
}
.footer-brand-body {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.3);
  max-width: 240px;
}
.footer-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #4A90A4;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-link:hover { color: #FFFFFF; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  #nav { padding: 20px 40px; }
  .hero-content { padding: 140px 40px 80px 40px; }
  .hero-scroll { left: 40px; }
  .stats  { padding: 64px 40px; }
  .strategy,
  .portfolio,
  .leadership,
  .enquire { padding: 96px 40px; }
  .markets  { padding: 96px 40px; }
  .quote-section { padding: 96px 40px; }
  .footer   { padding: 64px 40px 36px; }

  .strategy-grid { grid-template-columns: 1fr; gap: 60px; }
  .strategy-right { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-menu { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .hero-content { padding: 120px 24px 80px; }
  .hero-scroll { left: 24px; }

  .stats { padding: 48px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat { border-right: none; padding: 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 24px; }
  .stat:nth-child(even) { padding-left: 24px; }

  .strategy,
  .portfolio,
  .leadership,
  .enquire { padding: 80px 24px; }
  .markets,
  .quote-section { padding: 80px 24px; }
  .footer { padding: 56px 24px 32px; }

  .markets-header { grid-template-columns: 1fr; gap: 24px; }
  .markets-grid { grid-template-columns: 1fr; }
  .market-card { padding: 40px 24px; }

  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .enquire-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
