/*! Shine & Grow Elementor Sections v2.0.0 */

/* Shine & Grow — Homepage (Editorial direction, evolved from V2)
   Single source of truth for the homepage styling */

:root {
  --cream: #F4E9DC;
  --cream-deep: #ECDEC9;
  --cream-soft: #F9F1E6;
  --cream-warm: #EFE2D2;
  --ink: #2A1F1A;
  --ink-soft: #4A3A30;
  --ink-muted: #7A6960;
  --burgundy: #A6362A;
  --burgundy-deep: #8A2C22;
  --coral: #D87966;
  --sand: #C9A26B;
  --leaf: #7BA178;
  --line: rgba(42, 31, 26, 0.12);
  --line-strong: rgba(42, 31, 26, 0.22);
  --container: 1280px;
  --gutter: clamp(28px, 5vw, 80px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.serif {
  font-family: "Cormorant Garamond", "Cormorant", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
}

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

/* Editorial eyebrow with number marker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.kicker .num { color: var(--burgundy); }
.kicker .bar { width: 32px; height: 1px; background: var(--burgundy); }

/* Display type */
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.02;
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 7.2vw, 104px); }
h2 { font-size: clamp(42px, 5vw, 72px); }
h3 { font-size: clamp(24px, 2vw, 30px); letter-spacing: -0.012em; line-height: 1.15; }
h4 { font-size: 19px; letter-spacing: -0.008em; line-height: 1.25; }

em, .italic { font-style: italic; color: var(--burgundy); }

/* Body */
.body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.body.lg { font-size: 19px; line-height: 1.55; }
.lede {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  text-wrap: pretty;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: var(--burgundy);
  color: var(--cream-soft);
  border: none;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(42,31,26,0.04); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.25s ease;
}
.text-link:hover { border-bottom-color: var(--burgundy); }

/* Warm peach placeholder used everywhere imagery is needed */
.ph-img {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(166,54,42,0.05) 0 14px,
      rgba(166,54,42,0.10) 14px 15px),
    linear-gradient(160deg, #E8C9B2 0%, #D6A88B 50%, #C58B73 100%);
}
.ph-img.cool {
  background:
    repeating-linear-gradient(135deg,
      rgba(42,31,26,0.04) 0 14px,
      rgba(42,31,26,0.08) 14px 15px),
    linear-gradient(160deg, #D9CFC0 0%, #B8A992 50%, #8B7A65 100%);
}
.ph-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42, 31, 26, 0.5);
}
.ph-img .inner-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Cross-section hairline */
.hairline {
  height: 1px;
  background: var(--line);
  max-width: var(--container);
  margin: 0 auto;
}

/* Section spacing */
.section { padding: clamp(80px, 9vw, 140px) 0; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; }

/* Page background variations */
.bg-cream { background: var(--cream-soft); }
.bg-cream-deep { background: var(--cream); }
.bg-warm { background: var(--cream-warm); }
.bg-ink { background: var(--ink); color: var(--cream-soft); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--cream-soft); }
.bg-ink .body { color: rgba(249, 241, 230, 0.75); }

/* Small reusable: star row */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── Header ─────────────────────────────────────────────── */

.sg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sg-logo .sg-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.sg-logo .sg-word em {
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

.sg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.sg-header.scrolled {
  background: rgba(249, 241, 230, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.sg-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.sg-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.sg-nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}
.sg-nav-link:hover { color: var(--burgundy); }
.sg-nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width 0.3s ease, left 0.3s ease;
}
.sg-nav-link:hover::after { width: 100%; left: 0; }

.sg-header-right { display: flex; align-items: center; gap: 22px; }
.sg-lang { font-size: 10.5px; letter-spacing: 0.2em; color: var(--ink-muted); }
.sg-cta-top { padding: 10px 18px; font-size: 12.5px; }

/* ── Hero ────────────────────────────────────────────────── */

.sg-hero {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0 0;
}

.sg-issue {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.sg-issue-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--burgundy);
}

.sg-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.sg-hero-left { padding-top: 8px; }

.sg-headline {
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 0;
}

.sg-rotator {
  position: relative;
  display: inline-block;
}
.sg-rot-spacer { visibility: hidden; display: inline-block; font-style: italic; }
.sg-rot-word {
  position: absolute;
  top: 0; left: 0;
  color: var(--burgundy);
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(.2,.6,.2,1),
    transform 1.1s cubic-bezier(.2,.6,.2,1),
    filter 1s ease;
}
.sg-rot-word em { font-style: italic; font-weight: 400; }
.sg-rot-word.on {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sg-byline {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  max-width: 520px;
}
.sg-byline-bar {
  width: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
}

.sg-hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.sg-ebook {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.sg-ebook:hover { opacity: 0.7; }
.sg-ebook-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sg-ebook-eyebrow {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3px;
}
.sg-ebook-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

/* hero right */
.sg-hero-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.sg-portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}
.sg-portrait .ph-img {
  width: 100%; height: 100%;
  animation: sg-kenburns 22s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes sg-kenburns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}
.sg-portrait-caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(42, 31, 26, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: 2px;
}

.sg-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sg-aside-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 16px 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.sg-aside-row:nth-child(-n+2) { border-top: none; }
.sg-aside-row:nth-child(2n) { border-right: none; padding-left: 16px; }
.sg-aside-row:hover { background: rgba(166,54,42,0.04); color: var(--burgundy); }
.sg-aside-num {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}
.sg-aside-row .arrow { color: var(--burgundy); opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; }
.sg-aside-row:hover .arrow { opacity: 1; transform: translateX(2px); }

.sg-hero-foot {
  display: flex;
  justify-content: space-between;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

/* ── Intro section ─────────────────────────────────────── */

.sg-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(56px, 7vw, 100px);
  align-items: start;
}

.sg-intro-h { margin-top: 32px; }

.sg-intro-lede {
  margin-top: 32px;
  max-width: 540px;
  color: var(--ink-soft);
}
.sg-intro-lede em { color: var(--burgundy); }

.sg-intro-body {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
  max-width: 580px;
}
.sg-intro-body p { margin: 0; }
.sg-intro-body em {
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.sg-intro-emphasis {
  margin-top: 8px !important;
  padding-left: 18px;
  border-left: 2px solid var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.sg-intro-emphasis em { font-style: italic; }

.sg-intro-grid .text-link { margin-top: 32px; }

.sg-intro-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sg-intro-card {
  margin: 0;
  position: relative;
}
.sg-intro-card .ph-img {
  animation: sg-kenburns 24s ease-in-out infinite alternate;
}
.sg-intro-card-caption {
  margin-top: 22px;
  padding: 4px 4px 0;
}
.sg-quote-sm {
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  margin: 10px 0 14px;
  text-wrap: balance;
}
.sg-quote-sm em { font-style: italic; color: var(--burgundy); }
.sg-quote-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-soft);
}
.sg-quote-attr .mono {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.sg-intro-meta {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.sg-intro-meta .kicker .num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}
.sg-intro-meta-p {
  margin: 12px 0 0;
  font-size: 14px;
  max-width: 36ch;
}

/* ── Signals section ───────────────────────────────────── */

.sg-signals-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: start;
}

.sg-signals-main .body { margin: 0 0 18px; max-width: 60ch; }
.sg-signals-h { margin: 30px 0 36px; }
.sg-signals-lede {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px !important;
  max-width: 56ch;
}
.sg-signals-cta { margin-top: 36px; }

.sg-signals-aside { position: sticky; top: 120px; }
.sg-pullquote {
  position: relative;
  padding: 60px 36px 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream-soft);
}
.sg-pullquote-mark {
  position: absolute;
  top: 4px; left: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--burgundy);
  font-style: italic;
  pointer-events: none;
}
.sg-pullquote p {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}
.sg-pullquote em { font-style: italic; color: var(--burgundy); }
.sg-pullquote-attr {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Values 3-strip ───────────────────────────────────── */

.sg-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sg-value-item {
  padding: 44px 36px 44px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 12px;
}
.sg-value-item:last-child { border-right: none; padding-right: 0; }
.sg-value-item:not(:first-child) { padding-left: 36px; }

.sg-value-glyph {
  color: var(--burgundy);
  margin-bottom: 16px;
}
.sg-value-num {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}
.sg-value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.sg-value-item .body { max-width: 36ch; }

/* ── Programs grid ────────────────────────────────────── */

.sg-programs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.sg-programs-h {
  margin: 24px 0 0;
  grid-column: 1;
}
.sg-programs-lede {
  grid-column: 2;
  max-width: 44ch;
  color: var(--ink-soft);
}
.sg-programs-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.sg-programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.sg-program {
  background: var(--cream-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px;
  margin: -1px 0 0 -1px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.sg-program-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.sg-program-num { color: var(--burgundy); }
.sg-program-tag { color: var(--ink-soft); }
.sg-program-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
}
.sg-program-image .ph-img {
  transition: transform 1.6s cubic-bezier(.2,.6,.2,1);
}
.sg-program:hover .sg-program-image .ph-img { transform: scale(1.05); }
.sg-program-glyph {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.sg-program-body { display: flex; flex-direction: column; gap: 16px; }
.sg-program-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.sg-program-foot {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}

/* ── About Nanda ──────────────────────────────────────── */

.sg-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.sg-about-figure {
  margin: 0;
  position: sticky;
  top: 120px;
}
.sg-about-figure .ph-img {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  animation: sg-kenburns 26s ease-in-out infinite alternate;
}
.sg-about-figcap {
  margin-top: 14px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.sg-about-body { padding-top: 8px; }
.sg-about-h { margin-top: 30px; }
.sg-about-lede {
  margin-top: 32px;
  color: var(--ink);
  max-width: 28ch;
}
.sg-about-lede em { color: var(--burgundy); }

.sg-about-p {
  margin-top: 22px;
  max-width: 56ch;
}
.sg-about-p em {
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05em;
}

.sg-about-creds {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sg-about-cred {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding-right: 22px;
}
.sg-about-cred:nth-child(-n+2) { border-top: none; }
.sg-about-cred:nth-child(2n) { border-right: none; padding-left: 22px; }
.sg-cred-k {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  flex-shrink: 0;
  padding-top: 3px;
}
.sg-cred-v { font-family: "Cormorant Garamond", serif; font-size: 19px; line-height: 1.3; }

.sg-about-link { margin-top: 36px; }

/* ── Testimonials (dark) ──────────────────────────────── */

.sg-testimonials { background: var(--ink); color: var(--cream-soft); }
.sg-testi-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 80px;
}
.sg-testi-kicker { color: rgba(249, 241, 230, 0.55); }
.sg-testi-kicker .num { color: var(--coral); }
.sg-testi-kicker .bar { background: var(--coral); }
.sg-testi-h {
  color: var(--cream-soft);
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}
.sg-testi-h em { color: var(--coral); }

.sg-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px solid rgba(249, 241, 230, 0.12);
  border-left: 1px solid rgba(249, 241, 230, 0.12);
}
.sg-testi {
  padding: 36px;
  border-right: 1px solid rgba(249, 241, 230, 0.12);
  border-bottom: 1px solid rgba(249, 241, 230, 0.12);
  margin: -1px 0 0 -1px;
  display: flex;
  flex-direction: column;
  background: rgba(249, 241, 230, 0.02);
  transition: background 0.3s ease;
}
.sg-testi:hover { background: rgba(249, 241, 230, 0.045); }

.sg-testi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.sg-testi-stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 1px;
}
.sg-testi-i {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(249, 241, 230, 0.4);
}

.sg-testi-headline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  color: var(--cream-soft);
  margin-bottom: 22px;
  letter-spacing: -0.008em;
  text-wrap: balance;
}
.sg-testi-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(249, 241, 230, 0.7);
  margin: 0 0 36px;
  flex: 1;
}
.sg-testi-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(249, 241, 230, 0.12);
}
.sg-testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.sg-testi-avatar.ph-img::after { display: none; }
.sg-testi-name {
  font-size: 14px;
  color: var(--cream-soft);
  font-weight: 500;
}
.sg-testi-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 241, 230, 0.45);
  margin-top: 2px;
}

.sg-testi-row {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(249, 241, 230, 0.55);
}
.sg-testi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
  text-transform: none;
}
.sg-testi-link:hover { border-bottom-color: var(--coral); }

/* ── Insights / blog ──────────────────────────────────── */

.sg-insights-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.sg-insights-head .kicker { grid-column: 1 / -1; margin-bottom: 4px; }
.sg-insights-h { margin: 24px 0 0; grid-column: 1; }
.sg-insights-lede {
  grid-column: 2;
  max-width: 44ch;
  color: var(--ink-soft);
}

.sg-insights-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.sg-insight-featured { display: flex; flex-direction: column; gap: 28px; }
.sg-insight-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
}
.sg-insight-image .ph-img {
  transition: transform 1.6s cubic-bezier(.2,.6,.2,1);
}
.sg-insight-featured:hover .sg-insight-image .ph-img { transform: scale(1.05); }
.sg-insight-featured-tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  background: var(--burgundy);
  color: var(--cream-soft);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}

.sg-insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.sg-insight-meta .dot { color: var(--burgundy); }
.sg-insight-title {
  margin: 18px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.sg-insight-body .body { margin: 0 0 22px; max-width: 50ch; }

.sg-insight-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.sg-insight-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.sg-insight-row-image {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  width: 100%;
  height: auto;
}
.sg-insight-row-image.ph-img::after {
  font-size: 8.5px;
}
.sg-insight-row-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 10px 0 14px;
  text-wrap: balance;
}

.sg-insights-all {
  align-self: flex-start;
  margin-top: 12px;
}

/* ── Final CTA ────────────────────────────────────────── */

.sg-cta {
  background: var(--cream-warm);
  position: relative;
}
.sg-cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.sg-cta-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}
.sg-cta-image .ph-img {
  width: 100%; height: 100%;
  animation: sg-kenburns 20s ease-in-out infinite alternate;
}

.sg-cta-body { padding: 8px 0; }
.sg-cta-h {
  margin-top: 28px;
  font-size: clamp(48px, 6vw, 84px);
}
.sg-cta-h em { color: var(--burgundy); font-style: italic; }
.sg-cta-lede {
  margin-top: 32px;
  max-width: 44ch;
  color: var(--ink-soft);
}

.sg-cta-list {
  list-style: none;
  margin: 36px 0 44px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sg-cta-list li {
  display: flex;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
  align-items: baseline;
}
.sg-cta-list li .mono {
  font-size: 12px;
  color: var(--burgundy);
  flex-shrink: 0;
}

.sg-cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.sg-cta-primary { padding: 17px 28px; font-size: 14px; }
.sg-cta-second {
  font-size: 13.5px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.sg-cta-second:hover { border-bottom-color: var(--ink); }

/* ── Footer ───────────────────────────────────────────── */

.sg-footer {
  padding: clamp(72px, 8vw, 120px) 0 32px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.sg-footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(56px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
}

.sg-footer-brand { padding-right: 24px; }
.sg-footer-tag {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.sg-footer-tag em { color: var(--burgundy); font-style: italic; }

.sg-footer-social {
  margin-top: 28px;
  display: flex;
  gap: 8px;
}
.sg-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.sg-footer-social a:hover {
  background: var(--burgundy);
  color: var(--cream-soft);
  border-color: var(--burgundy);
}

.sg-footer-col h4.sg-footer-h {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 8px 0 22px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
.sg-footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sg-footer-col li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sg-footer-col a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sg-footer-col a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.sg-footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 18px;
}
.sg-footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sg-footer-meta a { color: var(--ink-muted); transition: color 0.25s ease; }
.sg-footer-meta a:hover { color: var(--burgundy); }
.sg-footer-dot { color: var(--line-strong); }

/* Real imagery — Unsplash URLs targeted by data-label so the warm gradient
   placeholder still shows under broken/loading images. */

/* Helper: hide the data-label caption once an image is present */
.ph-img.has-image::after { display: none; }

/* Common image treatment — slightly desaturated, warmer */
.ph-img.has-image {
  background-blend-mode: multiply;
}

/* ─── HERO portrait ─── */
.ph-img[data-label="PORTRAIT — NANDA"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(166, 54, 42, 0.08)),
    url("05185daf-f5b4-43c2-84e8-b9ab9c5b5c37");
  background-size: cover;
  background-position: center 30%;
}
.ph-img[data-label="PORTRAIT — NANDA"]::after { display: none; }
.ph-img[data-label="PORTRAIT — NANDA"] svg { display: none; }

/* ─── INTRO testimonial card portrait ─── */
.ph-img[data-label="CLIENT PORTRAIT"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.12), rgba(166, 54, 42, 0.05)),
    url("26b67705-3fb4-47b6-8017-b0b1abf90c6b");
  background-size: cover;
  background-position: center 28%;
}
.ph-img[data-label="CLIENT PORTRAIT"]::after { display: none; }

/* ─── ABOUT — Nanda studio portrait ─── */
.ph-img[data-label="PORTRAIT — NANDA · STUDIO"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(124, 80, 55, 0.10)),
    url("b1b8622d-ccd6-4091-a795-d18f9f8a582a");
  background-size: cover;
  background-position: center 25%;
}
.ph-img[data-label="PORTRAIT — NANDA · STUDIO"]::after { display: none; }
.ph-img[data-label="PORTRAIT — NANDA · STUDIO"] svg { display: none; }

/* ─── PROGRAMS ─── */
.ph-img[data-label="ACT-THERAPIE"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.12), rgba(166, 54, 42, 0.06)),
    url("2486bda2-cb13-44cb-b10a-1e2f3a472f58");
  background-size: cover; background-position: center;
}
.ph-img[data-label="ACT-THERAPIE"]::after { display: none; }

.ph-img[data-label="RUNNINGTHERAPIE"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.08), rgba(166, 54, 42, 0.10)),
    url("fd5fe7f7-70be-4482-8a9a-b6528d6ebc0a");
  background-size: cover; background-position: center 60%;
}
.ph-img[data-label="RUNNINGTHERAPIE"]::after { display: none; }

.ph-img[data-label="COACHING"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(166, 54, 42, 0.08)),
    url("0a8d2bbd-674e-4a88-9f68-0bf772c0e57b");
  background-size: cover; background-position: center;
}
.ph-img[data-label="COACHING"]::after { display: none; }

.ph-img[data-label="VOOR BEDRIJVEN"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(166, 54, 42, 0.06)),
    url("bcf5fd9e-3275-47f5-9ef5-b0fb813163ac");
  background-size: cover; background-position: center;
}
.ph-img[data-label="VOOR BEDRIJVEN"]::after { display: none; }

/* ─── INSIGHTS ─── */
.ph-img[data-label="FEATURED ARTICLE"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.08), rgba(166, 54, 42, 0.10)),
    url("75ba56a4-d7d4-4c82-ab86-4cc58e5ebe81");
  background-size: cover; background-position: center;
}
.ph-img[data-label="FEATURED ARTICLE"]::after { display: none; }

.ph-img[data-label="ARTIKEL"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(166, 54, 42, 0.08)),
    url("cfd4a880-210b-4ae9-9f69-a4b6d1c9cfd9");
  background-size: cover; background-position: center;
}
.ph-img[data-label="ARTIKEL"]::after { display: none; }

.ph-img[data-label="PODCAST"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.10), rgba(166, 54, 42, 0.10)),
    url("8cadd510-40d1-4605-850c-bcf2d85c4cae");
  background-size: cover; background-position: center;
}
.ph-img[data-label="PODCAST"]::after { display: none; }

/* ─── CTA image ─── */
.ph-img[data-label="UTRECHT — PRAKTIJK"] {
  background-image:
    linear-gradient(180deg, rgba(244, 233, 220, 0.08), rgba(166, 54, 42, 0.10)),
    url("8d787755-1883-4b18-990d-910a9197fe7f");
  background-size: cover; background-position: center;
}
.ph-img[data-label="UTRECHT — PRAKTIJK"]::after { display: none; }
.ph-img[data-label="UTRECHT — PRAKTIJK"] svg { display: none; }

/* ─── Testimonial avatars — circular Unsplash ─── */
.sg-testi:nth-child(1) .sg-testi-avatar {
  background-image: url("5d53c596-4a11-48e2-a0c9-f6b6c8dd87dc");
  background-size: cover; background-position: center;
}
.sg-testi:nth-child(2) .sg-testi-avatar {
  background-image: url("da50c5ba-28ee-479e-b1bd-252311faccc2");
  background-size: cover; background-position: center;
}
.sg-testi:nth-child(3) .sg-testi-avatar {
  background-image: url("d3a24215-930d-4a67-85a8-b33347c2c011");
  background-size: cover; background-position: center;
}

/* ── Reveal-on-scroll ─────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(.2, .6, .2, 1),
    transform 1s cubic-bezier(.2, .6, .2, 1),
    filter 0.9s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Faster reveal for tiny elements */
.kicker[data-reveal] { transition-duration: 0.7s; }

/* ── Silk backdrop ────────────────────────────────────── */

.sg-hero { position: relative; }
.silk-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 90% 80% at 80% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 80% 50%, #000 0%, transparent 75%);
}
.sg-hero .container { position: relative; z-index: 1; }

/* slower kenburns + breathing on the hero portrait */
.sg-portrait .ph-img {
  animation: sg-kenburns 28s ease-in-out infinite alternate,
             sg-breathe 9s ease-in-out infinite;
}
@keyframes sg-breathe {
  0%, 100% { filter: saturate(1) brightness(1); }
  50%      { filter: saturate(1.03) brightness(1.02); }
}

/* ── Scroll progress bar ─────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--coral));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 100;
  pointer-events: none;
}

/* ── Floating eBook CTA ───────────────────────────────── */

.floating-ebook {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  background: rgba(249, 241, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 20px 50px -20px rgba(42, 31, 26, 0.35);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.floating-ebook.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-ebook-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-ebook-text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-ebook-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.floating-ebook-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.floating-ebook-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--cream-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.25s ease;
}
.floating-ebook-cta:hover { background: var(--burgundy); }
.floating-ebook-x {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.floating-ebook-x:hover { color: var(--ink); border-color: var(--ink-muted); }

@media (max-width: 560px) {
  .floating-ebook { right: 12px; bottom: 12px; padding: 10px 14px 10px 10px; gap: 10px; }
  .floating-ebook-eyebrow { font-size: 8.5px; }
  .floating-ebook-title { font-size: 14px; }
}

/* ── Section entrance for hero ─────────────────────────── */

.sg-headline { opacity: 0; animation: hero-enter 1.4s cubic-bezier(.2,.6,.2,1) 0.2s forwards; }
.sg-issue { opacity: 0; animation: hero-enter 1.2s cubic-bezier(.2,.6,.2,1) 0s forwards; }
.sg-byline { opacity: 0; animation: hero-enter 1.2s cubic-bezier(.2,.6,.2,1) 0.5s forwards; }
.sg-hero-actions { opacity: 0; animation: hero-enter 1.2s cubic-bezier(.2,.6,.2,1) 0.7s forwards; }
.sg-portrait { opacity: 0; animation: hero-portrait 1.6s cubic-bezier(.2,.6,.2,1) 0.4s forwards; }
.sg-aside { opacity: 0; animation: hero-enter 1.2s cubic-bezier(.2,.6,.2,1) 0.9s forwards; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes hero-portrait {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Disable double-reveal on hero pieces — they have their own entrance */
.sg-headline[data-reveal],
.sg-issue[data-reveal],
.sg-byline[data-reveal],
.sg-hero-actions[data-reveal],
.sg-portrait[data-reveal],
.sg-aside-row[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Smooth hover lift on program cards */
.sg-program { transition: background 0.35s ease, transform 0.35s ease; }
.sg-program:hover {
  background: rgba(249, 241, 230, 0.7);
  transform: translateY(-2px);
}

/* Hover lift on insight rows */
.sg-insight-row {
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
}
.sg-insight-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(166, 54, 42, 0.025);
}

/* Hover on testimonial cards already wired; ensure smooth */
.sg-testi { transition: background 0.3s ease, transform 0.3s ease; }
.sg-testi:hover { transform: translateY(-2px); }

/* Gentle pulse on N° markers */
.kicker .num {
  position: relative;
}
.kicker .bar {
  background: var(--burgundy);
  animation: bar-draw 1.6s cubic-bezier(.2,.6,.2,1) forwards;
  transform-origin: left center;
  transform: scaleX(0);
}
.is-visible .kicker .bar,
.kicker.is-visible .bar { transform: scaleX(1); }

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .sg-portrait .ph-img,
  .sg-intro-card .ph-img,
  .sg-about-figure .ph-img,
  .sg-cta-image .ph-img { animation: none; }
  .silk-backdrop { display: none; }
  .floating-ebook { transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 1100px) {
  .sg-nav { gap: 18px; }
  .sg-nav-link { font-size: 12.5px; }
  .sg-hero-grid { gap: 56px; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }

  .sg-header-inner { grid-template-columns: auto auto; }
  .sg-nav { display: none; }
  .sg-lang { display: none; }

  .sg-hero-grid,
  .sg-intro-grid,
  .sg-signals-grid,
  .sg-about-grid,
  .sg-programs-head,
  .sg-insights-head,
  .sg-insights-grid,
  .sg-cta-grid,
  .sg-testi-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sg-programs-head .kicker,
  .sg-insights-head .kicker { grid-column: 1; }
  .sg-programs-h, .sg-programs-lede,
  .sg-insights-h, .sg-insights-lede { grid-column: 1; }

  .sg-hero-right { position: static; }
  .sg-about-figure { position: static; }
  .sg-signals-aside { position: static; }

  .sg-values-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .sg-value-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
  }
  .sg-value-item:not(:first-child) { padding-left: 0; }
  .sg-value-item:last-child { border-bottom: none; }

  .sg-programs-grid,
  .sg-testi-grid {
    grid-template-columns: 1fr;
  }

  .sg-about-creds { grid-template-columns: 1fr; }
  .sg-about-cred:nth-child(2n) { padding-left: 0; }
  .sg-about-cred { border-right: none; padding-right: 0; }
  .sg-about-cred:nth-child(2) { border-top: 1px solid var(--line); }

  .sg-aside { grid-template-columns: 1fr; }
  .sg-aside-row:nth-child(2) { border-top: 1px solid var(--line); }
  .sg-aside-row:nth-child(2n) { border-right: none; padding-left: 4px; }
  .sg-aside-row { border-right: none; }

  .sg-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .sg-footer-brand { grid-column: 1 / -1; padding-right: 0; }

  .sg-insight-row { grid-template-columns: 100px 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(44px, 11vw, 64px); }
  h2 { font-size: clamp(34px, 9vw, 48px); }
  .sg-headline { font-size: clamp(48px, 12vw, 72px); }

  .sg-pullquote p { font-size: 22px; }
  .sg-program { padding: 28px; }
  .sg-footer-top { grid-template-columns: 1fr; }
  .sg-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Elementor integration ──────────────────────────────────────── */
.elementor-widget-sg_header .elementor-widget-container,
.elementor-widget-sg_hero .elementor-widget-container,
.elementor-widget-sg_intro .elementor-widget-container,
.elementor-widget-sg_signals .elementor-widget-container,
.elementor-widget-sg_values .elementor-widget-container,
.elementor-widget-sg_programs .elementor-widget-container,
.elementor-widget-sg_about .elementor-widget-container,
.elementor-widget-sg_testimonials .elementor-widget-container,
.elementor-widget-sg_insights .elementor-widget-container,
.elementor-widget-sg_final_cta .elementor-widget-container,
.elementor-widget-sg_footer .elementor-widget-container {
  padding: 0 !important; margin: 0 !important;
}
.sg-hero { position: relative; overflow: hidden; }
.sg-silk-backdrop { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:0; }
.sg-hero > .container, .sg-hero-foot { position:relative; z-index:1; }

/* Scroll reveal */
[data-reveal] { opacity:0; transform:translateY(28px); transition: opacity .75s cubic-bezier(.2,.6,.2,1), transform .85s cubic-bezier(.2,.6,.2,1); }
[data-reveal].is-visible { opacity:1; transform:translateY(0); }
.elementor-editor-active [data-reveal] { opacity:1; transform:none; }

/* Footer social */
.sg-footer-social { display:flex; gap:10px; }
.sg-footer-social a { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; border:1px solid currentColor; font-size:11px; font-family:"JetBrains Mono",monospace; transition:color .25s,border-color .25s; }
.sg-footer-top { display:grid; grid-template-columns:1.6fr repeat(4,1fr); gap:clamp(32px,4vw,60px); padding-bottom:48px; }

/* Responsive breakpoints */
@media(max-width:900px){ .sg-footer-top{grid-template-columns:1fr 1fr;} }
@media(max-width:768px){
  .sg-nav{display:none;}
  .sg-hero-grid{grid-template-columns:1fr;}
  .sg-hero-right{display:none;}
  .sg-programs-grid,.sg-testi-grid,.sg-insights-grid,.sg-values-grid,.sg-about-grid,.sg-cta-grid,.sg-intro-grid,.sg-signals-grid{grid-template-columns:1fr!important;}
  .sg-footer-top{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){ .sg-footer-top{grid-template-columns:1fr;} }
