/* =============================================================
   Habitual Integrity Leadership
   style.css — complete production stylesheet
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --color-navy: #1B2A4A;
  --color-navy-deep: #131F39;
  --color-navy-dark: #0E182C;
  --color-teal: #2AAA8A;
  --color-teal-dark: #1F8E73;
  --color-teal-light: #3CC3A1;
  --color-accent-gold: #C9A227;
  --color-accent-gold-soft: #E4BE4A;

  /* DISC accent colors */
  --disc-d: #C1443B;
  --disc-i: #D9A021;
  --disc-s: #2AAA8A;
  --disc-c: #1B2A4A;

  /* Neutrals (light theme) */
  --bg: #FBF9F4;
  --bg-alt: #F5F1E8;
  --bg-elev: #FFFFFF;
  --surface: #FFFFFF;
  --text: #1B2A4A;
  --text-muted: #4A5870;
  --text-subtle: #6B7891;
  --border: rgba(27, 42, 74, 0.12);
  --border-strong: rgba(27, 42, 74, 0.22);
  --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 6px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(27, 42, 74, 0.12);

  /* Dark section surfaces (used even in light theme) */
  --dark-bg: #1B2A4A;
  --dark-bg-deep: #131F39;
  --dark-surface: rgba(255, 255, 255, 0.04);
  --dark-surface-strong: rgba(255, 255, 255, 0.08);
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-text: #F5F2EC;
  --dark-text-muted: rgba(245, 242, 236, 0.72);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --fast: 180ms;
  --med: 320ms;
  --slow: 560ms;
}

/* ---------- Dark theme overrides ---------- */
html[data-theme="dark"] {
  --bg: #0B1324;
  --bg-alt: #0E192F;
  --bg-elev: #132341;
  --surface: #162A4E;
  --text: #F3EFE6;
  --text-muted: #B7C1D3;
  --text-subtle: #8C98AD;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --dark-bg: #081021;
  --dark-bg-deep: #050A17;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color var(--med) var(--ease), color var(--med) var(--ease);
}

img, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 700; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-navy);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top var(--fast) var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--fast) var(--ease),
              background-color var(--fast) var(--ease),
              color var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 6px 16px rgba(42, 170, 138, 0.3);
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(42, 170, 138, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-sm {
  padding: 0.7rem 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border), 0 6px 20px rgba(27, 42, 74, 0.06);
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--color-teal);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--fast) var(--ease);
}
.site-nav a:hover { color: var(--color-teal); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}
.theme-toggle:hover {
  background: var(--border);
  color: var(--color-teal);
}
.theme-toggle svg { display: block; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 960px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 959px) {
  .header-actions .btn-sm { display: none; }
}

/* ---------- Mobile Nav Drawer ---------- */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; transform: translateY(0); }
.mobile-nav a:not(.btn) {
  padding: 0.9rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .btn { margin-top: 1rem; }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section Base ---------- */
.section {
  padding: 5.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-head {
  max-width: 760px;
  margin: 0 0 3.5rem;
}
.section-head.center {
  margin: 0 auto 3.5rem;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-accent-gold);
}
.section-head.center .eyebrow {
  justify-content: center;
}
.eyebrow-dark {
  color: var(--color-navy);
}
.eyebrow-dark::before { background: var(--color-navy); }
html[data-theme="dark"] .eyebrow-dark { color: var(--color-teal); }
html[data-theme="dark"] .eyebrow-dark::before { background: var(--color-teal); }
.eyebrow-gold {
  color: var(--color-accent-gold);
}
.eyebrow-gold::before { background: var(--color-accent-gold); }

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: var(--text);
}
.section-title.light { color: #fff; }

.section-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 68ch;
  margin: 0;
}
.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}
.section-lede.light { color: rgba(245, 242, 236, 0.8); }
.muted-note {
  font-style: italic;
  color: var(--text-subtle);
  font-size: 1rem;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--color-navy-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 19, 36, 0.65) 0%,
      rgba(11, 19, 36, 0.35) 40%,
      rgba(11, 19, 36, 0.55) 100%),
    linear-gradient(90deg,
      rgba(11, 19, 36, 0.55) 0%,
      rgba(11, 19, 36, 0.15) 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.hero .eyebrow {
  color: var(--color-accent-gold-soft);
  margin-bottom: 1.5rem;
}
.hero .eyebrow::before { background: var(--color-accent-gold-soft); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  line-height: 1.03;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.hero-title em {
  font-style: italic;
  color: var(--color-accent-gold);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 0 0 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  background: rgba(11, 19, 36, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-meta span { white-space: nowrap; }
.hero-meta strong {
  color: var(--color-accent-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: 0.35rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-figure {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  aspect-ratio: 4 / 3.3;
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-figure-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent-gold);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}
html[data-theme="dark"] .about-figure-caption {
  background: rgba(19, 35, 65, 0.92);
  color: var(--text);
}
.about-figure-caption span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.about-figure-caption span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.credentials li {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
}

/* Pillars */
.pillars-head {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  text-align: center;
  margin: 0 auto 2.5rem;
  color: var(--text);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .pillars { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.pillar {
  padding: 1.75rem 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-gold);
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--text);
  line-height: 1.25;
}
.pillar p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================================
   STORY
   ============================================================= */
.story {
  background: var(--bg-alt);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: minmax(0, 0.9fr) 1.2fr;
    gap: 4rem;
  }
}

.story-media {
  position: sticky;
  top: 6rem;
}
.story-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
@media (max-width: 899px) {
  .story-media { position: static; }
}

.story-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}
.story-copy strong { color: var(--text); }

.pull-quote {
  margin: 2.5rem 0;
  padding: 1.75rem 0 1.75rem 1.75rem;
  border-left: 3px solid var(--color-accent-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
  color: var(--text);
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--text);
  font-size: inherit;
  line-height: inherit;
}
.pull-quote em {
  color: var(--color-accent-gold);
  font-style: italic;
  font-weight: 500;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-subtle);
  margin-top: 0.5rem;
}

/* =============================================================
   FRAMEWORK
   ============================================================= */
.framework {
  background: var(--bg);
}

.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 820px) {
  .framework-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.framework-card {
  padding: 2.25rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.framework-card.refuse {
  background: linear-gradient(180deg, #F8D9CF 0%, #FBEFE8 55%, #FDF8F4 100%);
  border: 1px solid rgba(193, 68, 59, 0.18);
}
.framework-card.embrace {
  background: linear-gradient(180deg, #CFEFE3 0%, #E7F7F1 55%, #F4FBF8 100%);
  border: 1px solid rgba(42, 170, 138, 0.2);
}
html[data-theme="dark"] .framework-card.refuse {
  background: linear-gradient(180deg, #3E1613 0%, #2A1412 55%, #1E1010 100%);
  border-color: rgba(193, 68, 59, 0.3);
}
html[data-theme="dark"] .framework-card.embrace {
  background: linear-gradient(180deg, #0E3D32 0%, #0B2B24 55%, #082018 100%);
  border-color: rgba(42, 170, 138, 0.3);
}
html[data-theme="dark"] .framework-card h3,
html[data-theme="dark"] .framework-card header p,
html[data-theme="dark"] .framework-card li {
  color: var(--text);
}

.framework-card header {
  margin-bottom: 1.5rem;
}
.framework-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.refuse .framework-tag { background: var(--disc-d); }
.embrace .framework-tag { background: var(--color-teal); }

.framework-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.refuse h3 { color: var(--disc-d); }
.embrace h3 { color: var(--color-teal); }

.framework-card header p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0;
}
.framework-card header p em { font-style: italic; color: var(--color-accent-gold); }

.framework-card ul {
  list-style: none;
  border-top: 1px solid rgba(27, 42, 74, 0.08);
  padding-top: 0.5rem;
}
html[data-theme="dark"] .framework-card ul {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.framework-card li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.5rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
}
html[data-theme="dark"] .framework-card li {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.framework-card li:last-child { border-bottom: none; }
.framework-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.refuse li::before { background: var(--disc-d); }
.embrace li::before { background: var(--color-teal); }

.framework-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.framework-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.35;
  margin: 0 0 1rem;
}
.framework-quote em {
  color: var(--color-accent-gold);
  font-style: italic;
}
.framework-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-subtle);
}

/* =============================================================
   SERVICES (Light cream variant)
   ============================================================= */
.services {
  position: relative;
  background: var(--bg-alt);
  color: var(--text);
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
}
.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.services .container {
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .services {
  background: var(--dark-bg-alt);
  color: var(--dark-text);
}
html[data-theme="dark"] .services-bg {
  opacity: 0.12;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 680px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.05);
  transition: transform var(--med) var(--ease), border-color var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.1);
}
html[data-theme="dark"] .service-card {
  background: var(--dark-bg-card);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
html[data-theme="dark"] .service-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 1rem;
}
html[data-theme="dark"] .service-card h3 {
  color: var(--dark-text);
}
.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}
html[data-theme="dark"] .service-desc {
  color: rgba(255, 255, 255, 0.78);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 42, 74, 0.08);
}
html[data-theme="dark"] .service-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.service-meta > div {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}
.service-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  font-weight: 600;
}
.service-meta dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}
html[data-theme="dark"] .service-meta dd {
  color: rgba(255, 255, 255, 0.9);
}
.service-card .btn { margin-top: auto; }

/* =============================================================
   GALLERY (Speaking)
   ============================================================= */
.gallery {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1rem; }
}
@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 639px) {
  .gallery-item-featured { grid-column: span 2; grid-row: span 2; }
}

/* =============================================================
   DISC
   ============================================================= */
.disc {
  background: var(--bg);
}
html[data-theme="light"] .disc { background: var(--bg-alt); }

.disc-seal {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.12);
  background: #fff;
  padding: 8px;
}
html[data-theme="dark"] .disc-seal {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .disc-seal { width: 160px; }
}

.disc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .disc-grid { grid-template-columns: repeat(4, 1fr); }
}

.disc-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--disc-color, var(--color-navy));
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.disc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.disc-d { --disc-color: var(--disc-d); }
.disc-i { --disc-color: var(--disc-i); }
.disc-s { --disc-color: var(--disc-s); }
.disc-c { --disc-color: var(--disc-c); }

.disc-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--disc-color);
  margin-bottom: 0.8rem;
}
.disc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.disc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 1rem;
}
.disc-card > p:last-child {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.disc-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.disc-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  background: var(--bg);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.quote-mark {
  width: 36px;
  height: 36px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.testimonial figcaption {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial figcaption strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
}
.testimonial figcaption span {
  font-size: 0.78rem;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================================
   INSIGHTS
   ============================================================= */
.insights {
  background: var(--bg);
}

.insight-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 4px solid var(--color-accent-gold);
}

html[data-theme="dark"] .insight-card {
  background: var(--dark-bg-card);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.insight-body {
  padding: 2.5rem 3rem;
}

@media (max-width: 640px) {
  .insight-body { padding: 1.75rem 1.5rem; }
}

.insight-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.insight-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.insight-excerpt {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.insight-closing {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}

.insight-quote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--color-accent-gold);
  background: rgba(201, 162, 39, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

html[data-theme="dark"] .insight-quote {
  background: rgba(201, 162, 39, 0.08);
}

.insight-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.insight-quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-accent-gold);
  font-weight: 600;
}

.insight-card .btn {
  margin-top: 0.5rem;
}

.insight-card + .insight-card {
  margin-top: 2rem;
}

/* =============================================================
   PRESS / FEATURED IN
   ============================================================= */
.press {
  background: var(--bg);
}
html[data-theme="light"] .press { background: var(--bg-alt); }

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.press-card {
  background: #ffffff;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-left: 4px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 14px rgba(27, 42, 74, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.press-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 42, 74, 0.08);
}
html[data-theme="dark"] .press-card {
  background: var(--dark-bg-card);
  border-color: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-accent-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.press-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.press-publication {
  color: var(--color-teal);
  font-weight: 700;
}
.press-dot {
  opacity: 0.5;
}

.press-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 0.4rem;
  font-weight: 700;
}
html[data-theme="dark"] .press-title { color: var(--dark-text); }

.press-byline {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.press-excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.25rem;
}
html[data-theme="dark"] .press-excerpt { color: var(--dark-text); }

.press-quote {
  border-left: 3px solid var(--color-teal);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
  background: rgba(42, 170, 138, 0.04);
  border-radius: 0 6px 6px 0;
}
.press-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}
html[data-theme="dark"] .press-quote p { color: var(--dark-text); }
html[data-theme="dark"] .press-quote { background: rgba(42, 170, 138, 0.08); }
.press-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.press-card .btn {
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .press-card { padding: 1.5rem 1.25rem; }
  .press-title { font-size: 1.4rem; }
}

.insight-subhead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.insight-subhead:first-of-type {
  margin-top: 0.5rem;
}

.insight-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.insight-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  break-inside: avoid;
}

.insight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

@media (max-width: 480px) {
  .insight-list { columns: 1; }
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  background: var(--color-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
html[data-theme="dark"] .contact { background: var(--dark-bg-deep); }
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 80% 30%, rgba(42, 170, 138, 0.12), transparent 60%),
    radial-gradient(500px 500px at 15% 85%, rgba(201, 162, 39, 0.08), transparent 60%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-copy .eyebrow { color: var(--color-accent-gold); }
.contact-copy .eyebrow::before { background: var(--color-accent-gold); }

.contact-list {
  list-style: none;
  margin: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 170, 138, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius);
  border: 1px solid rgba(42, 170, 138, 0.25);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.15rem;
}
.contact-list li > div > span:first-child {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}
.contact-list li a,
.contact-list li p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
}
.contact-list li a:hover { color: var(--color-teal-light); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.social:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
  transform: translateY(-1px);
}
.social svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-label { white-space: nowrap; }

/* Footer social links */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.footer-social-link:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}
.footer-social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Contact form */
.contact-form {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}
.contact-form h3 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
}
.form-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin: 0 0 1.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}
.field label .optional {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.35rem;
  font-size: 0.78rem;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  width: 100%;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(42, 170, 138, 0.2);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option {
  background: var(--color-navy);
  color: #fff;
}

.contact-form .btn { margin-top: 0.5rem; }
.form-success {
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  background: rgba(42, 170, 138, 0.15);
  border: 1px solid rgba(42, 170, 138, 0.4);
  color: #CFF3E7;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}
html[data-theme="dark"] .site-footer { background: #050A17; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-sub { color: var(--color-teal); }
.brand-footer .brand-mark { color: #fff; }

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.25rem 0 1.5rem;
}

.footer-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
}
.cert-badge {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  background: rgba(201, 162, 39, 0.06);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin: 0 0 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--fast) var(--ease);
}
.footer-links a:hover { color: var(--color-teal-light); }

.footer-base {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 760px) {
  .footer-base {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-base p { margin: 0; }
.footer-quote em {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* =============================================================
   Responsive Tweaks
   ============================================================= */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .hero-inner { padding-top: 4rem; padding-bottom: 6rem; }
  .hero-meta { flex-direction: column; gap: 0.6rem; border-radius: var(--radius-lg); padding: 1rem 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .pull-quote { padding-left: 1.15rem; }
  .pillar { padding: 1.5rem 1.25rem; }
  .framework-card { padding: 1.75rem 1.25rem 2rem; }
  .service-card { padding: 1.75rem 1.25rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
}

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 3px;
}
