/* =============================================================
   Optimise Group — Design System v2
   Premium editorial redesign
   ============================================================= */

/* ─── 1. RESET ─────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: var(--base);
  line-height: 1.72;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── 2. DESIGN TOKENS ─────────────────────────────────────── */

:root {
  /* Primary palette */
  --forest:    #071F14;
  --olive:     #556B4E;
  --sage:      #B8C8AD;
  --cream:     #F5F3EC;
  --warm:      #D8D5CC;
  --charcoal:  #1D1D1B;
  --black-g:   #03100B;
  --white:     #FFFFFF;

  /* Derived tones */
  --forest-mid:   #0d3322;
  --forest-light: rgba(7,31,20,0.06);
  --sage-alpha:   rgba(184,200,173,0.18);
  --sage-border:  rgba(184,200,173,0.35);
  --warm-border:  rgba(216,213,204,0.7);
  --charcoal-60:  rgba(29,29,27,0.6);
  --charcoal-40:  rgba(29,29,27,0.4);

  /* Typography */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --text-xs:  0.6875rem;
  --text-sm:  0.8125rem;
  --base:     1.0625rem;

  /* Section rhythm */
  --sec-v:    clamp(80px, 10vw, 140px);
  --sec-v-sm: clamp(56px, 7vw, 96px);

  /* Container */
  --wrap:    1280px;
  --gutter:  clamp(20px, 5vw, 72px);
  --col-gap: clamp(16px, 2.5vw, 40px);

  /* Border radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Easing */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-light { color: rgba(255,255,255,0.45); }

.link-arrow {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 10px; }

/* ─── 4. LAYOUT ─────────────────────────────────────────────── */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── 5. NAVIGATION ─────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  height: 68px;
  color: var(--white);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-nav:not(.scrolled) { background: transparent; }

.site-nav.scrolled {
  background: rgba(7,31,20,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.site-nav.nav-light {
  color: var(--charcoal);
}
.site-nav.nav-light:not(.scrolled) {
  background: rgba(245,243,236,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--warm-border);
}
.site-nav.nav-light.scrolled {
  background: rgba(7,31,20,0.97);
  color: var(--white);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo-mark { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  opacity: 0.72;
  transition: opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.nav-links a.active-link { opacity: 1; font-weight: 500; }
.site-nav.nav-light .nav-links a:hover { background: rgba(7,31,20,0.06); }
.site-nav.nav-light .nav-links a.active-link { color: var(--forest); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  opacity: 0.5;
  transition: opacity 0.2s var(--ease);
}
.nav-social a:hover { opacity: 1; }
.nav-social svg { width: 15px; height: 15px; }

.nav-cta {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.site-nav.nav-light .nav-cta {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.site-nav.nav-light .nav-cta:hover { background: var(--forest-mid); border-color: var(--forest-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── 6. HERO ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 68px;
  background: var(--forest);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 60%, rgba(85,107,78,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(13,51,34,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(3,16,11,0.85) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,200,173,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,200,173,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(80px, 10vw, 140px);
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 52px);
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.8;
}
.hero-label-dots {
  display: flex;
  gap: 6px;
  opacity: 0.4;
}
.hero-label-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 116px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 13ch;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.hero-heading em {
  font-style: italic;
  color: var(--sage);
}

.hero-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  max-width: 60%;
}

.hero-copy {
  max-width: 460px;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  font-family: var(--sans);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--white); color: var(--forest); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.22); }

.btn-ghost {
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); color: var(--white); }

.btn-dark { background: var(--forest); color: var(--white); }
.btn-dark:hover { background: var(--forest-mid); box-shadow: 0 8px 32px rgba(7,31,20,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.38); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(7,31,20,0.18);
}
.btn-outline:hover { background: var(--forest-light); border-color: rgba(7,31,20,0.32); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
  width: fit-content;
  margin-top: 28px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.42); color: var(--white); }

.hero-text-link {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal-60);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}
.hero-text-link:hover { color: var(--forest); }

/* ─── STATEMENT SECTION ─────────────────────────────────────── */
.statement-block {
  background: var(--cream);
  padding: var(--sec-v-sm) var(--gutter);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.statement-inner { max-width: var(--wrap); margin: 0 auto; }
.statement-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--forest);
  max-width: 860px;
}
.statement-text em {
  color: var(--olive);
  font-style: italic;
}

/* ─── HOME CTA (dark) ───────────────────────────────────────── */
.home-cta {
  background: var(--forest);
  padding: var(--sec-v) var(--gutter);
  color: var(--white);
}
.home-cta-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.home-cta-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 580px;
}
.home-cta-heading em { color: var(--sage); font-style: italic; }
.home-cta-sub {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 460px;
}
.home-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .home-cta-inner { grid-template-columns: 1fr; }
  .home-cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* ─── HERO PLATFORM PREVIEW ─────────────────────────────────── */
.hero-platforms {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-30%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.hero-plat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--warm-border);
  border-radius: 32px;
  padding: 9px 18px 9px 10px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-plat-pill:hover { background: rgba(255,255,255,0.92); transform: translateX(-4px); }
.hero-plat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-plat-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-left: 4px;
}
@media (max-width: 900px) {
  .hero-platforms { display: none; }
}

.section-cta {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  animation: lineExpand 2.4s ease-in-out infinite;
}
@keyframes lineExpand {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.4); transform-origin: left; }
}

/* ─── 7. INTRO ──────────────────────────────────────────────── */

.intro {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.intro-inner { max-width: var(--wrap); margin: 0 auto; }

.intro-statement {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--forest);
  max-width: 800px;
  margin-bottom: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--warm-border);
}

.intro-body {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--charcoal-60);
  max-width: 640px;
  line-height: 1.78;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--warm-border);
  padding-top: clamp(36px, 5vw, 56px);
}

.intro-pillar {
  padding: 0 clamp(20px, 3.5vw, 52px);
}
.intro-pillar:first-child { padding-left: 0; }
.intro-pillar:last-child { padding-right: 0; }
.intro-pillar:not(:last-child) {
  border-right: 1px solid var(--warm-border);
}

.intro-pillar-num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--olive);
  margin-bottom: 18px;
  display: block;
}

.intro-pillar h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.22;
}

.intro-pillar p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--charcoal-60);
}

/* ─── 8. AUDIENCE ROUTING ────────────────────────────────────── */

.audience-routing {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
  border-bottom: 1px solid rgba(7,31,20,0.07);
}

.audience-routing-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.audience-routing .eyebrow {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(7,31,20,0.08);
  border: 1px solid rgba(7,31,20,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  background: var(--cream);
  text-decoration: none;
  transition: background 0.22s var(--ease);
  position: relative;
}

.audience-card:hover {
  background: var(--white);
}

.audience-card:hover .audience-arrow {
  color: var(--forest);
  gap: 10px;
}

.audience-tag {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.28;
  flex-grow: 1;
}

.audience-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.68;
}

.audience-arrow {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

@media (max-width: 1080px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ─── 9. SERVICES ────────────────────────────────────────────── */

.services {
  background: var(--white);
  padding: var(--sec-v) var(--gutter);
  border-top: 1px solid rgba(7,31,20,0.07);
  border-bottom: 1px solid rgba(7,31,20,0.07);
}
.services-inner { max-width: var(--wrap); margin: 0 auto; }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(7,31,20,0.07);
}

.services-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.services-sub {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--charcoal-60);
  line-height: 1.7;
  max-width: 380px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(7,31,20,0.07);
  border: 1px solid rgba(7,31,20,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 48px);
  transition: background 0.3s var(--ease);
}
.service-card:hover { background: var(--cream); }

.service-num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--olive);
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.22;
}

.service-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
}

/* ─── 9. PLATFORMS ──────────────────────────────────────────── */

.platforms {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.platforms-inner { max-width: var(--wrap); margin: 0 auto; }

.platforms-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.platforms-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 480px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.platform-card {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 52px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,200,173,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.platform-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(3,16,11,0.35);
}

.platform-card-tag {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.8;
}

.platform-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.platform-card p {
  font-family: var(--sans);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  flex: 1;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 4px;
}
.platform-features li {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.platform-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.55;
}

.platform-card-footer {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 22px;
}
.platform-card .link-arrow { color: var(--sage); }
.platform-card .link-arrow:hover { color: var(--white); }

/* ─── 10. SELECTED WORK ─────────────────────────────────────── */

.work-preview {
  background: var(--white);
  padding: var(--sec-v) var(--gutter);
}
.work-preview-inner { max-width: var(--wrap); margin: 0 auto; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .link-arrow { color: var(--olive); flex-shrink: 0; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.section-sub {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  max-width: 340px;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}

.work-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--warm-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  background: var(--cream);
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(7,31,20,0.1);
  border-color: rgba(184,200,173,0.5);
}

.work-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--forest);
}
.work-card-img svg { width: 100%; height: 100%; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; }

.work-card-body {
  padding: clamp(20px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.work-tag {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--sage-alpha);
  color: var(--olive);
}

.work-card h3 {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
}

.work-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.62;
  flex: 1;
}

.work-card-link {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--olive);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: color 0.2s, gap 0.2s;
}
.work-card-link::after { content: '→'; }
.work-card-link:hover { color: var(--forest); gap: 10px; }

.work-card.featured {
  grid-column: span 3;
  flex-direction: row;
}
.work-card.featured .work-card-img {
  width: 44%;
  height: auto;
  flex-shrink: 0;
}
.work-card.featured .work-card-body {
  padding: clamp(28px, 4vw, 52px);
}
.work-card.featured h3 { font-size: clamp(20px, 2.5vw, 34px); }

/* ─── 11. INSIGHTS PREVIEW ──────────────────────────────────── */

.insights-home {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.insights-home-inner { max-width: var(--wrap); margin: 0 auto; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}

/* Shared article cards */
.article-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--warm-border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(7,31,20,0.1);
  border-color: rgba(184,200,173,0.5);
}

.article-img {
  height: 175px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-img svg { width: 100%; height: 100%; display: block; }

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px 10px;
}
.article-cat {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
.article-meta span:last-child {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-40);
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest);
  padding: 0 20px 8px;
}

.article-excerpt {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.62;
  padding: 0 20px;
  flex: 1;
}

.article-foot {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-40);
  padding: 14px 20px 20px;
  margin-top: auto;
}

/* ─── 12. PHILOSOPHY ─────────────────────────────────────────── */

.philosophy {
  background: var(--black-g);
  padding: var(--sec-v) var(--gutter);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(85,107,78,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 75% at 85% 50%, rgba(7,31,20,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 860px;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.philosophy-quote em {
  font-style: italic;
  color: var(--sage);
}

.philosophy-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.philosophy-left {
  display: flex;
  flex-direction: column;
}

.philosophy-copy {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.78;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-content: start;
}
.phil-stat-num {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 6px;
}
.phil-stat-label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── 13. CONTACT (homepage) ─────────────────────────────────── */

.contact-home {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.contact-home-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-home-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 20px;
}

.contact-home-body {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--charcoal-60);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-detail {
  margin-bottom: 6px;
}
.contact-label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  display: block;
  margin-bottom: 3px;
}
.contact-value {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
}
.contact-value a:hover { color: var(--olive); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.5;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(85,107,78,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  align-self: flex-start;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-submit:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(7,31,20,0.2);
}

/* ─── 14. FOOTER ────────────────────────────────────────────── */

.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding: clamp(56px, 7vw, 96px) 0 clamp(44px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}
.footer-logo svg { width: 28px; height: 28px; }

.footer-tag {
  font-family: var(--sans);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 210px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.footer-social svg { width: 14px; height: 14px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-nav-label {
  font-family: var(--sans);
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-col a {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.2s var(--ease);
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}
.footer-bottom span,
.footer-bottom-link {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.55); }

.footer-bottom-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ─── 15. INSIGHTS PAGE ─────────────────────────────────────── */

.insights-page-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(56px, 8vw, 100px)) var(--gutter) clamp(56px, 8vw, 100px);
}
.insights-page-hero-inner { max-width: var(--wrap); margin: 0 auto; }
.insights-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 22px;
}
.insights-page-hero p {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
}

.insights-body {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.insights-body-inner { max-width: var(--wrap); margin: 0 auto; }

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 72px;
  align-items: start;
}

.insights-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
  margin-bottom: clamp(36px, 5vw, 56px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.insights-featured:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(3,16,11,0.3); }

.insights-featured-img {
  background: var(--forest-mid);
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  padding: 24px;
}
.insights-featured-img-tag {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--sage);
}

.insights-featured-content {
  padding: clamp(26px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.insights-featured-meta {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
}
.insights-featured-content h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.insights-featured-content p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}
.insights-featured-content .link-arrow { color: var(--sage); margin-top: auto; }
.insights-featured-content .link-arrow:hover { color: var(--white); }

.insights-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}

.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cat-pill {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 7px 15px;
  border-radius: 100px;
  border: 1px solid var(--warm-border);
  color: var(--charcoal-60);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.cat-pill:hover,
.cat-pill.active { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Sidebar */
.insights-sidebar { display: flex; flex-direction: column; gap: 36px; }
.sidebar-section-title {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-bottom: 14px;
}

.sidebar-cats ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.sidebar-cats a:hover { background: var(--sage-alpha); color: var(--forest); }
.count { font-family: var(--sans); font-size: var(--text-xs); color: var(--charcoal-40); }

.sidebar-recent { display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--warm-border);
  transition: border-color 0.2s, background 0.2s;
}
.sidebar-recent a:hover { background: var(--cream); border-color: var(--sage-border); }
.r-cat {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
.r-title {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--forest);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── 16. POST PAGE ──────────────────────────────────────────── */

.post-hero {
  background: var(--forest);
  padding: calc(68px + clamp(44px, 6vw, 80px)) var(--gutter) clamp(44px, 6vw, 80px);
  color: var(--white);
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}
.post-meta-cat {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.post-meta-sep { opacity: 0.3; }

.post-hero-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.post-hero-desc {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.post-image {
  height: clamp(260px, 32vw, 460px);
  background: var(--forest-mid);
  background-size: cover;
  background-position: center;
}

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 88px) var(--gutter);
  color: var(--charcoal);
}
.post-body h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 600;
  margin: 2.4em 0 0.75em;
  color: var(--forest);
  line-height: 1.2;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  margin: 2em 0 0.65em;
  color: var(--charcoal);
  line-height: 1.25;
}
.post-body p { font-family: var(--sans); margin-bottom: 1.5em; line-height: 1.78; }
.post-body ul, .post-body ol {
  font-family: var(--sans);
  margin: 1.2em 0 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body blockquote {
  border-left: 3px solid var(--sage);
  padding: 14px 22px;
  margin: 2em 0;
  background: var(--sage-alpha);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--forest);
  font-family: var(--sans);
}
.post-body a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--forest); }
.post-body code {
  background: var(--forest-light);
  border-radius: var(--r-sm);
  padding: 2px 6px;
  font-size: 0.88em;
}
.post-body pre {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 22px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.post-body pre code { background: none; padding: 0; color: inherit; }
.post-body hr { border: none; border-top: 1px solid var(--warm-border); margin: 2.5em 0; }
.post-body strong { font-weight: 600; color: var(--charcoal); }
.post-body img { border-radius: var(--r-md); margin: 1.5em 0; }

.post-related {
  background: var(--cream);
  padding: var(--sec-v-sm) var(--gutter);
  border-top: 1px solid var(--warm-border);
}
.post-related-inner { max-width: var(--wrap); margin: 0 auto; }
.post-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.post-related-head .link-arrow { color: var(--olive); }
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}

/* ─── 17. GENERIC PAGES ──────────────────────────────────────── */

.page-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(56px, 8vw, 100px)) var(--gutter) clamp(56px, 7vw, 88px);
}
.page-hero-inner { max-width: var(--wrap); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 780px;
}
.page-hero p {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  line-height: 1.72;
}

/* ── PAGE HERO EXTRAS ──────────────────────────── */
.page-hero .eyebrow { color: rgba(255,255,255,0.42); margin-bottom: 20px; display: flex; }
.page-hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  margin-bottom: 12px;
  max-width: 600px;
  line-height: 1.55;
}
.page-hero-body {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.78;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.h-page {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 780px;
}
.h-page .accent { color: var(--sage); font-style: italic; }

/* ── INNER PAGE COMPONENTS ─────────────────────── */
.section-block {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.section-block.alt,
.section-block--alt {
  background: var(--white);
}
.container {
  max-width: var(--wrap);
  margin: 0 auto;
}
.split {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 20px;
}
.h-md {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 24px;
}
.body-lg,
.body-copy {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--charcoal-60);
  line-height: 1.78;
}
.lede {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--charcoal-60);
  line-height: 1.72;
}

/* Capability grid — advisory page */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(7,31,20,0.08);
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(7,31,20,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.cap-item {
  background: var(--white);
  padding: clamp(28px, 3vw, 44px);
}
.cap-num {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--olive);
  display: block;
  margin-bottom: 14px;
}
.cap-item h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.28;
}
.cap-item p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.72;
}

/* Plain list */
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plain-list li {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--charcoal-60);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.plain-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: 0.875rem;
}

/* Section CTA block */
.section-cta-block {
  background: var(--forest);
  padding: var(--sec-v) var(--gutter);
  text-align: center;
  color: var(--white);
}
.section-cta-block h2 { color: var(--white); margin-bottom: 16px; }
.section-cta-block p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.72;
}

/* Card grid 3 — used on franchise-360 */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.who-card-num {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.who-card-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.25;
}
.who-card-desc {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .caps-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
}

.page-section {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.page-section-inner { max-width: var(--wrap); margin: 0 auto; }

/* About */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.about-intro-grid h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.18;
}
.about-intro-grid p {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--charcoal-60);
  line-height: 1.78;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.8vw, 36px);
}
.value-num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.25;
}
.value-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
}

/* Contact page */
.contact-page {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
}
.contact-page-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.contact-page-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-page-body {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--charcoal-60);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Work page */
.work-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

/* ─── 18. SCROLL REVEALS ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-inner > * {
  animation: fadeUp 0.9s var(--ease-out) both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.22s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.38s; }

/* ─── 19. RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 2; }
  .work-card.featured .work-card-img { width: 42%; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-layout { grid-template-columns: 1fr 240px; gap: 48px; }
  .post-related-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-bottom { gap: 48px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,31,20,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px var(--gutter) 48px;
    gap: 0;
    align-items: flex-start;
    z-index: 899;
    overflow-y: auto;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    font-family: var(--serif);
    font-size: clamp(22px, 5vw, 34px);
    padding: 14px 0;
    opacity: 1;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
    width: 100%;
  }
  .nav-links.open a:hover { background: none; opacity: 0.6; }
  .nav-links.open a.active-link { color: var(--sage); }

  .intro-pillars { grid-template-columns: 1fr; }
  .intro-pillar { padding: clamp(24px, 4vw, 36px) 0 !important; border-right: none !important; border-bottom: 1px solid var(--warm-border); }
  .intro-pillar:last-child { border-bottom: none; }

  .services-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .platforms-head { flex-direction: column; align-items: flex-start; }
  .platforms-grid { grid-template-columns: 1fr; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-column: span 1; flex-direction: column; }
  .work-card.featured .work-card-img { width: 100%; height: 220px; }

  .insights-grid { grid-template-columns: 1fr; }
  .insights-layout { grid-template-columns: 1fr; }
  .insights-featured { grid-template-columns: 1fr; }
  .insights-featured-img { min-height: 170px; }
  .insights-main-grid { grid-template-columns: 1fr; }
  .insights-sidebar { display: none; }

  .philosophy-bottom { grid-template-columns: 1fr; gap: 36px; }
  .philosophy-stats { grid-template-columns: repeat(2, 1fr); }

  .contact-home-inner { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .post-related-grid { grid-column: 1fr; grid-template-columns: 1fr; }

  .about-intro-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .work-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  :root { --gutter: 20px; }

  .hero-footer { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .values-grid { grid-template-columns: 1fr; }
  .philosophy-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   PLATFORM PAGE CSS — Franchise 360 / Optimise Brands / OS
   ============================================================= */

/* ─── ABOUT HERO ─────────────────────────────────────────────── */
.about-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(56px, 8vw, 100px)) var(--gutter) clamp(56px, 7vw, 88px);
}
.about-hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.about-hero-inner .eyebrow { color: rgba(255,255,255,0.42); margin-bottom: 20px; display: flex; }
.h-xl {
  font-family: var(--serif);
  font-size: clamp(32px, 4.8vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 820px;
}
.about-hero-inner p {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  line-height: 1.72;
}

/* ─── INSIGHTS HERO ──────────────────────────────────────────── */
.insights-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(48px, 6vw, 84px)) var(--gutter) clamp(48px, 6vw, 80px);
}
.insights-hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.insights-hero-inner .eyebrow { color: rgba(255,255,255,0.42); margin-bottom: 20px; display: flex; }
.insights-hero-inner .h-xl { max-width: 100%; }
.insights-hero-inner p {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
}
@media (max-width: 880px) {
  .insights-hero-inner { grid-template-columns: 1fr; }
}

/* ─── CONTACT PAGE: info rows + form card ────────────────────── */
.contact-info {
  margin-top: 36px;
  border-top: 1px solid var(--warm-border);
}
.contact-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--warm-border);
}
.contact-info .label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  flex-shrink: 0;
}
.contact-info .value {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
  text-align: right;
}
.contact-info .value a { color: var(--olive); transition: color 0.18s; }
.contact-info .value a:hover { color: var(--forest); }

.form-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 2px 24px rgba(7,31,20,0.04);
}
.form-submit {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  align-self: flex-start;
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* h-page on light bg (contact page) needs dark color */
.contact-page .h-page { color: var(--forest); }

/* ─── BLOG POST: meta, image, body, author ────────────────────── */
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.42);
}
.post-hero-meta .cat {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.post-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--forest-mid);
  display: flex;
  align-items: flex-end;
  padding: 20px 28px;
}
.post-image-overlay {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.post-body-inner { /* transparent wrapper — layout from .post-body */ }
.post-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--warm-border);
}
.post-author-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.post-author-text {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.55;
}
.post-author-text strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

/* ─── INSIGHTS PAGE: search bar ──────────────────────────────── */
.insights-search-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--warm-border);
  padding: 0 var(--gutter);
  position: sticky;
  top: 68px;
  z-index: 80;
}
.insights-search {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.insights-search-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.insights-search-input {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
  width: 200px;
  transition: border-color 0.2s var(--ease);
}
.insights-search-input:focus { outline: none; border-color: var(--olive); }

/* ─── INSIGHTS PAGE: aside/sidebar (new names) ───────────────── */
/* Override body-inner to create 2-col layout */
.insights-body-inner {
  display: grid !important;
  grid-template-columns: 1fr 268px;
  gap: clamp(48px, 6vw, 72px);
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto;
}
.insights-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 130px;
}
.aside-block { display: flex; flex-direction: column; }
.aside-title {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  margin-bottom: 12px;
}
.aside-list { display: flex; flex-direction: column; gap: 2px; margin: 0; }
.aside-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.aside-list li a:hover { background: var(--sage-alpha); color: var(--forest); }
.aside-recent { display: flex; flex-direction: column; gap: 6px; }
.aside-recent a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--warm-border);
  transition: border-color 0.18s, background 0.18s;
}
.aside-recent a:hover { background: var(--white); border-color: var(--sage-border); }
.newsletter-form { display: flex; gap: 8px; margin-top: 4px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: 9px 12px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
}
.newsletter-form input:focus { outline: none; border-color: var(--olive); }
.newsletter-form button {
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}
.newsletter-form button:hover { background: var(--forest-mid); }

@media (max-width: 880px) {
  .insights-body-inner { grid-template-columns: 1fr !important; }
  .insights-aside { display: none; }
  .insights-search-wrap { position: static; }
}

/* ─── PAGE BACK LINK ─────────────────────────────────────────── */
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 26px;
  transition: color 0.18s var(--ease), gap 0.18s var(--ease);
}
.page-back:hover { color: rgba(255,255,255,0.68); gap: 10px; }
.page-back svg   { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }

/* Light-background variant */
.page-back.light {
  color: var(--charcoal-40);
}
.page-back.light:hover { color: var(--forest); }

/* Inside os-lp-hero (centered layout — left-align the back link) */
.os-lp-hero .page-back {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ─── ADDITIONAL VARIABLE ALIASES ────────────────────────────── */
:root {
  --gold:      #C9A95B;
  --green:     #12382F;
  --green-d:   #071F14;
  --off-white: #F5F3EC;
  --rule:      rgba(216,213,204,0.7);
  --mid:       rgba(29,29,27,0.6);
}

/* ─── DARK SECTION BLOCK ──────────────────────────────────────── */
.section-block.dark {
  background: var(--forest);
  padding: var(--sec-v) var(--gutter);
}
.section-block.dark h2,
.section-block.dark h3 { color: var(--white); }
.section-block.dark p  { color: rgba(255,255,255,0.6); }

/* ─── CONTAINER NARROW ────────────────────────────────────────── */
.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* ─── H-LG HEADING ───────────────────────────────────────────── */
.h-lg {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--forest);
  margin-bottom: 20px;
}

/* ─── EYEBROW ON DARK ─────────────────────────────────────────── */
.eyebrow.on-dark {
  color: rgba(255,255,255,0.45);
}
.eyebrow.on-dark::before {
  background: rgba(255,255,255,0.35);
}

/* ─── CARD GRID 4 ─────────────────────────────────────────────── */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.card-grid-4 .item {
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
}
.card-grid-4 .item .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: var(--olive);
}
.card-grid-4 .item .icon svg { width: 100%; height: 100%; }
.card-grid-4 .item h4 {
  font-family: var(--serif);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-grid-4 .item p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
}

/* ─── WHO CARD ────────────────────────────────────────────────── */
.who-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 40px);
}

/* ─── WHAT'S INSIDE GRID ──────────────────────────────────────── */
.whats-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

/* WI CARDS ─────────────────────────────────────────────────────── */
.wi-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wi-visual {
  background: var(--cream);
  padding: clamp(18px, 2.5vw, 26px);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--warm-border);
}
.wi-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 0;
}
.wi-num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--olive);
}
.wi-tag {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-40);
  background: var(--sage-alpha);
  padding: 3px 8px;
  border-radius: 20px;
}
.wi-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
  padding: 10px 20px 6px;
  margin: 0;
}
.wi-desc {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
  padding: 0 20px 20px;
  margin: 0;
  flex: 1;
}

/* Education list */
.wi-edu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wi-edu-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.45;
}
.wi-edu-list li.dim { opacity: 0.42; }
.wi-edu-num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--olive);
  min-width: 18px;
  flex-shrink: 0;
}

/* Profile card */
.wi-profile-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
}
.wi-logo {
  width: 34px;
  height: 34px;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.wi-logo.small { width: 24px; height: 24px; font-size: 0.75rem; border-radius: 5px; }
.wi-logo.alt   { background: var(--olive); }
.wi-logo.alt2  { background: #6F7F52; }
.wi-logo.ghost { background: var(--warm-border); color: var(--charcoal-40); }
.wi-profile-info { flex: 1; min-width: 0; }
.wi-brand-name {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wi-brand-cat {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-40);
}
.wi-status {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  color: #3a7c5c;
  white-space: nowrap;
}
.wi-stats-row {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(7,31,20,0.04);
  border-radius: var(--r-sm);
}
.wi-stats-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.wi-stats-row .value {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}
.wi-stats-row .label {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--charcoal-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Chart */
.wi-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--charcoal-40);
}
.wi-chart-tick { font-weight: 600; color: var(--forest); }
.wi-chart      { width: 100%; height: 80px; display: block; }
.wi-legend {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.wi-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-60);
}
.wi-legend i {
  display: inline-block;
  width: 10px;
  height: 2px;
  border-radius: 2px;
}

/* Sentiment bars */
.wi-sent-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.wi-sent-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-60);
  min-width: 90px;
  flex-shrink: 0;
}
.wi-sent-bar {
  flex: 1;
  height: 6px;
  background: var(--sage-alpha);
  border-radius: 3px;
  overflow: hidden;
}
.wi-sent-bar > div { height: 100%; background: var(--forest); border-radius: 3px; }
.wi-sent-pct {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--forest);
  min-width: 28px;
  text-align: right;
}

/* Compare bars */
.wi-compare-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.wi-compare-row.dim { opacity: 0.42; }
.wi-compare-row.top .wi-compare-bar > div { background: var(--forest); }
.wi-compare-name {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-60);
  min-width: 50px;
  flex-shrink: 0;
}
.wi-compare-bar {
  flex: 1;
  height: 6px;
  background: var(--sage-alpha);
  border-radius: 3px;
  overflow: hidden;
}
.wi-compare-bar > div { height: 100%; background: var(--olive); border-radius: 3px; }
.wi-compare-pct {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--charcoal-60);
  min-width: 22px;
  text-align: right;
}

/* Article card */
.wi-visual-article { padding: 14px 14px 0; }
.wi-article-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: 14px;
}
.wi-article-cat {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
  display: block;
}
.wi-article-card h5 {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 6px;
}
.wi-article-card p {
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: var(--charcoal-40);
  line-height: 1.55;
  margin-bottom: 10px;
}
.wi-article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.625rem;
  color: var(--charcoal-40);
  border-top: 1px solid var(--warm-border);
  padding-top: 8px;
}
.wi-article-arrow { font-weight: 600; color: var(--olive); }

/* ─── SCREEN FRAME ───────────────────────────────────────────── */
.screen-frame {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(7,31,20,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.screen-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(7,31,20,0.1);
}
.screen-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--cream);
  border-bottom: 1px solid var(--warm-border);
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--charcoal-40);
}
.dots { display: flex; align-items: center; gap: 5px; }
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: var(--warm);
}
.dots span:nth-child(1) { background: #ED6B5E; }
.dots span:nth-child(2) { background: #F4BC44; }
.dots span:nth-child(3) { background: #61C454; }
.screen-body {
  padding: clamp(14px, 2vw, 22px);
  background: var(--white);
}

/* ─── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a7c5c;
  vertical-align: middle;
  margin-right: 3px;
}

/* =============================================================
   OUR WORK PAGE — platform rows + status tags + visualisations
   ============================================================= */

/* ─── WORK CARD TAG + STATUS ─────────────────────────────────── */
.work-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}

.status {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
}
.status.live    { background: rgba(85,107,78,0.14); color: var(--olive); }
.status.build   { background: rgba(201,169,91,0.18); color: #8a6e1a; }
.status.horizon { background: rgba(29,29,27,0.08); color: var(--charcoal-60); }

/* ─── PLATFORM ROW LAYOUT ────────────────────────────────────── */
.ourwork-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ourwork-page-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--warm-border);
}
.ourwork-page-row:last-child { border-bottom: none; }

.ourwork-page-row .left { display: flex; flex-direction: column; gap: 12px; }
.ourwork-page-row .right { display: flex; justify-content: flex-end; }

.ourwork-page-row .body {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.72;
}

@media (max-width: 880px) {
  .ourwork-page-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ourwork-page-row .right { justify-content: flex-start; }
}

/* ─── VIZ OS ─────────────────────────────────────────────────── */
.viz-os {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile.span2 { grid-column: span 2; }

.tile-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
.tile-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
}
.tile-meta {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--charcoal-40);
  margin-top: 2px;
}

.pulse-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-top: 8px;
}
.pulse-bars span {
  flex: 1;
  background: var(--sage);
  opacity: 0.55;
  border-radius: 2px;
  min-height: 4px;
  transition: opacity 0.2s;
}
.pulse-bars span:last-child { opacity: 0.9; }

/* ─── VIZ LABS ───────────────────────────────────────────────── */
.viz-labs {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--warm-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  width: 100%;
}

.viz-labs .ex {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--warm-border);
  font-family: var(--sans);
}
.viz-labs .ex:last-child { border-bottom: none; }

.viz-labs .num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--olive);
}

.viz-labs .ex > span:nth-child(2) {
  font-size: var(--text-sm);
  color: var(--forest);
  font-weight: 500;
}

.viz-labs .stage {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(85,107,78,0.1);
  color: var(--olive);
}

/* ─── VIZ 360 ────────────────────────────────────────────────── */
.viz-360 {
  display: flex;
  flex-direction: column;
}
.viz-360 .row {
  display: grid;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--warm-border);
  font-family: var(--sans);
}
.viz-360 .row:first-child { border-top: 1px solid var(--warm-border); }
.viz-360 .name {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--forest);
  font-weight: 500;
}
.viz-360 .meta {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--charcoal-60);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* ─── FEATURE LIST ───────────────────────────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-list .num {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--olive);
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-list li > div {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.65;
}
.feature-list li > div strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

/* ─── VIZ BRANDS + SWATCHES ──────────────────────────────────── */
.viz-brands { display: grid; gap: 0.5rem; }
.swatch {
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.swatch.s1 { background: #12382F; color: rgba(255,255,255,0.65); }
.swatch.s2 { background: #6F7F52; color: rgba(255,255,255,0.65); }
.swatch.s3 { background: #C9A95B; color: rgba(0,0,0,0.5); }
.swatch.s4 { background: #1F2421; color: rgba(255,255,255,0.65); }
.swatch.s5 { background: var(--cream); color: var(--charcoal-60); border: 1px solid var(--warm-border); align-items: center; font-size: 0.7rem; }
.swatch.s6 { background: var(--white); color: var(--charcoal-40); border: 1px solid var(--warm-border); align-items: center; font-size: 0.7rem; }

/* ─── 20. OPTIMISE OS LANDING PAGE ──────────────────────────── */

.os-lp-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(56px, 8vw, 100px)) var(--gutter) clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.os-lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(85,107,78,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.os-lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,200,173,0.1);
  border: 1px solid rgba(184,200,173,0.2);
  color: var(--sage);
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.os-lp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 24px;
}
.os-lp-hero h1 em { font-style: italic; color: var(--sage); }
.os-lp-hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.52);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.os-lp-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Dashboard cards */
.os-lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.os-lp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.os-lp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.os-lp-card-label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.42);
}
.os-lp-card-live {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 3px 8px;
  border-radius: 20px;
}
.os-lp-big-val {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.os-lp-sub-val {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

/* Person rows */
.os-lp-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.os-lp-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  flex-shrink: 0;
}
.os-lp-person-info { flex: 1; min-width: 0; }
.os-lp-person-name {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.2;
}
.os-lp-person-role {
  font-family: var(--sans);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.36);
}
.os-lp-badge-pill {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 12px;
  flex-shrink: 0;
}
.os-lp-badge-pill.on    { background: rgba(74,222,128,0.15); color: #4ade80; }
.os-lp-badge-pill.break { background: rgba(251,191,36,0.15); color: #fbbf24; }

/* Pulse chart */
.os-lp-pulse {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}
.os-lp-pulse span {
  flex: 1;
  background: rgba(184,200,173,0.3);
  border-radius: 2px;
}
.os-lp-pulse span:last-child { background: var(--sage); }

/* Data rows */
.os-lp-data-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.os-lp-data-label {
  flex: 1;
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.42);
}
.os-lp-data-val {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}
.os-lp-data-meta {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(184,200,173,0.55);
  min-width: 70px;
  text-align: right;
}

/* Alert rows */
.os-lp-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.os-lp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.os-lp-dot.red   { background: #f87171; }
.os-lp-dot.amber { background: #fbbf24; }
.os-lp-dot.green { background: #4ade80; }
.os-lp-alert-text {
  flex: 1;
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.68);
}
.os-lp-alert-date {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.33);
  white-space: nowrap;
}

/* Stats strip */
.os-lp-stats {
  background: var(--forest-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: clamp(28px, 4vw, 48px) var(--gutter);
}
.os-lp-stats-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}
.os-lp-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.os-lp-stat-num small {
  font-size: 0.44em;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--sage);
  vertical-align: super;
}
.os-lp-stat-lbl {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

/* LP sections */
.os-lp-section {
  padding: var(--sec-v) var(--gutter);
}
.os-lp-section.white { background: var(--white); }
.os-lp-section.grey  { background: var(--cream); }
.os-lp-inner { max-width: var(--wrap); margin: 0 auto; }
.os-lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.os-lp-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.os-lp-head h2 { color: var(--forest); }
.os-lp-head p {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--charcoal-60);
  line-height: 1.72;
  margin-top: 14px;
}

/* Checklist */
.os-lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.os-lp-checklist li {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--charcoal-60);
  line-height: 1.65;
  padding-left: 26px;
  position: relative;
}
.os-lp-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Module categories */
.os-lp-cat { margin-bottom: clamp(32px, 4vw, 52px); }
.os-lp-cat:last-child { margin-bottom: 0; }
.os-lp-cat-label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: clamp(14px, 1.8vw, 22px);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--warm-border);
}
.os-lp-mods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}
.os-lp-mod {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  padding: clamp(18px, 2.2vw, 28px);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.os-lp-mod:hover {
  border-color: var(--sage-border);
  box-shadow: 0 2px 12px rgba(7,31,20,0.05);
}
.os-lp-mod .icon { width: 30px; height: 30px; margin-bottom: 12px; color: var(--olive); }
.os-lp-mod .icon svg { width: 100%; height: 100%; }
.os-lp-mod h4 {
  font-family: var(--serif);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1.25;
}
.os-lp-mod p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.6;
}

/* Steps */
.os-lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.os-lp-step-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 14px;
}
.os-lp-step h4 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.25;
}
.os-lp-step p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.7;
}

/* Who cards */
.os-lp-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.os-lp-who-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
}
.os-lp-who-tag {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}
.os-lp-who-card h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.3125rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.25;
}
.os-lp-who-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.7;
  margin-bottom: 16px;
}
.os-lp-who-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.os-lp-who-card li {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal-60);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.os-lp-who-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: 0.75rem;
}

/* CTA */
.os-lp-cta {
  background: var(--forest);
  padding: var(--sec-v) var(--gutter);
  text-align: center;
  color: var(--white);
}
.os-lp-cta h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 18px;
}
.os-lp-cta p {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.5);
  max-width: 54ch;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.os-lp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PLATFORM PAGE RESPONSIVE ───────────────────────────────── */
@media (max-width: 1080px) {
  .os-lp-cards      { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .os-lp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .os-lp-steps      { grid-template-columns: 1fr 1fr; }
  .os-lp-who        { grid-template-columns: 1fr; }
  .whats-inside-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-4       { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 880px) {
  .os-lp-split       { grid-template-columns: 1fr; }
  .os-lp-who         { grid-template-columns: 1fr; }
  .whats-inside-grid  { grid-template-columns: 1fr 1fr; }
  .card-grid-4        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .os-lp-steps       { grid-template-columns: 1fr; }
  .os-lp-stats-inner  { grid-template-columns: 1fr 1fr; }
  .whats-inside-grid  { grid-template-columns: 1fr; }
  .card-grid-4        { grid-template-columns: 1fr; }
}

/* =============================================================
   ADVISORY SCREEN-FRAME — inline 4-col grid → 2-col on mobile
   ============================================================= */
@media (max-width: 640px) {
  .screen-body > div[style*="display:grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .screen-body > div[style*="display:flex"] {
    flex-wrap: wrap !important;
  }
  .screen-body > div[style*="display:flex"] > div {
    flex: 0 0 50% !important;
    min-width: 50% !important;
    box-sizing: border-box !important;
  }
}

/* =============================================================
   CASE STUDY PAGES — cs-* component system
   ============================================================= */

/* ─── HERO ────────────────────────────────────────────────── */
.cs-hero {
  background: var(--forest);
  color: var(--white);
  padding: calc(68px + clamp(48px, 8vw, 100px)) var(--gutter) clamp(48px, 6vw, 80px);
}

.cs-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.cs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.cs-hero-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 20px;
}
.cs-hero-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.35;
}

.cs-breadcrumb {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.cs-breadcrumb a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
}
.cs-breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.cs-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 0;
}
.cs-hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.cs-hero-lede {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  line-height: 1.72;
  margin: 1.5rem 0 0;
}

.cs-hero-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 36px);
  letter-spacing: 0.02em;
}

/* ─── SECTIONS ────────────────────────────────────────────── */
.cs-section {
  padding: var(--sec-v) var(--gutter);
  background: var(--white);
}
.cs-section[style*="background:var(--grey)"],
.cs-section[style*="background: var(--grey)"] {
  background: var(--cream);
}

.cs-label {
  display: inline-flex;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.cs-lede {
  font-family: var(--sans);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--charcoal);
  opacity: 0.68;
  max-width: 680px;
  line-height: 1.72;
  margin-top: 10px;
}

/* ─── PHASE GRID ──────────────────────────────────────────── */
.cs-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-border);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 3rem;
}

.cs-phase {
  background: var(--white);
  padding: clamp(20px, 3vw, 36px);
}
.cs-phase.dark-cell {
  background: var(--forest);
  color: var(--white);
}

.cs-phase-num {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 12px;
}
.cs-phase.dark-cell .cs-phase-num { color: var(--sage); opacity: 0.7; }

.cs-phase-title {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 10px;
}
.cs-phase.dark-cell .cs-phase-title { color: var(--white); }

.cs-phase-desc {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
  opacity: 0.62;
  line-height: 1.65;
  margin-bottom: 12px;
}
.cs-phase.dark-cell .cs-phase-desc { color: rgba(255,255,255,0.58); opacity: 1; }

.cs-phase-meta {
  font-family: var(--sans);
  font-size: var(--text-xs);
  color: var(--olive);
  letter-spacing: 0.04em;
}
.cs-phase.dark-cell .cs-phase-meta { color: var(--sage); opacity: 0.7; }

/* ─── CASE STUDY CTA ──────────────────────────────────────── */
.cs-cta {
  background: var(--forest);
  color: var(--white);
  padding: var(--sec-v) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-cta-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-bottom: 36px;
}
.cs-cta-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.35;
}

.cs-cta h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 560px;
  margin: 0 auto 18px;
}

.cs-cta p {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.52);
  max-width: 54ch;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 34px;
  border-radius: var(--r-md);
  background: var(--sage);
  color: var(--forest);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.cs-cta-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* ─── CS RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 880px) {
  .cs-phase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .cs-phase-grid { grid-template-columns: 1fr; }
  .cs-hero-footer { gap: 10px 24px; }
  .viz-brands[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ─── HERO LABEL MOBILE ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-label { flex-wrap: nowrap; white-space: nowrap; overflow: hidden; }
  .hero-label > span:last-child { display: none; }
}

/* =============================================================
   PORTFOLIO GALLERY — Our Work page
   ============================================================= */

.portfolio-section {
  background: var(--cream);
  padding: var(--sec-v) var(--gutter);
  border-top: 1px solid var(--warm-border);
}

.portfolio-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.portfolio-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest);
  line-height: 1.1;
  margin-top: 8px;
}

.portfolio-sub {
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.15vw, 1rem);
  color: var(--charcoal);
  opacity: 0.55;
  max-width: 36ch;
  line-height: 1.6;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* ─── GRID ────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ─── CARD ────────────────────────────────────────────────── */
.pf-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease), transform 0.22s var(--ease);
  cursor: pointer;
}
.pf-card:hover {
  box-shadow: 0 10px 40px -10px rgba(7,31,20,0.13);
  transform: translateY(-3px);
}

/* ─── PREVIEW AREA ────────────────────────────────────────── */
.pf-preview {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  flex-shrink: 0;
}

/* Browser chrome for iframe card */
.pf-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #EAE6DF;
  border-bottom: 1px solid var(--warm-border);
  flex-shrink: 0;
}
.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7,31,20,0.15);
  flex-shrink: 0;
}
.pf-url {
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--charcoal);
  opacity: 0.38;
  background: rgba(0,0,0,0.06);
  padding: 2px 10px;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Scaled iframe — renders the full page at a thumbnail scale */
.pf-iframe-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.pf-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 760px;
  transform: scale(0.43);
  transform-origin: top left;
  pointer-events: none;
  border: 0;
  background: #F4DDD4;
}

/* Image preview */
.pf-preview-img {
  aspect-ratio: 16 / 8;
  background: var(--forest);
}
.pf-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Data viz preview (dark) */
.pf-preview-data {
  background: var(--forest);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
}

.pf-data-inner {
  width: 100%;
  max-width: 300px;
}

.pf-data-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.pf-data-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  letter-spacing: -0.025em;
}
.pf-data-num small {
  font-size: 0.55em;
  letter-spacing: 0;
  opacity: 0.7;
}

.pf-data-lbl {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  line-height: 1.4;
}

.pf-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pf-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-bar-name {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.32);
  min-width: 90px;
  letter-spacing: 0.02em;
}

.pf-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.pf-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
}
.pf-bar-accent { background: var(--sage); }

.pf-bar-val {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  min-width: 28px;
  text-align: right;
}
.pf-bar-accent-val { color: var(--sage); }

.pf-data-caption {
  font-family: var(--sans);
  font-size: 0.575rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ─── CARD META ───────────────────────────────────────────── */
.pf-meta {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pf-tag {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.pf-card h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--forest);
  line-height: 1.2;
  margin-top: 2px;
}

.pf-card p {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--charcoal);
  opacity: 0.62;
  line-height: 1.6;
  flex: 1;
}

.pf-link {
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.02em;
  margin-top: 2px;
  transition: color 0.2s var(--ease);
}
.pf-card:hover .pf-link { color: var(--forest); }

/* ─── WORK SECTION HEAD ───────────────────────────────────── */
.work-section-head {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-bottom: 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 880px) {
  .portfolio-head { flex-direction: column; align-items: flex-start; }
  .portfolio-sub { max-width: 100%; }
  .pf-iframe-wrap { height: 220px; }
  .pf-iframe-wrap iframe { transform: scale(0.33); }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .pf-iframe-wrap { height: 200px; }
  .pf-iframe-wrap iframe {
    width: 960px;
    transform: scale(0.35);
  }
}
