/* =========================================================
   ORACULI & DUX — Design System
   Palette: Deep Navy + Antique Gold + Cream
   Type: Cormorant Garamond (display) + Inter (body)
   ========================================================= */

:root {
  /* Colors */
  --navy-900: #0a1733;
  --navy-800: #0f2042;
  --navy-700: #16305e;
  --navy-600: #1f3d72;
  --navy-500: #2c5191;
  --gold: #c9a55c;
  --gold-light: #e0c074;
  --gold-dark: #a07f3f;
  --cream: #faf6ee;
  --cream-warm: #f4ecdb;
  --paper: #ffffff;
  --ink: #0e1a2e;
  --ink-soft: #2a3553;
  --muted: #5e6a85;
  --line: #e6dec9;
  --line-soft: #efe9d8;

  /* Type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 23, 51, 0.06), 0 1px 2px rgba(10, 23, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 23, 51, 0.08), 0 2px 6px rgba(10, 23, 51, 0.04);
  --shadow-lg: 0 24px 60px rgba(10, 23, 51, 0.12), 0 8px 20px rgba(10, 23, 51, 0.06);
  --shadow-gold: 0 12px 30px rgba(201, 165, 92, 0.25);

  /* Layout */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; color: var(--navy-900); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--body); letter-spacing: .01em; }
h5 { font-size: .85rem; font-weight: 600; font-family: var(--body); text-transform: uppercase; letter-spacing: .12em; color: var(--navy-700); }

p { color: var(--ink-soft); }

em { font-style: italic; color: var(--gold-dark); font-family: var(--display); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.section-title { margin-bottom: 1rem; }
.section-title .accent { color: var(--gold-dark); font-style: italic; }

.lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

.section-head { max-width: 740px; margin-bottom: 4rem; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .eyebrow { padding-left: 0; padding-right: 0; }
.section-head-center .eyebrow::before { display: none; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: .6rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 14px 28px;
  font-family: var(--body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--navy-900);
  color: var(--cream);
  border-color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.3);
}
.btn-ghost:hover {
  background: rgba(250, 246, 238, 0.08);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: var(--cream);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy-700);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all .25s var(--ease);
}
.link-arrow:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }
.link-arrow-lg { font-size: 1rem; }

/* ===== Navigation ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.nav-wrap.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 246, 238, 0.97);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 46px; height: 46px;
  background: var(--navy-900);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--gold);
}
.brand-mark::before, .brand-mark::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
}
.brand-mark::before { top: 3px; left: 3px; border-right: none; border-bottom: none; }
.brand-mark::after { bottom: 3px; right: 3px; border-left: none; border-top: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-name .amp { color: var(--gold-dark); font-style: italic; font-weight: 400; }
.brand-tag {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: .85rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  transition: all .3s var(--ease);
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream);
  padding: 120px 0 140px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 92, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.18) 0%, transparent 60%);
  filter: blur(40px);
}
.hero-inner {
  position: relative;
  max-width: 980px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 165, 92, 0.3);
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  background: rgba(201, 165, 92, 0.05);
  animation: fadeUp .8s var(--ease) both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1.8rem;
  animation: fadeUp .9s .1s var(--ease) both;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(250, 246, 238, 0.78);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 1s .2s var(--ease) both;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 1.1s .3s var(--ease) both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 165, 92, 0.18);
  padding-top: 2.5rem;
  animation: fadeUp 1.2s .4s var(--ease) both;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid rgba(201, 165, 92, 0.18);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Section base ===== */
.section { padding: 120px 0; position: relative; }

/* ===== Narrative ===== */
.narrative { background: var(--cream); }
.narrative-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.narrative-label .vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .8rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-block;
  padding-top: 80px;
}
.narrative-body { max-width: 820px; }
.narrative-body p { font-size: 1.05rem; margin-bottom: 1.2rem; }
.etymology {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 3rem;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.etymology::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px;
  width: 60px; height: 3px;
  background: var(--gold);
}
.etym-item h4 {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: .6rem;
  font-weight: 600;
}
.etym-item p { font-size: .95rem; line-height: 1.7; }
.etym-divider { width: 1px; background: var(--line); }

/* ===== Pillars ===== */
.pillars-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}
.pillar {
  padding: 50px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: all .35s var(--ease);
  background: var(--paper);
}
.pillar:nth-child(2n) { border-right: none; }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar:hover {
  background: var(--cream-warm);
  transform: translateY(-2px);
}
.pillar-feature { background: var(--cream); }
.pillar-feature:hover { background: var(--cream-warm); }
.pillar-num {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  max-width: 100px;
}
.pillar h3 {
  margin-bottom: 1rem;
  color: var(--navy-900);
}
.pillar p {
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

/* ===== Values ===== */
.values-section { background: var(--cream); }
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: translateX(-100%);
  transition: transform .4s var(--ease);
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.value:hover::before { transform: translateX(0); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--cream-warm);
  color: var(--gold-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  transition: all .3s var(--ease);
}
.value-icon svg { width: 26px; height: 26px; }
.value:hover .value-icon { background: var(--gold); color: var(--navy-900); transform: scale(1.05); }
.value h4 { margin-bottom: .6rem; color: var(--navy-900); font-size: 1.25rem; font-family: var(--display); font-weight: 600; }
.value p { font-size: .95rem; line-height: 1.6; }

/* ===== Why ===== */
.why-section { background: var(--paper); padding: 140px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  height: 500px;
}
.why-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.why-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease);
}
.why-card-1 {
  top: 0; left: 0;
  width: 70%;
  z-index: 3;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  border-color: var(--navy-700);
}
.why-card-2 {
  top: 30%; right: 0;
  width: 60%;
  z-index: 2;
  transform: rotate(2deg);
}
.why-card-3 {
  bottom: 0; left: 10%;
  width: 65%;
  z-index: 1;
  background: var(--cream);
  transform: rotate(-2deg);
}
.why-visual:hover .why-card-1 { transform: translate(-6px, -6px); }
.why-visual:hover .why-card-2 { transform: rotate(0deg) translateY(-4px); }
.why-visual:hover .why-card-3 { transform: rotate(0deg) translate(6px, 6px); }
.wc-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .6rem;
}
.why-card-2 .wc-label, .why-card-3 .wc-label { color: var(--gold-dark); }
.wc-value {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1;
}
.why-card-2 .wc-value, .why-card-3 .wc-value { color: var(--navy-900); }
.wc-bar {
  height: 4px;
  background: rgba(201, 165, 92, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.wc-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  animation: barFill 2s var(--ease);
}
@keyframes barFill {
  from { width: 0; }
}
.wc-pulse {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wc-pulse span {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 1.4s ease-in-out infinite;
}
.wc-pulse span:nth-child(2) { animation-delay: .2s; }
.wc-pulse span:nth-child(3) { animation-delay: .4s; }
@keyframes pulseDot {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.wc-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.wc-mini div {
  height: 24px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  opacity: .3;
  animation: bar 2s ease-in-out infinite;
}
.wc-mini div:nth-child(1) { animation-delay: 0s; height: 16px; }
.wc-mini div:nth-child(2) { animation-delay: .15s; height: 28px; }
.wc-mini div:nth-child(3) { animation-delay: .3s; height: 22px; }
.wc-mini div:nth-child(4) { animation-delay: .45s; height: 32px; }
.wc-mini div:nth-child(5) { animation-delay: .6s; height: 18px; }
.wc-mini div:nth-child(6) { animation-delay: .75s; height: 26px; }
.wc-mini div:nth-child(7) { animation-delay: .9s; height: 14px; }
.wc-mini div:nth-child(8) { animation-delay: 1.05s; height: 30px; }
@keyframes bar {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.why-content p {
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.why-actions {
  display: flex;
  gap: 14px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ===== KRI Highlight ===== */
.kri-highlight { background: var(--cream); }
.kri-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 3rem;
}
.kri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.kri-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.kri-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(201, 165, 92, 0.1) 0%, transparent 70%);
}
.kri-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.kri-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--cream-warm);
  border-radius: 100px;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.kri-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-weight: 600;
}
.kri-card p {
  font-size: .95rem;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--paper); border-top: 1px solid var(--line); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute;
  top: 0; left: 24px;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  opacity: .4;
}
.testi blockquote {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--navy-900);
  margin: 1.5rem 0 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  border: 2px solid var(--gold);
}
.testi-name { font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.testi-role { font-size: .8rem; color: var(--muted); }

/* ===== CTA Band ===== */
.cta-band {
  background: var(--navy-900);
  color: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 92, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse, rgba(201, 165, 92, 0.15) 0%, transparent 60%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--cream);
  margin-top: .4rem;
  font-weight: 400;
}
.cta-inner h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-phone {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all .25s var(--ease);
}
.cta-phone:hover { border-bottom-color: var(--gold); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-900);
  color: rgba(250, 246, 238, 0.75);
  padding: 80px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand { margin-bottom: 1.5rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tag { color: var(--gold-light); }
.footer-blurb {
  font-size: .92rem;
  color: rgba(250, 246, 238, 0.6);
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h5 {
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: .6rem;
  transition: all .25s var(--ease);
  width: fit-content;
}
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-addr {
  font-size: .85rem;
  color: rgba(250, 246, 238, 0.55);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 165, 92, 0.15);
  font-size: .82rem;
  color: rgba(250, 246, 238, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 165, 92, 0.25);
  border-radius: 50%;
  transition: all .25s var(--ease);
  color: rgba(250, 246, 238, 0.6);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== PAGE HEADER (used on inner pages) ===== */
.page-header {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 92, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 30%, transparent 80%);
}
.page-header::after {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.15) 0%, transparent 60%);
  filter: blur(30px);
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.breadcrumbs {
  font-size: .82rem;
  color: rgba(250, 246, 238, 0.6);
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }
.page-header h1 {
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.page-header h1 em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.page-header p {
  font-size: 1.15rem;
  color: rgba(250, 246, 238, 0.78);
  max-width: 680px;
  line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--paper);
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.vm-block { position: relative; padding-left: 24px; }
.vm-block::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 4px;
  height: calc(100% - 8px);
  background: var(--gold);
  border-radius: 2px;
}
.vm-block h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navy-900);
}
.vm-block p { font-size: 1.05rem; line-height: 1.7; }
.vm-list { list-style: none; padding: 0; margin: 0; }
.vm-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.vm-list li::before {
  content: '◉';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  margin-top: 4rem;
}
.objective {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all .3s var(--ease);
  position: relative;
}
.objective:nth-child(3n) { border-right: none; }
.objective:nth-last-child(-n+3) { border-bottom: none; }
.objective:hover { background: var(--cream-warm); }
.obj-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}
.objective h4 {
  margin-bottom: .8rem;
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
}
.objective p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}
.board-member {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.board-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.board-photo {
  width: 140px; height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
  border: 3px solid var(--gold);
  position: relative;
}
.board-photo::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 165, 92, 0.3);
  border-radius: 50%;
}
.board-member h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .3rem;
}
.board-role {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.board-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--navy-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ===== SOLUTIONS PAGE ===== */
.solutions-detail {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sol-row.reverse { direction: rtl; }
.sol-row.reverse > * { direction: ltr; }
.sol-content .eyebrow { padding-left: 32px; }
.sol-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.sol-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.sol-features {
  list-style: none;
  margin-top: 1.5rem;
}
.sol-features li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .98rem;
  color: var(--ink-soft);
}
.sol-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 18px; height: 2px;
  background: var(--gold);
}
.sol-features li:last-child { border-bottom: none; }
.sol-visual {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-visual.alt { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%); }
.sol-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 92, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 92, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sol-visual.alt::before {
  background-image:
    linear-gradient(rgba(31, 61, 114, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 61, 114, 0.06) 1px, transparent 1px);
}
.sol-icon-big {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.12);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(201, 165, 92, 0.3);
}
.sol-icon-big::before, .sol-icon-big::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(201, 165, 92, 0.18);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.sol-icon-big::after { inset: -40px; animation-duration: 50s; animation-direction: reverse; opacity: .6; }
@keyframes rotate { to { transform: rotate(360deg); } }
.sol-icon-big svg { width: 80px; height: 80px; color: var(--gold); position: relative; z-index: 1; }
.sol-visual.alt .sol-icon-big {
  background: rgba(31, 61, 114, 0.08);
  border-color: rgba(31, 61, 114, 0.2);
}
.sol-visual.alt .sol-icon-big::before, .sol-visual.alt .sol-icon-big::after {
  border-color: rgba(31, 61, 114, 0.15);
}
.sol-visual.alt .sol-icon-big svg { color: var(--navy-700); }

.partner-cta {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.partner-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.15) 0%, transparent 70%);
}
.partner-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(31, 61, 114, 0.08) 0%, transparent 70%);
}
.partner-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  position: relative;
}
.partner-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  color: var(--ink-soft);
}
.partner-cta .btn { position: relative; }

/* ===== KRI PAGE ===== */
.kri-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.kri-edition {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
  position: relative;
}
.kri-edition:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.kri-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.kri-cover.alt-1 { background: linear-gradient(135deg, #2c5191 0%, #16305e 100%); }
.kri-cover.alt-2 { background: linear-gradient(135deg, #a07f3f 0%, #c9a55c 100%); }
.kri-cover.alt-3 { background: linear-gradient(135deg, #1f3d72 0%, #0a1733 100%); }
.kri-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.kri-cover-text {
  position: relative;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--cream);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  padding: 0 20px;
}
.kri-cover.alt-2 .kri-cover-text { color: var(--navy-900); }
.kri-edition-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kri-edition h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-weight: 600;
}
.kri-edition p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* ===== CASE STUDIES ===== */
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.case-cover {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px;
}
.case-cover-1 { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); }
.case-cover-2 { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }
.case-cover-3 { background: linear-gradient(135deg, var(--navy-700) 0%, #2c5191 100%); }
.case-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.case-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.case-icon svg { width: 36px; height: 36px; color: var(--cream); }
.case-cover-2 .case-icon svg { color: var(--navy-900); }
.case-body { padding: 32px; }
.case-tag {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .8rem;
}
.case-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-weight: 600;
}
.case-card p {
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}

/* ===== BLOGS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.blog-cover {
  height: 180px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.blog-cover-num {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  opacity: .6;
}
.blog-body { padding: 28px; }
.blog-meta {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-meta .dot-sep { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: .8rem;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.3;
}
.blog-card p {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--navy-900);
  color: var(--cream);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.contact-info::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.15) 0%, transparent 60%);
}
.contact-info h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.12);
  border: 1px solid rgba(201, 165, 92, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item-content { flex: 1; }
.contact-item-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .25rem;
}
.contact-item-value {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
}
.contact-item-value a { color: var(--cream); }
.contact-item-value a:hover { color: var(--gold-light); }
.contact-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 165, 92, 0.2);
}
.contact-social-label {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.contact-social-links {
  display: flex;
  gap: 12px;
}
.contact-social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 92, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition: all .25s var(--ease);
}
.contact-social-links a:hover {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.contact-social-links svg { width: 16px; height: 16px; }

.contact-form-wrap {
  background: var(--paper);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  font-family: var(--display);
  font-weight: 600;
}
.contact-form-wrap > p {
  margin-bottom: 2rem;
  color: var(--muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: .95rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: all .25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form-wrap .btn { width: 100%; padding: 16px; font-size: 1rem; }

.map-section {
  margin-top: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
  position: relative;
  background: var(--cream-warm);
}
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.section.reveal { transition-delay: 0s; }
.pillar.reveal:nth-child(1) { transition-delay: .05s; }
.pillar.reveal:nth-child(2) { transition-delay: .15s; }
.pillar.reveal:nth-child(3) { transition-delay: .25s; }
.pillar.reveal:nth-child(4) { transition-delay: .35s; }
.value.reveal:nth-child(1) { transition-delay: .05s; }
.value.reveal:nth-child(2) { transition-delay: .12s; }
.value.reveal:nth-child(3) { transition-delay: .2s; }
.value.reveal:nth-child(4) { transition-delay: .28s; }
.value.reveal:nth-child(5) { transition-delay: .35s; }
.value.reveal:nth-child(6) { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 30px; border-bottom: 1px solid var(--line); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .why-grid, .narrative-grid, .vision-mission, .contact-grid, .sol-row { grid-template-columns: 1fr; }
  .narrative-label { display: none; }
  .vision-mission { padding: 40px 32px; gap: 40px; margin-top: -40px; }
  .why-visual { height: 400px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .pillar:last-child { border-bottom: none !important; }
  .values, .objectives-grid, .kri-cards, .testi-grid, .kri-list, .case-list, .blog-grid, .board-grid { grid-template-columns: 1fr 1fr; }
  .objectives-grid .objective:nth-child(3n) { border-right: 1px solid var(--line); }
  .objectives-grid .objective:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 1.2rem; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 100px; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding-top: 2rem; }
  .stat { padding: 0 12px; }
  .stat-num { font-size: 1.8rem; }
  .values, .objectives-grid, .kri-cards, .testi-grid, .kri-list, .case-list, .blog-grid, .board-grid, .form-row { grid-template-columns: 1fr; }
  .objectives-grid .objective { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
  .etymology { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .etym-divider { width: 100%; height: 1px; }
  .vision-mission { padding: 30px 24px; }
  .contact-info, .contact-form-wrap { padding: 30px 24px; }
  .partner-cta { padding: 50px 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .why-actions { flex-direction: column; align-items: stretch; }
  .why-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .sol-visual { padding: 40px 30px; min-height: 320px; }
  .sol-icon-big { width: 140px; height: 140px; }
  .sol-icon-big svg { width: 56px; height: 56px; }
  .kri-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CONTACT FORM STATUS MESSAGES
   ============================================================ */
.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-family: var(--font-sans);
  min-height: 0;
  transition: padding 0.2s ease;
}
.form-status:not(:empty) {
  padding: 14px 18px;
  border-radius: 8px;
}
.form-status.success {
  background: rgba(201, 165, 92, 0.12);
  border: 1px solid rgba(201, 165, 92, 0.4);
  color: #8a6d2c;
}
.form-status.error {
  background: rgba(176, 58, 46, 0.08);
  border: 1px solid rgba(176, 58, 46, 0.3);
  color: #8a2e26;
}
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================
   ARTICLE BODY (blog posts)
   ============================================================ */
.article-body {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.78;
}
.article-body p {
  margin: 0 0 1.4em;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 2.2em 0 0.7em;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 1.8em 0 0.6em;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.article-body li {
  margin-bottom: 0.6em;
}
.article-body blockquote {
  margin: 1.8em 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 165, 92, 0.06);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-deep);
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body a {
  color: var(--navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.article-body a:hover { color: var(--gold-deep); }
.article-body strong { color: var(--navy-deep); font-weight: 600; }
.article-body img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
  border-radius: 8px;
}
.article-body code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.92em;
  background: rgba(15, 32, 66, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy-deep);
}

.article-author {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}
.article-author p { margin: 0; }
