/* ==========================================================
   Kshama — LIGHT THEME (Clean, De-duplicated)
   Palette: Alabaster / Powder Petal / Pastel Pink / Cherry Blossom / Dusty Mauve
   ========================================================== */

/* ==========================================================
   Reset & Base
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --alabaster-grey: #d8e2dcff;
  --powder-petal: #ffe5d9ff;
  --pastel-pink: #ffcad4ff;
  --cherry-blossom: #f4acb7ff;
  --dusty-mauve: #9d8189ff;

  /* Typography + layout */
  --radius: 16px;
  --radius-lg: 22px;

  /* Core tokens (Light Mode) */
  --bg: #f7faf9;
  /* airy, near-white */
  --bg-2: #eef3f1;
  /* gentle depth */
  --surface: rgba(255, 255, 255, 0.82);
  --surface-2: rgba(255, 255, 255, 0.90);
  --surface-3: rgba(255, 255, 255, 0.70);

  --ink: #2b2326;
  /* warm ink for legibility */
  --muted: rgba(43, 35, 38, 0.68);
  --muted-2: rgba(43, 35, 38, 0.54);

  --border: rgba(157, 129, 137, 0.24);
  --border-2: rgba(157, 129, 137, 0.34);

  /* Accents */
  --a1: var(--dusty-mauve);
  --a2: #c65a72;
  /* deeper rose */
  --a3: var(--cherry-blossom);

  --link: #b04a62;
  --link-hover: #7f4654;

  /* Shadows */
  --shadow-sm: 0 10px 26px rgba(30, 20, 24, 0.10);
  --shadow-md: 0 16px 44px rgba(30, 20, 24, 0.14);
  --shadow-lg: 0 26px 76px rgba(30, 20, 24, 0.16);
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.85;
  background:
    radial-gradient(1200px 520px at 15% 0%, rgba(244, 172, 183, 0.35), transparent 60%),
    radial-gradient(1000px 520px at 85% 10%, rgba(255, 202, 212, 0.30), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

/* Links */
a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

/* ==========================================================
   Navigation
   ========================================================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;

  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 44px rgba(30, 20, 24, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav a.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav a {
  font-weight: 650;
  color: rgba(43, 35, 38, 0.78);
}

nav a:hover {
  color: rgba(43, 35, 38, 0.96);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  text-align: center;
  padding: 78px 20px 56px;

  background:
    radial-gradient(900px 320px at 25% 25%, rgba(255, 202, 212, 0.42), transparent 60%),
    radial-gradient(860px 300px at 75% 35%, rgba(244, 172, 183, 0.34), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));

  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: rgba(43, 35, 38, 0.98);
  margin-bottom: 14px;
}

.hero .subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
}

.hero-animated {
  position: relative;
  overflow: hidden;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #c65a72, #9d8189);
  border-color: rgba(198, 90, 114, 0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(43, 35, 38, 0.86);
  border-color: var(--border);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero blobs */
.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  animation: floaty 7.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-blob-1 {
  width: 380px;
  height: 240px;
  left: -130px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 202, 212, 0.80), rgba(255, 202, 212, 0.10));
}

.hero-blob-2 {
  width: 340px;
  height: 220px;
  right: -120px;
  top: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 172, 183, 0.70), rgba(244, 172, 183, 0.10));
  animation-delay: 1.2s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}

/* ==========================================================
   Main layout
   ========================================================== */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 38px 18px 46px;
}

/* ==========================================================
   Reveal animation helper (used by your homepage script)
   ========================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   Section headers + icons
   ========================================================== */
.home-section {
  margin: 10px 0 28px;
}

.home-section-head {
  max-width: 920px;
  margin: 0 auto 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(43, 35, 38, 0.98);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  color: rgba(43, 35, 38, 0.82);
  box-shadow: var(--shadow-sm);
  flex: 0 0 38px;
}

.section-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.home-section-head p {
  color: var(--muted);
}

.soft-note {
  color: var(--muted);
}

/* ==========================================================
   Content cards
   ========================================================== */
.content-card {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  font-family: 'Playfair Display', serif;
  color: rgba(43, 35, 38, 0.98);
  margin-bottom: 10px;
}

.content-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* ==========================================================
   Packs grid (Project Library, PM Tools, Stories, Start Here)
   ========================================================== */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.pack-tile {
  display: block;
  position: relative;
  overflow: hidden;

  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);

  background:
    radial-gradient(900px 260px at 20% 10%, rgba(255, 202, 212, 0.40), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70));

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pack-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}

/* subtle shine on hover */
.pack-tile::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.75) 18%, transparent 36%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

.pack-tile:hover::before {
  transform: translateX(120%);
}

.pack-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.pack-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: rgba(43, 35, 38, 0.98);
  line-height: 1.25;
}

.pack-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(198, 90, 114, 0.22);
  background: rgba(244, 172, 183, 0.28);
  color: rgba(43, 35, 38, 0.86);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.pack-desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.pack-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(43, 35, 38, 0.78);
  font-weight: 800;
}

.pack-kicker {
  color: rgba(43, 35, 38, 0.82);
}

.pack-arrow {
  color: var(--link);
}

/* muted tiles (coming soon / in progress) */
.pack-tile-muted {
  opacity: 0.75;
  filter: saturate(0.95);
}

.pack-chip-muted {
  background: rgba(157, 129, 137, 0.10);
  border-color: rgba(157, 129, 137, 0.20);
  color: rgba(43, 35, 38, 0.70);
}

.pack-footer-muted {
  color: rgba(43, 35, 38, 0.58);
}

/* Inline CTA */
.inline-cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(43, 35, 38, 0.88);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.inline-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  color: rgba(43, 35, 38, 0.98);
}

/* ==========================================================
   Home section identity (Resources / Stories / PM Tools)
   ========================================================== */
.home-section--resources .section-icon {
  border-color: rgba(157, 129, 137, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.home-section--stories {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(157, 129, 137, 0.18);
}

.home-section--stories .section-icon {
  border-color: rgba(198, 90, 114, 0.22);
  background: rgba(244, 172, 183, 0.20);
}

.home-section--pmtools {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid rgba(157, 129, 137, 0.18);
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(157, 129, 137, 0.10), transparent 60%),
    radial-gradient(900px 280px at 85% 0%, rgba(244, 172, 183, 0.18), transparent 60%);
}

.home-section--pmtools .section-icon {
  border-color: rgba(157, 129, 137, 0.26);
  background: rgba(255, 202, 212, 0.22);
}

.home-section--pmtools .pack-tile {
  background:
    radial-gradient(900px 260px at 20% 10%, rgba(157, 129, 137, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70));
}

.home-section--pmtools .pack-tile:hover {
  border-color: rgba(157, 129, 137, 0.34);
  box-shadow: var(--shadow-md);
}

.home-section--pmtools::after {
  content: "";
  display: block;
  margin-top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 129, 137, 0.22), transparent);
}

/* ==========================================================
   Tags row
   ========================================================== */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(43, 35, 38, 0.84);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}

.tag-work {
  background: rgba(255, 229, 217, 0.80);
  border-color: rgba(157, 129, 137, 0.22);
}

.tag-pm {
  background: rgba(244, 172, 183, 0.34);
  border-color: rgba(198, 90, 114, 0.22);
}

.tag-digital {
  background: rgba(255, 202, 212, 0.42);
  border-color: rgba(198, 90, 114, 0.20);
}

.tag-hybrid {
  background: rgba(216, 226, 220, 0.70);
  border-color: rgba(157, 129, 137, 0.22);
}

/* ==========================================================
   Series Badge (Animated)
   ========================================================== */
.series-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 10px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1;

  color: rgba(43, 35, 38, 0.86);

  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(157, 129, 137, 0.26);

  position: relative;
  isolation: isolate;
  overflow: hidden;

  box-shadow: 0 10px 22px rgba(30, 20, 24, 0.10);
}

.series-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(198, 90, 114, 0.95), rgba(157, 129, 137, 0.85));
  box-shadow: 0 0 0 3px rgba(244, 172, 183, 0.35);
}

.series-badge::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.70) 18%, transparent 36%);
  transform: translateX(-120%);
  animation: seriesShimmer 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.85;
}

@keyframes seriesShimmer {
  0% {
    transform: translateX(-140%);
  }

  55% {
    transform: translateX(140%);
  }

  100% {
    transform: translateX(140%);
  }
}

.series-badge--tight {
  margin-left: 10px;
  transform: translateY(-2px);
}

/* ==========================================================
   Story blocks (About-like sections)
   ========================================================== */
.story {
  max-width: 780px;
  margin: 0 auto 22px;
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 12px;
  color: rgba(43, 35, 38, 0.98);
}

.story p {
  font-size: 16px;
  color: rgba(43, 35, 38, 0.90);
  line-height: 1.9;
  margin-bottom: 1em;
}

.story ul {
  margin: 12px 0 0 18px;
}

.story li {
  margin: 10px 0;
  color: rgba(43, 35, 38, 0.86);
}

.post a {
  color: var(--link);
  border-bottom: 1px dashed rgba(157, 129, 137, 0.32);
}

.post a:hover {
  border-bottom-style: solid;
}

/* Disclaimer box */
.disclaimer-box {
  margin: 18px 0 22px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(157, 129, 137, 0.22);
  background: linear-gradient(135deg, rgba(255, 229, 217, 0.92), rgba(216, 226, 220, 0.72));
  box-shadow: var(--shadow-sm);
}

.disclaimer-box h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 10px;
  color: rgba(43, 35, 38, 0.98);
  font-size: 18px;
}

.disclaimer-box p {
  color: rgba(43, 35, 38, 0.86);
}

/* ==========================================================
   Tables + wrappers
   ========================================================== */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(157, 129, 137, 0.22);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(157, 129, 137, 0.16);
  vertical-align: top;
}

th {
  font-weight: 900;
  background: rgba(255, 255, 255, 0.90);
  color: rgba(43, 35, 38, 0.92);
}

td {
  color: rgba(43, 35, 38, 0.86);
  background: rgba(255, 255, 255, 0.76);
}

tr:hover td {
  background: rgba(255, 202, 212, 0.18);
}

/* ==========================================================
   Risk Register enhancements (pills + sticky header)
   ========================================================== */
.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(157, 129, 137, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(43, 35, 38, 0.86);
}

.score-green {
  background: rgba(216, 226, 220, 0.80);
  border-color: rgba(157, 129, 137, 0.22);
}

.score-amber {
  background: rgba(255, 229, 217, 0.90);
  border-color: rgba(157, 129, 137, 0.22);
}

.score-red {
  background: rgba(244, 172, 183, 0.34);
  border-color: rgba(198, 90, 114, 0.22);
}

.rag-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(157, 129, 137, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(43, 35, 38, 0.86);
}

.rag-green {
  background: rgba(216, 226, 220, 0.80);
}

.rag-amber {
  background: rgba(255, 229, 217, 0.90);
}

.rag-red {
  background: rgba(244, 172, 183, 0.34);
  border-color: rgba(198, 90, 114, 0.22);
}

.table-wrap table.risk-table {
  min-width: 1400px;
}

.table-wrap table.risk-table thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

/* Optional sticky columns for risk tables */
@media (min-width: 900px) {

  .table-wrap table.risk-table th.sticky-col,
  .table-wrap table.risk-table td.sticky-col {
    position: sticky;
    left: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.86);
  }

  .table-wrap table.risk-table th.sticky-col-2,
  .table-wrap table.risk-table td.sticky-col-2 {
    position: sticky;
    left: 70px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.86);
  }
}

/* ==========================================================
   About Page (light, executive, readable)
   ========================================================== */
.about-hero {
  margin-top: 40px;
}

.about-hero-card {
  background:
    radial-gradient(900px 280px at 15% 10%, rgba(255, 202, 212, 0.22), transparent 60%),
    radial-gradient(900px 280px at 85% 20%, rgba(244, 172, 183, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(157, 129, 137, 0.22);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* layout */
.about-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 36px;
}

/* photo */
.about-hero-left {
  position: relative;
}

.about-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 90, 114, 0.45), rgba(157, 129, 137, 0.45));
  filter: blur(14px);
  opacity: 0.55;
  z-index: 0;
}

.about-photo {
  position: relative;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(157, 129, 137, 0.16);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

/* bubbles */
.about-bubbles {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px;
  margin-left: auto;
}

@keyframes bubbleGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.about-bubble {
  position: relative;
  isolation: isolate;

  padding: 14px 18px;
  border-radius: 16px;
  min-width: 150px;

  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(157, 129, 137, 0.22);

  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);

  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* animated gradient outline */
.about-bubble::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(120deg,
      rgba(198, 90, 114, 0.55),
      rgba(157, 129, 137, 0.55),
      rgba(244, 172, 183, 0.55),
      rgba(198, 90, 114, 0.55));
  background-size: 300% 300%;
  animation: bubbleGlow 6s ease-in-out infinite;

  z-index: -1;
  opacity: 0.70;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(500px 160px at 20% 10%, rgba(255, 255, 255, 0.75), transparent 55%);
  z-index: -1;
  opacity: 0.85;
}

.about-bubble:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(157, 129, 137, 0.30);
}

.bubble-title {
  font-weight: 850;
  font-size: 14px;
  color: rgba(43, 35, 38, 0.96);
}

.bubble-sub {
  font-size: 12px;
  color: rgba(43, 35, 38, 0.62);
  margin-top: 4px;
}

/* right content */
.about-hero-right {
  margin-top: 10px;
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 8px;
  color: rgba(43, 35, 38, 0.98);
}

.about-role {
  font-size: 14px;
  font-weight: 650;
  color: rgba(43, 35, 38, 0.62);
  margin-bottom: 16px;
}

.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
  color: rgba(43, 35, 38, 0.62);
}

.about-contact-link {
  color: var(--link);
  font-weight: 650;
}

.about-contact-link:hover {
  color: var(--link-hover);
}

.about-contact-sep {
  opacity: 0.55;
}

.about-lead {
  font-size: 18px;
  font-weight: 650;
  color: rgba(43, 35, 38, 0.90);
  margin-bottom: 20px;
}

.about-copy p {
  margin-bottom: 16px;
  color: rgba(43, 35, 38, 0.82);
  line-height: 1.85;
}

/* highlight pills */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 229, 217, 0.88);
  border: 1px solid rgba(157, 129, 137, 0.22);
  font-size: 12px;
  font-weight: 750;
  color: rgba(43, 35, 38, 0.88);
}

/* credentials */
.about-credentials {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-credential-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(157, 129, 137, 0.22);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-credential-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(198, 90, 114, 0.70), rgba(157, 129, 137, 0.70), rgba(244, 172, 183, 0.60));
  opacity: 0.9;
}

.about-credential-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 14px;
  color: rgba(43, 35, 38, 0.96);
  position: relative;
  padding-left: 38px;
}

.about-credential-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 172, 183, 0.70), rgba(157, 129, 137, 0.65));
  box-shadow: 0 8px 22px rgba(30, 20, 24, 0.12);
}

.about-credential-block h3::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 900;
  color: rgba(43, 35, 38, 0.92);
}

.about-credential-block:nth-child(1) h3::after {
  content: "✓";
}

.about-credential-block:nth-child(2) h3::after {
  content: "◼";
  font-size: 10px;
  letter-spacing: -1px;
}

.credential-item {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(157, 129, 137, 0.18);
  margin-bottom: 12px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.credential-item:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 90, 114, 0.22);
  background: rgba(255, 202, 212, 0.20);
}

.credential-title {
  font-weight: 850;
  font-size: 13.5px;
  color: rgba(43, 35, 38, 0.94);
  line-height: 1.35;
}

.credential-meta {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(43, 35, 38, 0.62);
}

/* secondary sections */
.about-sections {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-section {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(157, 129, 137, 0.20);
  box-shadow: var(--shadow-sm);
}

.about-section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(43, 35, 38, 0.96);
}

.about-section p {
  font-size: 14px;
  color: rgba(43, 35, 38, 0.70);
}

/* ==========================================================
   Footer
   ========================================================== */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 34px;
  font-size: 14px;
  color: rgba(43, 35, 38, 0.62);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px) {
  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-bubbles {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 0 0;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .bucket-card {
    flex-direction: column;
  }

  .bucket-image {
    width: 100%;
    height: 190px;
    border-right: none;
    border-bottom: 1px solid rgba(157, 129, 137, 0.14);
  }

  .bucket-content {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  main {
    padding: 28px 12px 42px;
  }

  .pack-grid {
    grid-template-columns: 1fr;
  }

  .post {
    margin: 34px 10px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .post h2 {
    margin-top: 34px;
  }
}

/* ==========================================================
   Reduced motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pack-tile::before {
    display: none !important;
  }

  .btn-primary,
  .btn-secondary {
    transition: none !important;
  }

  .series-badge::after {
    animation: none !important;
    display: none;
  }

  .about-bubble::before {
    animation: none !important;
  }
}