/* ═══════════════════════════════════════════════════════
   NatSu Enterprises — Corporate Website
   Palette: Navy #1F3158 · Gold #C8A24A · White #F7F6F2
   Established company design — clean, institutional, dynamic
═══════════════════════════════════════════════════════ */

:root {
  --navy:        #1F3158;
  --navy-dark:   #162444;
  --navy-deeper: #0E1A30;
  --navy-light:  #2B4270;
  --gold:        #C8A24A;
  --gold-light:  #DDB96A;
  --gold-pale:   #EDD99A;
  --gold-bg:     #F5EDD4;
  --white:       #F7F6F2;
  --off-white:   #EFEDE6;
  --paper:       #FAF9F6;
  --mid-grey:    #8C8C8C;
  --light-grey:  #D6D3CB;
  --border:      #E2DED5;
  --text-dark:   #1A1A1A;
  --text-body:   #3D3D3D;
  --text-muted:  #6B6B6B;
  --food-green:  #2E6B47;
  --water-blue:  #1E5C7A;
  --energy-amber:#9A6B1A;
  --font-serif:  'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:       72px;
  --max-w:       1140px;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --trans:       0.22s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ── Container ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--navy-dark);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); font-family: var(--font-sans); }
p  { color: var(--text-body); font-size: 1rem; }

em { font-style: italic; }

.section-header {
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(200,162,74,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(247,246,242,0.45);
}
.btn-ghost:hover {
  background: rgba(247,246,242,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(247,246,242,0.45);
}
.btn-outline-light:hover {
  background: rgba(247,246,242,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg  { padding: 14px 32px; font-size: 0.92rem; }
.btn-xl  { padding: 17px 40px; font-size: 1rem; }

/* ── Scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy-deeper);
  border-bottom: 1px solid rgba(200,162,74,0.18);
  transition: box-shadow var(--trans);
}
#site-header.elevated {
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo, .footer-logo {
  display: flex;
  align-items: center;
  color: var(--white) !important;
  text-decoration: none;
}

/* ── Wordmark logo ──────────────────────────────── */
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-wm-natsu {
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}
.logo-wm-rule {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  margin: 0 10px;
  flex-shrink: 0;
  opacity: 0.8;
  vertical-align: middle;
}
.logo-wm-ent {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.65);
  line-height: 1;
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
#main-nav a {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(247,246,242,0.72);
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: color var(--trans), background var(--trans);
}
#main-nav a:hover, #main-nav a.active {
  color: var(--white);
  background: rgba(247,246,242,0.08);
}
#main-nav a.active { color: var(--gold); background: rgba(200,162,74,0.1); }
.nav-contact {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
}
.nav-contact:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--navy-deeper);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 8px 0 16px; }
.mobile-nav li a {
  display: block;
  padding: 12px 32px;
  font-size: 0.95rem;
  color: rgba(247,246,242,0.8);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav li a:hover { color: var(--gold); background: rgba(200,162,74,0.06); }

/* ── Page offset ────────────────────────────────────── */
#main-content { padding-top: var(--nav-h); }

/* ── Section rhythm ─────────────────────────────────── */
/* Standard section vertical padding scale:
   xl  = 96px (hero-weight sections)
   lg  = 80px  (primary content)
   md  = 64px  (secondary / support)
   sm  = 48px  (bands / strips)
*/

/* ════════════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy-dark);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
}
.page-hero p {
  color: rgba(247,246,242,0.78);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════
   HOME — HERO
════════════════════════════════════════════════════ */
.hero-section {
  background: var(--navy-dark);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 0%, transparent 75%);
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(31,49,88,0.0) 0%, rgba(14,26,48,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  color: var(--gold-pale);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(247,246,242,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FWE Nexus visual */
.hero-nexus-visual {
  position: absolute;
  right: max(32px, calc((100vw - var(--max-w)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  z-index: 2;
}
.nexus-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,162,74,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.ring-outer { width: 340px; height: 340px; animation: spin 60s linear infinite; }
.ring-mid   { width: 240px; height: 240px; animation: spin 40s linear infinite reverse; border-color: rgba(200,162,74,0.12); }

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

.nexus-core {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 48px rgba(200,162,74,0.4);
  z-index: 5;
}
.nexus-label {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1;
}
.nexus-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2px;
}

.nexus-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 4;
}
.nexus-node i {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(200,162,74,0.3);
  background: var(--navy-deeper);
}
.nexus-node span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.6);
}
.node-food  { top: 0;   left: 50%; transform: translateX(-50%); }
.node-food i  { color: #5BA07A; border-color: rgba(91,160,122,0.3); }
.node-water { bottom: 14px; left: 14px; }
.node-water i { color: #4A9BC4; border-color: rgba(74,155,196,0.3); }
.node-energy{ bottom: 14px; right: 14px; }
.node-energy i{ color: var(--gold); border-color: rgba(200,162,74,0.3); }

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
}
.hero-scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.35);
  font-weight: 500;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(200,162,74,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.7); }
}

/* ════════════════════════════════════════════════════
   HOME — MISSION STRIP
════════════════════════════════════════════════════ */
.mission-strip {
  background: var(--navy);
  padding: 56px 0;
  border-bottom: 1px solid rgba(200,162,74,0.15);
}
.mission-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
  opacity: 0.9;
}
.mission-quote p::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.mission-quote p::after  { content: '\201D'; color: var(--gold); margin-left: 2px; }

/* ════════════════════════════════════════════════════
   HOME — PILLARS
════════════════════════════════════════════════════ */
.home-pillars {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar-card {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
  transition: background var(--trans);
}
.pillar-card:hover { background: var(--off-white); }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--trans);
}
.pillar-card:hover .pillar-num { color: var(--gold-pale); }
.pillar-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   HOME — SECTORS STRIP
════════════════════════════════════════════════════ */
.home-sectors {
  padding: 96px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.sectors-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-strip-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.sector-strip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.sector-strip-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--light-grey);
}
.sector-strip-card:hover::before { transform: scaleX(1); }

.ssc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sector-strip-card:nth-child(1) .ssc-icon { background: rgba(46,107,71,0.08);  color: var(--food-green); }
.sector-strip-card:nth-child(2) .ssc-icon { background: rgba(30,92,122,0.08);  color: var(--water-blue); }
.sector-strip-card:nth-child(3) .ssc-icon { background: rgba(154,107,26,0.08); color: var(--energy-amber); }

.ssc-body { flex: 1; margin-bottom: 24px; }
.ssc-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.ssc-body p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.ssc-arrow { color: var(--gold); font-size: 0.85rem; align-self: flex-end; transition: transform var(--trans); }
.sector-strip-card:hover .ssc-arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════
   HOME — STATS
════════════════════════════════════════════════════ */
.home-stats {
  background: var(--navy-dark);
  padding: 80px 0;
  border-bottom: 1px solid rgba(200,162,74,0.12);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 16px 56px;
  flex: 1;
  min-width: 180px;
}
.stat-val {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-desc { font-size: 0.78rem; color: rgba(247,246,242,0.45); line-height: 1.4; max-width: 130px; margin: 0 auto; }
.stat-divider { width: 1px; height: 56px; background: rgba(200,162,74,0.15); flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   CTA BAND (shared)
════════════════════════════════════════════════════ */
.home-cta-band, .about-cta, .partner-cta {
  background: var(--navy);
  padding: 88px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band-text p  { color: rgba(247,246,242,0.65); max-width: 520px; font-size: 0.98rem; line-height: 1.7; }
.cta-band-action  { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════ */
.about-identity {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.col-text .eyebrow { margin-bottom: 12px; }
.col-text h2 { margin-bottom: 20px; }
.col-text > p { color: var(--text-body); font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }

.identity-flags {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.flag {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
}
.flag i {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.flag-no i  { background: rgba(0,0,0,0.06); color: var(--mid-grey); }
.flag-yes i { background: var(--gold); color: var(--navy-dark); }
.flag.flag-yes { border-color: rgba(200,162,74,0.35); background: rgba(200,162,74,0.04); }
.flag div strong { font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 2px; }
.flag-yes div strong { color: var(--navy-dark); }
.flag div p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.col-visual { display: flex; flex-direction: column; gap: 24px; }

.about-stat-block {
  background: var(--navy-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.asb-item {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.asb-divider { height: 1px; background: rgba(200,162,74,0.12); }
.asb-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.asb-label { font-size: 0.75rem; color: rgba(247,246,242,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

.about-mission-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 24px 24px 28px;
  position: relative;
  background: var(--white);
}
.amc-rule {
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.about-mission-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.7;
}

/* About History */
.about-history {
  padding: 96px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.history-header { margin-bottom: 48px; }
.history-header h2 { margin-bottom: 24px; }
.history-intro-card {
  background: var(--navy-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  max-width: 760px;
}
.history-intro-card p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.7;
}

.history-bullets {
  position: relative;
  padding-left: 32px;
  max-width: 760px;
}
.history-bullets::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(200,162,74,0.25);
}
.hb-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hb-item:last-child { padding-bottom: 0; }
.hb-marker {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--off-white);
  box-shadow: 0 0 0 2px rgba(200,162,74,0.3);
  flex-shrink: 0;
}
.hb-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }

/* About Approach */
.about-approach {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.approach-card:hover { box-shadow: var(--shadow); border-color: var(--light-grey); }
.ac-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 18px;
}
.approach-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.approach-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   SECTORS PAGE
════════════════════════════════════════════════════ */
.sector-detail {
  padding: 88px 0;
  background: var(--paper);
}
.sector-detail:nth-child(even) { background: var(--off-white); }

.sector-detail-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.sector-detail-inner.reverse { direction: rtl; }
.sector-detail-inner.reverse > * { direction: ltr; }

.sector-rule { height: 1px; background: var(--border); }

.sd-label { position: sticky; top: calc(var(--nav-h) + 24px); }
.sd-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.sd-icon.food   { background: rgba(46,107,71,0.1);  color: var(--food-green); }
.sd-icon.water  { background: rgba(30,92,122,0.1);  color: var(--water-blue); }
.sd-icon.energy { background: rgba(154,107,26,0.1); color: var(--energy-amber); }

.sd-label .eyebrow { margin-bottom: 6px; }
.sd-label h2 { font-size: 2rem; }

.sd-lead {
  font-size: 1.05rem;
  color: var(--navy-dark);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}
.sd-points { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.sdp { border-left: 2px solid var(--border); padding-left: 20px; }
.sdp:hover { border-left-color: var(--gold); }
.sdp h4 { margin-bottom: 8px; font-size: 0.92rem; color: var(--navy); }
.sdp p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.market-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.mc-val {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.mc-text { font-size: 0.85rem; color: rgba(247,246,242,0.7); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════════════ */
.service-full {
  padding: 88px 0;
  background: var(--paper);
}
.service-full:nth-child(even) { background: var(--off-white); }

.service-rule { height: 1px; background: var(--border); }

.sf-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 44px;
}
.sf-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  min-width: 52px;
}
.sf-num i { font-size: 2rem; color: var(--gold); }
.sf-header .eyebrow { margin-bottom: 6px; }
.sf-header h2 { font-size: 1.9rem; }

.sf-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.sf-body.full { grid-template-columns: 1fr; }

.sf-desc > p { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; }

/* Process chain */
.process-chain {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: nowrap;
}
.pc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  flex: 1;
  min-width: 0;
}
.pc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.pc-step span { font-size: 0.72rem; font-weight: 600; color: var(--navy); text-align: center; line-height: 1.3; }
.pc-arrow { color: var(--light-grey); font-size: 1rem; }

/* Outputs */
.outputs-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }
.output-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}
.output-tag.biochar { background: rgba(139,115,73,0.08);  color: #6B5730; border-color: rgba(107,87,48,0.25); }
.output-tag.syngas  { background: rgba(154,107,26,0.08);  color: var(--energy-amber); border-color: rgba(154,107,26,0.25); }
.output-tag.water   { background: rgba(30,92,122,0.08);   color: var(--water-blue);   border-color: rgba(30,92,122,0.25); }
.output-tag.carbon  { background: rgba(46,107,71,0.08);   color: var(--food-green);   border-color: rgba(46,107,71,0.25); }

/* Revenue card */
.revenue-card {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.rc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.45);
  margin-bottom: 18px;
}
.rc-bar-wrap { margin-bottom: 16px; }
.rc-bar {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 36px;
}
.rc-seg {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
}
.rc-seg.op { background: var(--gold); color: var(--navy-dark); }
.rc-seg.ns { background: rgba(247,246,242,0.1); color: rgba(247,246,242,0.6); }
.rc-legend { margin-bottom: 18px; }
.rcl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(247,246,242,0.6);
  margin-bottom: 6px;
}
.rcl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.op-dot  { background: var(--gold); }
.ns-dot  { background: rgba(247,246,242,0.15); border: 1px solid rgba(247,246,242,0.25); }
.rc-note { font-size: 0.78rem; color: rgba(247,246,242,0.4); font-style: italic; line-height: 1.6; padding-top: 14px; border-top: 1px solid rgba(247,246,242,0.08); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.fl-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.fl-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-item h4 { margin-bottom: 5px; font-size: 0.9rem; }
.fl-item p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* Advisory steps */
.advisory-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.as-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.as-step:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.as-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.as-step h4 { margin-bottom: 8px; font-size: 0.88rem; }
.as-step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* Engagement section */
.engagement-section { background: var(--off-white) !important; padding: 88px 0; }
.engagement-body { display: flex; flex-direction: column; gap: 32px; }
.engagement-intro { max-width: 760px; }
.engagement-intro p { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }

.engagement-cta-block {
  background: var(--navy-dark);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  overflow: hidden;
}
.ecb-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.ecb-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.ecb-text { flex: 1; min-width: 240px; }
.ecb-text h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.ecb-text p  { color: rgba(247,246,242,0.6); font-size: 0.88rem; line-height: 1.65; }

/* Growing section */
.growing-section {
  background: var(--navy);
  padding: 96px 0;
}
.growing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}
.growing-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.growing-text h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.growing-text > p { color: rgba(247,246,242,0.65); font-size: 0.98rem; line-height: 1.75; margin-bottom: 28px; }
.growing-list { display: flex; flex-direction: column; gap: 12px; }
.growing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(247,246,242,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}
.growing-list li i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.growing-action { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.growing-note { font-size: 0.75rem; color: rgba(247,246,242,0.35); text-align: center; max-width: 200px; line-height: 1.5; }

/* ════════════════════════════════════════════════════
   PARTNERS PAGE
════════════════════════════════════════════════════ */
.partners-section { padding: 88px 0; background: var(--paper); }

.partner-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.partner-block:first-child { padding-top: 0; }
.partner-block:last-child { border-bottom: none; }

.partner-rule { display: none; }

.pb-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.pb-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.pb-icon.carbon   { background: rgba(46,107,71,0.1);  color: var(--food-green); }
.pb-icon.agri     { background: rgba(200,162,74,0.1);  color: var(--gold); }
.pb-icon.curetex  { background: rgba(30,92,122,0.1);  color: var(--water-blue); }
.pb-icon.tungstan { background: rgba(31,49,88,0.08);  color: var(--navy); }
.pb-icon.exemplar { background: rgba(107,57,127,0.1); color: #6B397F; }

.pb-header .eyebrow { margin-bottom: 4px; }
.pb-header h2 { font-size: 1.8rem; margin-bottom: 2px; }
.pb-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.pb-body { max-width: 800px; }
.pb-body > p { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }

.pb-facts {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: inline-flex;
}
.pbf {
  padding: 16px 28px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pbf:last-child { border-right: none; }
.pbf-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.pbf-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.pb-capabilities h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; }
.pb-capabilities ul { display: flex; flex-direction: column; gap: 8px; }
.pb-capabilities li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pb-capabilities li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════ */
.contact-section {
  padding: 88px 0;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.cd-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid-grey); margin-bottom: 2px; }
.cd-item a, .cd-item span { font-size: 0.88rem; color: var(--text-body); }
.cd-item a:hover { color: var(--gold); }

.contact-sectors .cs-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-bottom: 10px;
}
.cs-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
}
.cs-tags span i { font-size: 0.72rem; color: var(--gold); }

/* Enquiry form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31,49,88,0.08);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238C8C8C'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: 0.76rem;
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 300px;
}
.form-success {
  text-align: center;
  padding: 48px 32px;
}
.form-success i { font-size: 2.8rem; color: var(--food-green); margin-bottom: 16px; display: block; }
.form-success h3 { color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
#site-footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(200,162,74,0.15);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand { flex-shrink: 0; }
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-desc {
  font-size: 0.83rem;
  color: rgba(247,246,242,0.45);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,246,242,0.35);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.footer-col a, .footer-col span {
  font-size: 0.83rem;
  color: rgba(247,246,242,0.55);
  line-height: 1.4;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(247,246,242,0.06);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(247,246,242,0.28); }
.footer-reg { color: rgba(247,246,242,0.2) !important; }

/* ════════════════════════════════════════════════════
   NAV DROPDOWN
════════════════════════════════════════════════════ */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-caret {
  font-size: 0.6rem;
  transition: transform var(--trans);
  opacity: 0.6;
}
.has-dropdown:hover .dropdown-caret,
.has-dropdown.dropdown-open .dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--navy-deeper);
  border: 1px solid rgba(200,162,74,0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 999;
  padding: 6px;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(200,162,74,0.18);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--navy-deeper);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--trans);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background: rgba(200,162,74,0.08);
}
.dropdown-item.dropdown-item-active {
  background: rgba(200,162,74,0.1);
}
.di-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.dropdown-item:hover .di-title,
.dropdown-item.dropdown-item-active .di-title { color: var(--gold); }
.di-sub {
  font-size: 0.73rem;
  color: rgba(247,246,242,0.42);
  line-height: 1.4;
}

/* Mobile sub-nav */
.mobile-section-label {
  padding: 8px 32px 2px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247,246,242,0.28);
  margin-top: 4px;
}
.mobile-nav li a.mobile-sub {
  padding-left: 44px;
  font-size: 0.88rem;
  color: rgba(247,246,242,0.6);
}
.mobile-nav li a.mobile-sub:hover { color: var(--gold); }
.mobile-nav li a.mobile-active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════
   SERVICE HERO EXTENSIONS
════════════════════════════════════════════════════ */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247,246,242,0.38);
  text-transform: uppercase;
}
.service-breadcrumb i { font-size: 0.6rem; opacity: 0.5; }
.bc-current { color: var(--gold); }

.service-switcher {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.ss-active {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  background: rgba(200,162,74,0.12);
  border-radius: 100px;
  border: 1px solid rgba(200,162,74,0.3);
}
.ss-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(247,246,242,0.55);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans);
}
.ss-link:hover { color: var(--white); }
.ss-link i { font-size: 0.65rem; }

/* ════════════════════════════════════════════════════
   SERVICE INTRO BAND
════════════════════════════════════════════════════ */
.service-intro-band {
  background: var(--navy);
  padding: 56px 0;
  border-bottom: 1px solid rgba(200,162,74,0.12);
}
.sib-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.sib-text p {
  font-size: 0.97rem;
  color: rgba(247,246,242,0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sib-text p:last-child { margin-bottom: 0; }

.sib-principle {
  flex-shrink: 0;
}
.sibp-inner {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: rgba(200,162,74,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sibp-inner i {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
.sibp-inner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-pale);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════
   CRT SERVICE PAGE
════════════════════════════════════════════════════ */
.crt-section {
  padding: 80px 0;
  background: var(--paper);
}
.crt-section:nth-of-type(even) { background: var(--off-white); }

.crt-rule {
  height: 1px;
  background: var(--border);
}

.crt-block { }

.crt-block-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.crt-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.crt-icon.agri    { background: rgba(46,107,71,0.1);  color: var(--food-green); }
.crt-icon.bio     { background: rgba(154,107,26,0.1); color: var(--energy-amber); }
.crt-icon.textile { background: rgba(107,57,127,0.1); color: #6B397F; }
.crt-block-header .eyebrow { margin-bottom: 4px; }
.crt-block-header h2 { font-size: 1.9rem; }

.crt-lead {
  font-size: 1.06rem;
  color: var(--navy-dark);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 820px;
}
.crt-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.crt-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.crt-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.crt-list li {
  font-size: 0.97rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.crt-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.crt-detail > p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.crt-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy-dark);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 20px;
}
.crth-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,162,74,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.crt-highlight strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.crt-highlight p {
  font-size: 0.88rem;
  color: rgba(247,246,242,0.65);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════
   ADVISORY SERVICE PAGE
════════════════════════════════════════════════════ */
.advisory-full-section {
  padding: 88px 0;
  background: var(--paper);
}

.afs-block {
  padding: 64px 0;
}
.afs-block:first-child { padding-top: 0; }

.afs-rule {
  height: 1px;
  background: var(--border);
}

.afs-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.afs-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(31,49,88,0.08);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.afs-header .eyebrow { margin-bottom: 4px; }
.afs-header h2 { font-size: 1.8rem; }

.afs-lead {
  font-size: 1.06rem;
  color: var(--navy-dark);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 820px;
}
.afs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.afs-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.afs-detail > p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.afs-detail > p:last-child { margin-bottom: 0; }

/* Network map (region list) */
.network-map {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nm-region {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.nm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(200,162,74,0.18);
}
.nm-region strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.nm-region p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Advisory network band */
.advisory-network-band {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 64px 0;
}
.anb-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.anb-text .eyebrow { color: var(--gold-pale); }
.anb-text h2 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.anb-text > p {
  font-size: 0.92rem;
  color: rgba(247,246,242,0.6);
  line-height: 1.75;
  max-width: 500px;
}
.anb-continents {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.anbc {
  text-align: center;
}
.anbc-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.anbc-dot {
  color: rgba(200,162,74,0.35);
  font-size: 1.4rem;
  line-height: 1;
  align-self: center;
}

/* ════════════════════════════════════════════════════
   HOME — SERVICES PREVIEW
════════════════════════════════════════════════════ */
.home-services-preview {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.services-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.spg-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.spg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.spg-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--light-grey);
}
.spg-card:hover::before { transform: scaleX(1); }
.spg-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--trans);
}
.spg-card:hover .spg-num { color: var(--gold-pale); }
.spg-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: background var(--trans), color var(--trans);
}
.spg-card:hover .spg-icon {
  background: rgba(200,162,74,0.1);
  color: var(--gold);
}
.spg-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.spg-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.spg-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: gap var(--trans);
}
.spg-card:hover .spg-link { gap: 12px; }
.spg-link i { font-size: 0.72rem; }

/* ════════════════════════════════════════════════════
   ABOUT — IDENTITY PILLARS
════════════════════════════════════════════════════ */
.identity-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.ip-item:last-child { border-bottom: none; }
.ip-item:hover { background: var(--off-white); }
.ip-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ip-item:hover .ip-icon {
  background: rgba(200,162,74,0.1);
  color: var(--gold);
}
.ip-item strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.ip-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════
   VALUE PROPOSITION BARS (CRT + Advisory)
════════════════════════════════════════════════════ */
.crt-value-prop {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  margin-bottom: 32px;
}
.cvp-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,162,74,0.18);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cvp-text {
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  font-weight: 400;
}

.afs-value-prop {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  margin-bottom: 32px;
}
.avp-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,162,74,0.18);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.avp-text {
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  font-weight: 400;
}

/* ════════════════════════════════════════════════════
   CRT GALLERY SECTION
════════════════════════════════════════════════════ */
.crt-gallery-section {
  padding: 96px 0;
  background: var(--navy-deeper);
  border-top: 1px solid rgba(200,162,74,0.15);
  border-bottom: 1px solid rgba(200,162,74,0.15);
}
.crt-gallery-section .eyebrow { color: var(--gold-pale); }
.crt-gallery-section .section-header h2 { color: var(--white); margin-bottom: 12px; }
.crt-gallery-section .section-desc { color: rgba(247,246,242,0.55); }
.crt-gallery-section .section-header { margin-bottom: 48px; }

.crt-gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
  align-items: stretch;
}
.cgg-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-dark);
  border: 1px solid rgba(200,162,74,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.cgg-card:hover {
  border-color: rgba(200,162,74,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.cgg-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cgg-large .cgg-visual { height: 240px; }
.cgg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,26,48,0.45);
}
.cgg-agri {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(46,107,71,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(91,160,122,0.3) 0%, transparent 60%),
    linear-gradient(160deg, #0E2A1A 0%, #1A3D28 50%, #0E1A30 100%);
}
.cgg-bio {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(154,107,26,0.6) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(200,162,74,0.2) 0%, transparent 50%),
    linear-gradient(160deg, #1A1000 0%, #2A1E00 50%, #0E1A30 100%);
}
.cgg-textile {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(107,57,127,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 80%, rgba(74,57,127,0.3) 0%, transparent 55%),
    linear-gradient(160deg, #1A0A2A 0%, #261040 50%, #0E1A30 100%);
}
.cgg-icon-wrap {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(200,162,74,0.35);
  background: rgba(14,26,48,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  backdrop-filter: blur(4px);
  transition: transform var(--trans), background var(--trans), border-color var(--trans);
}
.cgg-card:hover .cgg-icon-wrap {
  transform: scale(1.1);
  background: rgba(200,162,74,0.18);
  border-color: var(--gold);
}
.cgg-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.cgg-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.cgg-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.cgg-body p {
  font-size: 0.92rem;
  color: rgba(247,246,242,0.58);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.cgg-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: 6px;
  transition: gap var(--trans), color var(--trans);
}
.cgg-link:hover { gap: 12px; color: var(--gold-light); }
.cgg-link i { font-size: 0.7rem; }

/* ════════════════════════════════════════════════════
   ADVISORY SUB-SECTION (Strategic Sourcing within PA 01)
════════════════════════════════════════════════════ */
.afs-sub-section {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.afs-sub-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.afs-sub-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(31,49,88,0.07);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.afs-sub-header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   DEAL ADVISORY CTA BLOCK
════════════════════════════════════════════════════ */
.deal-advisory-cta {
  margin-top: 44px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.dac-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
  border: 1px solid rgba(200,162,74,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
  flex-wrap: wrap;
}
.dac-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,162,74,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dac-text {
  flex: 1;
  min-width: 240px;
}
.dac-text h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.dac-text p {
  font-size: 0.95rem;
  color: rgba(247,246,242,0.65);
  line-height: 1.75;
  margin-bottom: 10px;
}
.dac-text p:last-child { margin-bottom: 0; }
.dac-cta-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem !important;
  color: rgba(247,246,242,0.85) !important;
}
.dac-inner .btn {
  align-self: center;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════
   INLINE PARTNER CARDS (service pages)
════════════════════════════════════════════════════ */
.inline-partner-card {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.ipc-slim { margin-top: 32px; padding-top: 28px; }
.ipc-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.ipc-inner:hover {
  border-color: rgba(200,162,74,0.35);
  box-shadow: var(--shadow-sm);
}
.ipc-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--trans);
}
.ipc-inner:hover::before { opacity: 1; }

.ipc-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.ipc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(46,107,71,0.1);
  color: var(--food-green);
}
.ipc-icon.ipc-agri  { background: rgba(46,107,71,0.1);   color: var(--food-green); }
.ipc-icon.ipc-exemplar { background: rgba(107,57,127,0.1); color: #6B397F; }

.ipc-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.ipc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 2px;
  font-family: var(--font-sans);
}
.ipc-region {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.ipc-desc {
  font-size: 0.95rem !important;
  color: var(--text-body) !important;
  line-height: 1.75 !important;
  margin: 0 0 16px !important;
}
.ipc-slim .ipc-desc { margin-bottom: 0 !important; }
.ipc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ipc-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}
.ipc-tags span i { color: var(--food-green); font-size: 0.65rem; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-nexus-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .sector-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .sector-detail-inner.reverse { direction: ltr; }
  .sd-label { position: static; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .sd-label .sd-icon { margin-bottom: 0; }
  .sf-body { grid-template-columns: 1fr; }
  .revenue-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .growing-inner { grid-template-columns: 1fr; gap: 40px; }
  .growing-action { flex-direction: row; align-items: center; }
  .growing-note { max-width: none; }
}

@media (max-width: 1024px) {
  .crt-gallery-grid { grid-template-columns: 1fr 1fr; }
  .cgg-card.cgg-large { grid-column: 1 / -1; }
  .cgg-large .cgg-visual { height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  html { font-size: 16px; }
  h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); }
  .hero-section { padding: 56px 0; }
  .hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-content { margin-left: 20px; margin-right: 20px; }
  .home-pillars, .home-sectors, .home-services-preview, .about-identity, .about-history, .about-approach,
  .partners-section, .contact-section, .service-full, .sector-detail,
  .growing-section, .advisory-full-section, .crt-gallery-section { padding: 64px 0; }
  .pillars-grid, .sectors-strip { grid-template-columns: 1fr; }
  .approach-grid, .advisory-steps { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat { padding: 20px; }
  .stat-divider { width: 40%; height: 1px; }
  .cta-band-inner { flex-direction: column; }
  .cta-band-action { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 40px; padding: 48px 20px 32px; }
  .footer-nav { gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; }
  .contact-form-wrap { padding: 24px 20px; }
  .ecb-inner { flex-direction: column; align-items: flex-start; }
  .pb-facts { flex-direction: column; width: 100%; }
  .pbf { border-right: none; border-bottom: 1px solid var(--border); }
  .pbf:last-child { border-bottom: none; }
  .growing-inner { grid-template-columns: 1fr; gap: 36px; }
  .growing-action { flex-direction: column; align-items: flex-start; }
  .sf-header { flex-direction: column; gap: 12px; }
  .sf-num { font-size: 2rem; }
  .process-chain { flex-direction: column; align-items: flex-start; }
  .pc-arrow { transform: rotate(90deg); margin-left: 32px; }
  .market-callout { flex-direction: column; text-align: center; }
  .history-bullets { padding-left: 24px; }
  .page-hero { padding: 56px 0 48px; }
  /* Turn 3 responsive */
  .sib-inner { grid-template-columns: 1fr; gap: 32px; }
  .crt-cols  { grid-template-columns: 1fr; gap: 28px; }
  .afs-cols  { grid-template-columns: 1fr; gap: 28px; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .anb-inner { grid-template-columns: 1fr; gap: 32px; }
  .anb-continents { justify-content: flex-start; }
  .crt-block-header { flex-direction: column; gap: 12px; }
  .afs-header { flex-direction: column; gap: 12px; }
  /* Turn 5 responsive */
  .crt-gallery-grid { grid-template-columns: 1fr; }
  .cgg-card.cgg-large { grid-column: auto; }
  .cgg-visual, .cgg-large .cgg-visual { height: 180px; }
  .crt-value-prop, .afs-value-prop { padding: 18px 20px; }
  .cvp-text, .avp-text { font-size: 1.05rem !important; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .btn-xl, .btn-lg { width: auto; }
  .pillar-card { padding: 28px 22px; }
  .sector-strip-card { padding: 24px; }
  .cs-tags span { font-size: 0.72rem; }
}
