/* =============================================
   MULPURI AQUA PROCESSORS — LAYOUT V2
   Asymmetric Editorial Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --ink:       #0c0c0e;
  --ink-80:    rgba(12,12,14,0.8);
  --ink-40:    rgba(12,12,14,0.4);

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --navy:      #071526;
  --navy-mid:  #0e2240;
  --navy-light:#152d52;

  --teal:      #0d9488;
  --teal-light:#14b8a6;
  --ocean:     #0284c7;

  --gold:      #ca8a04;
  --gold-light:#eab308;
  --gold-pale: #fef9c3;

  --white:     #ffffff;
  --off-white: #f9f8f4;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-head:  'Space Grotesk', system-ui, sans-serif;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-py: clamp(5rem, 9vw, 8rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  padding: 0.625rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.announce-bar span { color: var(--gold-light); font-weight: 600; }
.announce-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* =============================================
   NAVIGATION V2 — minimal with border
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 0 var(--gutter);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links-right { justify-content: flex-end; }

.nav-logo-center {
  display: flex;
  justify-content: center;
}

.nav-logo-center img { height: 44px; width: auto; }

.nav-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-600);
  transition: color 200ms;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--ink); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
  transition: background 200ms;
}

.nav-cta:hover { background: var(--navy-mid); }

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-overlay.open { display: flex; }

.mobile-overlay .nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; line-height: 1;
}

/* =============================================
   HERO V2 — SPLIT SCREEN
   ============================================= */
.hero-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: calc(100vh - 73px);
}

.hero-text-panel {
  background: var(--navy);
  padding: 5rem var(--gutter) 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-text-panel::before {
  content: '';
  position: absolute;
  top: -20%; right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(14,116,144,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-label-line {
  width: 32px;
  height: 1.5px;
  background: var(--gold-light);
}

.hero-label-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-text-panel h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}

.hero-text-panel h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text-panel p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold-light);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 150ms, transform 150ms;
}

.btn-filled:hover { background: #fde047; transform: translateY(-2px); }
.btn-filled svg { width: 14px; height: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 150ms, color 150ms;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }

.hero-stats {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat-val {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.hero-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 25%);
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

/* =============================================
   MARQUEE / TICKER
   ============================================= */
.ticker {
  background: var(--gold-light);
  color: var(--navy);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   ABOUT — MAGAZINE LAYOUT
   ============================================= */
.about-mag {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.about-mag-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-mag-divider {
  background: var(--slate-200);
  align-self: stretch;
  margin: 1rem 0;
}

.about-mag-left { }

.about-mag-overline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.about-mag-overline::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.about-mag-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.about-mag-pullquote {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.5;
  border-left: 3px solid var(--gold-light);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-mag-right { padding-top: 1rem; }

.about-mag-img-stack {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 0.875rem;
}

.about-img-big {
  grid-row: span 2;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.about-img-big img,
.about-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-img-big:hover img,
.about-img-sm:hover img { transform: scale(1.04); }

.about-img-sm {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.about-img-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  font-style: italic;
  margin-top: 0.75rem;
}

.about-mag-body p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

.about-mag-body p:last-child { margin-bottom: 0; }

/* =============================================
   PILLARS — NUMBERED LIST
   ============================================= */
.pillars-numbered {
  padding: var(--section-py) 0;
  background: var(--white);
}

.pillars-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--slate-200);
}

.pillars-header-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.pillars-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.pillars-header p {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.75;
  max-width: 600px;
}

.pillars-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar-num-item {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--slate-200);
  position: relative;
}

.pillar-num-item:first-child { padding-left: 0; }
.pillar-num-item:last-child { border-right: none; padding-right: 0; }

.pillar-num-item + .pillar-num-item { padding-left: 2.5rem; }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 300ms;
}

.pillar-num-item:hover .pillar-num { color: var(--gold-pale); }

.pillar-num-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.pillar-num-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* =============================================
   PRODUCTS — TABBED INTERFACE
   ============================================= */
.products-tab {
  padding: var(--section-py) 0;
  background: var(--slate-50);
}

.tab-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-200);
  gap: 2rem;
  flex-wrap: wrap;
}

.tab-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.tab-nav {
  display: flex;
  gap: 0;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  background: none;
  border: none;
  border-right: 1px solid var(--slate-200);
  cursor: pointer;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
}

.tab-btn:last-child { border-right: none; }
.tab-btn:hover { background: var(--slate-50); color: var(--ink); }
.tab-btn.active { background: var(--navy); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.tab-panel-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
}

.tab-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tab-panel-info {}

.tab-panel-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.tab-panel-info p {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.spec-table {
  border-top: 1px solid var(--slate-200);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.9375rem;
}

.spec-key {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding-top: 0.125rem;
}

.spec-val { color: var(--slate-700); }

/* =============================================
   INFRASTRUCTURE — TIMELINE
   ============================================= */
.timeline-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.timeline-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: center;
}

.timeline-intro-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.timeline-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.timeline {
  position: relative;
  padding-left: 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--slate-200) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 1rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -3.75rem;
  top: 0.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  z-index: 1;
}

.timeline-step {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* =============================================
   STATS MOSAIC
   ============================================= */
.stats-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}

.stat-block {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-block-dark  { background: var(--navy); }
.stat-block-mid   { background: var(--navy-mid); }
.stat-block-teal  { background: var(--teal); }
.stat-block-light { background: var(--off-white); }
.stat-block-gold  { background: var(--gold-light); }
.stat-block-white { background: var(--white); border: 1px solid var(--slate-200); }

.stat-big {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-lbl-big {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c-white { color: var(--white); }
.c-white .stat-lbl-big { color: rgba(255,255,255,0.5); }
.c-dark  { color: var(--ink); }
.c-dark .stat-lbl-big { color: var(--slate-500); }
.c-navy  { color: var(--navy); }
.c-navy .stat-lbl-big { color: var(--slate-600); }

/* =============================================
   QUALITY — DARK GRID
   ============================================= */
.quality-dark {
  background: var(--navy);
  padding: var(--section-py) 0;
}

.quality-dark-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.quality-dark h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.quality-dark p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.compliance-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.compliance-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  transition: background 200ms;
}

.compliance-row:hover { background: rgba(255,255,255,0.07); }

.compliance-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20,184,166,0.2);
  border: 1.5px solid var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}

.compliance-check svg { width: 11px; height: 11px; }

.compliance-row span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.certs-showcase {
  margin-top: 2.5rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.certs-showcase img { width: 100%; display: block; }

/* =============================================
   CONTACT — SPLIT PANEL
   ============================================= */
.contact-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 85vh;
}

.contact-left {
  background: var(--navy);
  padding: 5rem 4rem 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-left::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle at bottom right, rgba(14,116,144,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 380px;
}

.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.c-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.c-detail-icon svg { width: 18px; height: 18px; }

.c-detail-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.c-detail-value {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.c-detail-value a {
  color: rgba(255,255,255,0.7);
  transition: color 150ms;
}

.c-detail-value a:hover { color: var(--gold-light); }

.contact-right {
  background: var(--off-white);
  padding: 5rem 6% 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact-right .sub {
  font-size: 1rem;
  color: var(--slate-500);
  margin-bottom: 2.5rem;
}

/* Form */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 2px;
  outline: none;
  transition: border-color 150ms;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--teal); }

.form-textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 150ms, transform 150ms;
  margin-top: 0.5rem;
}

.submit-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }
.submit-btn svg { width: 17px; height: 17px; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.inner-hero {
  background: var(--navy);
  padding: 7rem 0 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.inner-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.inner-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
}

.inner-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.inner-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-left {
  background: var(--gold-light);
  padding: 5rem var(--gutter) 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-left p {
  font-size: 1.0625rem;
  color: rgba(7,21,38,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.cta-right {
  background: var(--navy-mid);
  padding: 5rem 6% 5rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-right h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-right p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-outlined-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 150ms, color 150ms;
  width: fit-content;
}

.btn-outlined-gold:hover { background: var(--gold-light); color: var(--navy); }

/* =============================================
   FOOTER
   ============================================= */
.footer-v2 {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 5rem 0 2.5rem;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-v2-logo { height: 44px; width: auto; margin-bottom: 1.25rem; }

.footer-v2-about {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-v2-social {
  display: flex;
  gap: 0.75rem;
}

.footer-v2-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 150ms;
}

.footer-v2-social a:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.footer-v2-social svg { width: 14px; height: 14px; }

.footer-v2-head {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.footer-v2-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-v2-link {
  font-size: 0.9rem;
  transition: color 150ms;
}

.footer-v2-link:hover { color: var(--gold-light); }

.footer-v2-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-v2-contact-row svg {
  width: 15px; height: 15px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.footer-v2-contact-row a {
  color: rgba(255,255,255,0.5);
  transition: color 150ms;
}

.footer-v2-contact-row a:hover { color: var(--gold-light); }

.footer-v2-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-v2-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-v2-bottom-links a { transition: color 150ms; }
.footer-v2-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
  .pillars-list { grid-template-columns: repeat(3, 1fr); }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo-center { justify-content: flex-start; }
  .nav-links-left { display: none; }
  .hamburger { display: flex; }
  .about-mag-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-mag-divider { display: none; }
  .pillars-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .timeline-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .quality-dark-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-right { padding: 3rem var(--gutter); }
  .cta-left { padding: 4rem var(--gutter); }
  .contact-left { padding: 4rem var(--gutter); }
  .contact-right { padding: 4rem var(--gutter); }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-panel { aspect-ratio: 4/3; height: 300px; }
  .hero-image-panel::after { background: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .pillars-list { grid-template-columns: 1fr; }
  .pillar-num-item { border-right: none; padding: 2rem 0; border-bottom: 1px solid var(--slate-200); }
  .pillar-num-item:last-child { border-bottom: none; }
  .pillar-num-item + .pillar-num-item { padding-left: 0; }
  .stats-mosaic { grid-template-columns: repeat(2, 1fr); }
  .footer-v2-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-v2-bottom { flex-direction: column; text-align: center; }
  .footer-v2-bottom-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .tab-header { flex-direction: column; align-items: flex-start; }
  .tab-nav { overflow-x: auto; width: 100%; }
}
