/* =========================================================
   INCREDIBLE INDIA HABITAT — Multi-page site
   Design system matched to the Emergent reference benchmark
   ========================================================= */
:root {
  --navy: #14284A;
  --navy-deep: #0E1E38;
  --blue: #1E7FC2;
  --blue-soft: #E8F2FA;
  --gold: #EFAF3C;
  --gold-soft: #F7D998;
  --terracotta: #BE5B2E;
  --terracotta-soft: #E3936B;

  --bg: #FFFFFF;
  --bg-soft: #F8F6F0;
  --bg-tint: #F4F2EA;
  --line: #E7E4D9;
  --text: #1C2431;
  --text-soft: #5B6270;
  --text-faint: #8B8E97;

  --font-head: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1280px;
  --radius: 6px;
  --radius-sm: 4px;
  --section-pad: clamp(56px, 8vw, 112px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection { background: var(--gold); color: var(--navy-deep); }
::-moz-selection { background: var(--gold); color: var(--navy-deep); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
em, .accent { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--terracotta); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section { padding: var(--section-pad) 0; }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy-deep); color: #DCE1EC; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--terracotta); }
.section--navy .eyebrow { color: var(--gold); }
.section--navy .eyebrow::before { background: var(--gold); }

h2.section-title { font-size: 30px; line-height: 1.16;} 
/* .section-lede { font-size: 16.5px; color: var(--text-soft); max-width: 58ch; margin-top: 16px; } */
.section-lede { font-size: 16.5px; color: var(--text-soft);  margin-top: 16px; }
.section--navy .section-lede { color: #B4BCCC; }
.section-head { max-width: 720px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 12px; }
.section:not(.section--navy) .link-arrow { color: var(--terracotta); border-color: var(--terracotta); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 14.5px; font-weight: 700;
  padding: 15px 28px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--blue); }
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #E29B23; }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

.pill { font-family: var(--font-head); font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 30px; border: 1px solid var(--line); color: var(--text-soft); display: inline-block; }
.tag-note { font-size: 13px; color: var(--text-faint); font-style: italic; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(14,30,56,0.07); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; transition: padding 0.3s var(--ease); }
.site-header.is-scrolled .wrap { padding-top: 7px; padding-bottom: 7px; }
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: auto; width: 118px; transition: width 0.3s var(--ease); }
.site-header.is-scrolled .site-header__logo img { width: 92px; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav__links a { font-family: var(--font-head); font-size: 14.5px; font-weight: 600; color: var(--text); position: relative; padding-bottom: 4px; display: inline-flex; align-items: center; gap: 4px; }
.site-nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right 0.3s var(--ease); }
.site-nav__links a:hover::after, .site-nav__links a.is-active::after { right: 0; }
.site-nav__links a.is-active { color: var(--terracotta); }
.site-nav__cta { display: flex; gap: 10px; align-items: center; }

/* Projects hover dropdown (desktop nav only) */
.site-nav__links li.has-dropdown { position: relative; }
.site-nav__links li.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.site-nav__links li.has-dropdown > a .caret { transition: transform 0.25s var(--ease); }
.site-nav__links li.has-dropdown:hover > a .caret, .site-nav__links li.has-dropdown:focus-within > a .caret { transform: rotate(180deg); }
/* .nav-dropdown is the full hoverable hit-area, including the gap above the
   visible panel (via padding-top) — this "bridges" the cursor's path from
   the Projects link down onto the dropdown item without losing :hover. */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 14px; width: max-content;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), visibility 0s linear 0.22s;
  z-index: 250;
}
.site-nav__links li.has-dropdown:hover .nav-dropdown,
.site-nav__links li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.22s var(--ease);
}
.nav-dropdown__panel {
  min-width: 210px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(14,30,56,0.14); padding: 8px;
  transform: translateY(6px); transition: transform 0.22s var(--ease);
}
.site-nav__links li.has-dropdown:hover .nav-dropdown__panel,
.site-nav__links li.has-dropdown:focus-within .nav-dropdown__panel {
  transform: translateY(0);
}
.nav-dropdown__item { display: block; padding: 11px 16px; border-radius: 4px; }
.nav-dropdown__item:hover { background: var(--bg-tint); }
.nav-dropdown__item-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.nav-dropdown__item:hover .nav-dropdown__item-name { color: var(--terracotta); }
.nav-dropdown__item-tag { display: block; font-size: 11.5px; font-weight: 500; color: var(--text-faint); margin-top: 2px; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); display: block; border-radius: 2px; }
.mobile-menu { position: fixed; inset: 0; z-index: 199; background: #fff; display: flex; flex-direction: column; justify-content: center; gap: 24px; align-items: center; transform: translateY(-100%); transition: transform 0.4s var(--ease); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 23px; font-weight: 700; color: var(--navy); }
.mobile-menu a.is-active { color: var(--terracotta); }
.mobile-menu .btn { margin-top: 8px; }
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* Mobile "Projects" accordion — tap to reveal Vantage Point, no hover required */
.mobile-menu__group { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__trigger {
  font-family: var(--font-head); font-size: 23px; font-weight: 700; color: var(--navy);
  background: none; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
}
.mobile-menu__trigger.is-active { color: var(--terracotta); }
.mobile-menu__trigger-caret { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.mobile-menu__group.is-open .mobile-menu__trigger-caret { transform: rotate(180deg); }
.mobile-menu__group.is-open .mobile-menu__trigger { color: var(--terracotta); }
.mobile-menu__submenu {
  max-height: 0; overflow: hidden; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: max-height 0.35s var(--ease), margin-top 0.35s var(--ease);
}
.mobile-menu__group.is-open .mobile-menu__submenu { max-height: 220px; margin-top: 16px; }
.mobile-menu__submenu-link {
  font-family: var(--font-head); font-size: 16.5px; font-weight: 600; color: var(--text-soft);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.mobile-menu__submenu-link:hover, .mobile-menu__submenu-link:active { color: var(--terracotta); }
.mobile-menu__submenu-link span { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--text-faint); }
@media (max-width: 900px) {
  .site-nav__links, .site-nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header__logo img { width: 96px; }
  .site-header.is-scrolled .site-header__logo img { width: 82px; }
}

/* =========================================================
   MARQUEE TICKER
   ========================================================= */
.marquee { background: var(--navy-deep); overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 28px; padding: 0 28px; white-space: nowrap; }
.marquee__item span { font-family: var(--font-accent); font-style: italic; font-size: 20px; color: #C6CCDA; }
.marquee__item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   PAGE HERO BANNER (interior pages) — dark, image-backed
   ========================================================= */
.page-hero {
  position: relative; padding: 88px 0 72px; min-height: 440px; overflow: hidden;
  background: var(--navy-deep); color: #fff;
  display: flex; align-items: center;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,19,36,0.86) 0%, rgba(9,19,36,0.8) 45%, rgba(9,19,36,0.9) 100%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 18px; }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { font-size: 30px; line-height: 1.15; max-width: 24ch; color: #fff; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p { margin-top: 20px; font-size: 17px; color: #B9C1D2; max-width: 60ch; }
.breadcrumb { font-family: var(--font-head); font-size: 13px; color: #93A0B8; margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--gold-soft); font-weight: 600; }

/* =========================================================
   HOME HERO SLIDER
   ========================================================= */
.hero { position: relative; height: 78vh; min-height: 350px; max-height: 400px; overflow: hidden; background: var(--navy-deep); }

/* Hero: background image only, plus visible manual prev/next arrows.
   Scoped strictly to .hero (homepage slider). Image, dimensions, slide
   transitions and autoplay are unchanged — only text/counter/scroll-cue/
   overlay stay hidden; the arrow controls are shown so users can still
   navigate manually. */
.hero .hero-slide__content,
.hero .hero-scroll-cue,
.hero .hero-dots,
.hero .hero-count {
  display: none !important;
}
.hero .hero-slide__bg::after {
  content: none !important;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateX(100%); transition: transform 0.85s var(--ease), opacity 0.85s var(--ease), visibility 0s linear 0.85s; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); z-index: 2; transition: transform 0.85s var(--ease), opacity 0.85s var(--ease); }
.hero-slide.is-prev { transform: translateX(-100%); z-index: 1; }
.hero-slide__bg { position: absolute; inset: 0; }
.hero-slide__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,38,0.35) 0%, rgba(10,20,38,0.55) 55%, rgba(10,20,38,0.88) 100%); }

.hero-slide__content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-slide__text { max-width: 680px; color: #fff; }
.hero-slide__eyebrow { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; transform: translateY(10px); display: flex; align-items: center; gap: 10px; }
.hero-slide__eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.hero-slide__title { font-family: var(--font-head); font-weight: 800; font-size: 30px; line-height: 1.08; color: #fff; opacity: 0; transform: translateY(14px); }
.hero-slide__title .accent { font-weight: 500; }
.hero-slide__lede { font-size: 16.5px; color: #CBD2E0; margin-top: 22px; max-width: 48ch; opacity: 0; transform: translateY(14px); }
.hero-slide__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(14px); }
.hero-slide.is-active .hero-slide__eyebrow, .hero-slide.is-active .hero-slide__title, .hero-slide.is-active .hero-slide__lede, .hero-slide.is-active .hero-slide__actions {
  opacity: 1; transform: translateY(0); transition: opacity 0.7s var(--ease) 0.32s, transform 0.7s var(--ease) 0.32s;
}
.hero-slide.is-active .hero-slide__title { transition-delay: 0.4s; }
.hero-slide.is-active .hero-slide__lede { transition-delay: 0.5s; }
.hero-slide.is-active .hero-slide__actions { transition-delay: 0.6s; }

.hero-slide__bg.is-graphic { background: linear-gradient(155deg, #16305A 0%, var(--navy-deep) 60%, #081120 100%); }
.hero-slide__bg.is-graphic .motif { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.hero-scroll-cue span { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.2em; }
.hero-scroll-cue svg { animation: scroll-bounce 1.8s ease-in-out infinite; }
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.hero-controls { position: absolute; bottom: 30px; right: clamp(20px,5vw,56px); z-index: 4; display: flex; align-items: center; gap: 16px; }
.hero-nav { display: flex; align-items: center; gap: 14px; }
.hero-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.hero-count { font-family: var(--font-head); font-size: 13px; color: #fff; letter-spacing: 0.05em; }
.hero-count strong { color: var(--gold); }
.hero-dots { display: none; }

@media (max-width: 860px) {
  .hero { height: 78vh; min-height: 520px; max-height: 680px; }
  .hero-slide__text { max-width: 100%; }
  .hero-slide__actions .btn { flex: 1; justify-content: center; }
  .hero-controls { right: 20px; bottom: 20px; }
}

/* =========================================================
   IMAGE FRAME UTILITY
   ========================================================= */
.frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-tint); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--16-10 { aspect-ratio: 16 / 10; }
.frame--4-3 { aspect-ratio: 4 / 3; }
.frame--1-1 { aspect-ratio: 1 / 1; }
.frame--3-4 { aspect-ratio: 3 / 4; }
.frame--21-9 { aspect-ratio: 21 / 9; }
.frame--outline { border: 1px solid var(--line); }
.frame--outline::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--gold); pointer-events: none; z-index: 2; }

/* =========================================================
   REVEAL — scroll-triggered entrance animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Image / media reveal — subtle wipe + scale, for photo frames */
.reveal-media {
  opacity: 0;
  transform: translateY(18px) scale(1.035);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal-media.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Slide-in variant — used for list rows / eyebrows where a lateral cue reads better */
.reveal-side {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal-side.is-visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-media, .reveal-side { opacity: 1 !important; transform: none !important; }
}


/* =========================================================
   SPLIT LAYOUT
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.split.reverse .split__media { order: 2; }
.split__body { color: var(--text-soft); font-size: 15.5px; }
.split__body p + p { margin-top: 14px; }
.split__list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.split__list-item { display: flex; gap: 12px; align-items: flex-start; }
.split__list-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.split__list-item strong { display: block; font-size: 15px; color: var(--navy); }
.split__list-item span { color: var(--text-soft); font-size: 14.5px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split__media { order: -1; } }

/* =========================================================
   GROUP LEGACY STAT BAND
   ========================================================= */
.stat-band { background: var(--navy-deep); color: #fff; padding: var(--section-pad) 0; }
.stat-band .eyebrow { color: var(--gold); margin-bottom: 40px; }
.stat-band .eyebrow::before { background: var(--gold); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 3.6vw, 30px); color: #fff; line-height: 1; }
.stat-item__num .plus { color: var(--gold); }
.stat-item__label { margin-top: 12px; font-size: 14px; color: #A9B2C4; max-width: 22ch; }
.stat-band__disclaimer { margin-top: 44px; font-size: 12.5px; color: #7C88A0; max-width: 70ch; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } }

/* =========================================================
   VALUE / ICON-BOX CARDS
   ========================================================= */
.card-grid { display: grid; gap: 0; margin-top: 44px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.value-card { background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 28px; transition: background 0.3s var(--ease); }
.value-card:hover { background: var(--bg-tint); }
.value-card__icon-box {
  width: 46px; height: 46px; border: 1.5px solid var(--gold); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.value-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--text-soft); }
@media (max-width: 980px) { .card-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 780px) { .card-grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .card-grid--4 { grid-template-columns: 1fr; } }

/* =========================================================
   CONNECTIVITY / LOCATION GRID (navy band)
   ========================================================= */
.connectivity-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.connectivity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
.connectivity-item { background: var(--navy-deep); padding: 30px 24px; }
.connectivity-item svg { color: var(--gold); margin-bottom: 18px; }
.connectivity-item h4 { color: #fff; font-family: var(--font-head); font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.connectivity-item p { color: #A9B2C4; font-size: 13.5px; }
@media (max-width: 900px) { .connectivity-head { grid-template-columns: 1fr; } .connectivity-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .connectivity-grid { grid-template-columns: 1fr; } }

/* =========================================================
   QUOTE BLOCK
   ========================================================= */
.quote-block { text-align: center; max-width: 860px; margin: 0 auto; }
.quote-mark { font-family: var(--font-accent); font-style: italic; font-size: 60px; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.quote-text { font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 2.8vw, 20px); line-height: 1.42; color: #fff; }
.section:not(.section--navy) .quote-text { color: var(--navy); }
.quote-rule { width: 54px; height: 2px; background: var(--gold); margin: 26px auto 0; border-radius: 2px; }
.quote-attr { margin-top: 20px; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* =========================================================
   PROJECT / PORTFOLIO CARDS
   ========================================================= */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; }
.portfolio-card { display: block; }
.portfolio-card__media { position: relative; }
.portfolio-card__status { position: absolute; top: 16px; left: 16px; background: var(--navy-deep); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 14px; z-index: 2; }
.portfolio-card__loc { display: flex; align-items: center; gap: 6px; margin-top: 20px; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); }
.portfolio-card h3 { font-size: 24px; margin-top: 10px; }
.portfolio-card .sub { font-size: 14px; color: var(--text-faint); margin-top: 4px; }
.portfolio-card .desc { margin-top: 12px; color: var(--text-soft); font-size: 14.5px; }
.portfolio-card .link-arrow { margin-top: 18px; }

.coming-soon-card { border: 1px dashed var(--line); border-radius: var(--radius); padding: 50px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; color: var(--text-faint); background: var(--bg-tint); }
.coming-soon-card h3 { color: var(--text-faint); font-size: 20px; }

@media (max-width: 860px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* Filter tabs (Projects / Gallery pages) */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab { font-family: var(--font-head); font-size: 13.5px; font-weight: 700; padding: 11px 22px; border: 1px solid var(--line); color: var(--text-soft); transition: all 0.25s var(--ease); }
.filter-tab.is-active, .filter-tab:hover { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }

/* =========================================================
   VANTAGE POINT PAGE
   ========================================================= */
.vp-hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; padding: 80px 0; }
.vp-hero::before { content: ""; position: absolute; top: -30%; right: -8%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(239,175,60,0.14), transparent 70%); pointer-events: none; }
.vp-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.vp-hero__logo-plate { background: #fff; display: inline-block; padding: 18px 24px; border-radius: var(--radius); margin-bottom: 26px; }
.vp-hero__logo-plate img { width: 130px; }
.vp-hero h1 { color: #fff; font-size: 30px; }
.vp-hero .sub { font-family: var(--font-accent); font-style: italic; color: var(--gold-soft); font-size: 19px; margin-top: 8px; }
.vp-hero p.desc { margin-top: 18px; color: #C7CEDC; font-size: 16px; max-width: 50ch; }
.vp-hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.vp-hero__media .frame { border: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .vp-hero__grid { grid-template-columns: 1fr; } }

.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); overflow: hidden; margin-top: 40px; }
.detail-item { background: #fff; padding: 26px 22px; }
.detail-item__label { font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.detail-item__value { font-size: 15px; color: var(--navy); font-weight: 600; }
.detail-item__value.is-pending { color: var(--text-faint); font-weight: 500; font-style: italic; }
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .detail-grid { grid-template-columns: 1fr; } }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; margin-top: 36px; }
.feature-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-soft); }
.feature-list li svg { flex-shrink: 0; margin-top: 3px; }
@media (max-width: 640px) { .feature-list { grid-template-columns: 1fr; } }

.story-block { background: var(--bg-tint); border-radius: var(--radius); padding: clamp(30px,5vw,56px); }

/* =========================================================
   TEAM / LEADERSHIP
   ========================================================= */
.leader-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,6vw,80px); align-items: center; }
.leader-name { font-size: clamp(24px, 3vw, 30px); }
.leader-title { font-family: var(--font-head); color: var(--blue); font-size: 14px; font-weight: 700; margin-top: 8px; }
.leader-bio { margin-top: 20px; color: var(--text-soft); font-size: 16px; max-width: 56ch; }
.leader-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.leader-points span { font-family: var(--font-head); font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); padding: 8px 14px; border-radius: 20px; color: var(--text-soft); }
@media (max-width: 900px) { .leader-grid { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.gallery-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 4px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,30,56,0.6), transparent 45%); opacity: 0; transition: opacity 0.3s var(--ease); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item--big { grid-column: span 2; grid-row: span 2; }
.gallery-item__badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-head); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--navy-deep); padding: 6px 12px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; } .gallery-item--big { grid-column: span 2; grid-row: span 2; } }

.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(8,14,26,0.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 26px; right: clamp(20px,5vw,56px); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: clamp(14px,4vw,40px); }
.lightbox-next { right: clamp(14px,4vw,40px); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px,6vw,80px); }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-tint); padding: 22px 24px; margin-bottom: 16px; }
.contact-card__icon { width: 40px; height: 40px; border: 1.5px solid var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--terracotta); }
.contact-card__label { font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.contact-card__value { font-size: 15px; color: var(--text); line-height: 1.5; }
.contact-card__value a:hover { text-decoration: underline; color: var(--terracotta); }
.contact-card__value.is-pending { color: var(--text-faint); font-style: italic; }
.contact-quick { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }

.form-underline { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; }
.form-underline .field--full { grid-column: 1 / -1; }
.form-underline label { display: block; font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; color: var(--navy); }
.form-underline input, .form-underline select, .form-underline textarea {
  width: 100%; padding: 8px 0 12px; font-family: var(--font-body); font-size: 15.5px;
  border: none; border-bottom: 1px solid var(--line); background: transparent; color: var(--text); border-radius: 0;
}
.form-underline textarea { resize: vertical; min-height: 70px; }
.form-underline input:focus, .form-underline select:focus, .form-underline textarea:focus { border-color: var(--terracotta); outline: none; }
.contact-form .btn { margin-top: 26px; }
.map-frame { margin-top: 10px; border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--bg-tint); display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-family: var(--font-head); font-size: 13px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-underline { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-deep); color: #AEB7C9; }
.footer-top { padding: 72px 0 46px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand img { width: 170px; height: auto; margin-bottom: 18px; }
.footer-brand .tagline { font-family: var(--font-accent); font-style: italic; color: var(--gold-soft); font-size: 15px; margin-bottom: 14px; display: block; }
.footer-brand p.desc { font-size: 14px; color: #92A0BA; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #7C88A0; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; color: #AEB7C9; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item a { transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #6E7890; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--navy); color: #fff; padding: 12px 18px; }
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================
   CTA BAND (shared)
   ========================================================= */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-deep)); border-radius: var(--radius); padding: clamp(40px,6vw,64px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #fff; }
.cta-band h3 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); max-width: 26ch; }
.cta-band p { color: #B9C1D1; margin-top: 10px; font-size: 15px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   ABOUT PAGE — VISION / SUBSECTIONS / COO MESSAGE / CAREER
   (scoped additions, reuse existing tokens — about.html only)
   ========================================================= */
.vision-panel { background: var(--bg-tint); border-left: 3px solid var(--gold); padding: clamp(26px,4vw,40px) clamp(28px,4vw,44px); margin-bottom: 48px; }
.vision-panel .eyebrow { margin-bottom: 10px; }
.vision-panel p { font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: clamp(17px,2vw,20px); line-height: 1.6; color: var(--navy); max-width: 74ch; }

.subgroup-head { margin: 52px 0 0; }
.subgroup-head:first-child { margin-top: 0; }
.subgroup-head h3 { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--terracotta); display: flex; align-items: center; gap: 12px; }
.subgroup-head h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.coo-message__head { display: flex; align-items: center; gap: 18px; margin-bottom: 6px; }
.coo-message__head img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.coo-message__head-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; }
.coo-message__head-title { font-size: 13px; color: var(--gold-soft); margin-top: 2px; }
.coo-message__intro { font-family: var(--font-accent); font-style: italic; font-size: clamp(18px,2.2vw,22px); color: var(--gold-soft); line-height: 1.55; max-width: 78ch; margin: 28px 0 8px; }
.coo-message__body { max-width: 78ch; margin-top: 22px; }
.coo-message__body p { color: #C4CBDB; font-size: 15.5px; line-height: 1.75; }
.coo-message__body p + p { margin-top: 18px; }
.coo-message__signoff { margin-top: 30px; font-family: var(--font-accent); font-style: italic; color: #fff; font-size: 15.5px; }
.coo-message__signoff strong { display: block; font-family: var(--font-head); font-style: normal; font-weight: 700; font-size: 14.5px; color: var(--gold); margin-top: 4px; letter-spacing: 0.02em; }

.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.career-card { background: #fff; border: 1px solid var(--line); padding: 24px 26px; }
.career-card .period { display: block; font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.career-card h4 { font-size: 16px; margin-bottom: 8px; }
.career-card p { font-size: 14px; color: var(--text-soft); }
@media (max-width: 700px) { .career-grid { grid-template-columns: 1fr; } }

.credential-note { margin-top: 22px; font-size: 14.5px; color: var(--text-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.credential-note a { color: var(--terracotta); font-weight: 600; border-bottom: 1px solid var(--terracotta-soft); }
.credential-note a:hover { color: var(--navy); border-color: var(--navy); }

/* COO message — read more / read less */
.coo-message__body-wrap { position: relative; }
.coo-message__body { max-height: 250px; overflow: hidden; transition: max-height 0.6s var(--ease); }
.coo-message__body.is-expanded { max-height: 3200px; }
.coo-message__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 100px;
  background: linear-gradient(180deg, rgba(14,30,56,0) 0%, var(--navy-deep) 88%);
  transition: opacity 0.35s var(--ease); pointer-events: none;
}
.coo-message__body.is-expanded + .coo-message__fade { opacity: 0; }
.coo-message__toggle {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: gap 0.25s var(--ease);
}
.coo-message__toggle:hover { gap: 12px; }
.coo-message__toggle svg { transition: transform 0.3s var(--ease); }
.coo-message__toggle.is-expanded svg { transform: rotate(180deg); }

/* Leadership — read more / read less (light section variant) */
.leader-body-wrap { position: relative; margin-top: 8px; }
.leader-body { max-height: 320px; overflow: hidden; transition: max-height 0.6s var(--ease); }
.leader-body.is-expanded { max-height: 5200px; }
.leader-body__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg) 88%);
  transition: opacity 0.35s var(--ease); pointer-events: none;
}
.leader-body.is-expanded + .leader-body__fade { opacity: 0; }
.leader-toggle {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  color: var(--terracotta); border-bottom: 1px solid var(--terracotta); padding-bottom: 3px;
  transition: gap 0.25s var(--ease);
}
.leader-toggle:hover { gap: 12px; }
.leader-toggle svg { transition: transform 0.3s var(--ease); }
.leader-toggle.is-expanded svg { transform: rotate(180deg); }

/* Project document downloads — compact bordered list */
.doc-list-compact { display: flex; flex-direction: column; max-width: 720px; margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.doc-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 24px; border-bottom: 1px solid var(--line); transition: background 0.25s var(--ease); }
.doc-row:last-child { border-bottom: none; }
.doc-row:hover { background: var(--bg-tint); }
.doc-row__title { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); transition: color 0.25s var(--ease); }
.doc-row:hover .doc-row__title { color: var(--terracotta); }
.doc-row__desc { display: block; font-size: 12.5px; color: var(--text-faint); margin-top: 4px; }
.doc-row__icon {
  flex-shrink: 0; width: 38px; height: 38px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--terracotta);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.doc-row:hover .doc-row__icon { background: var(--gold); color: #fff; }
@media (max-width: 560px) { .doc-row { padding: 14px 16px; gap: 12px; } .doc-row__title { font-size: 14px; } }
