/* ==========================================================================
   Danucultural Institute Limited — danulearning.com
   Shared design system. Hand-ported from the Danu Tailwind design
   (Outfit/Inter, magenta #fc0254, slate-50 light surface, 60px grid).
   ========================================================================== */

:root {
  --bg: #f8fafc;            /* slate-50 */
  --fg: #0f172a;            /* slate-900 */
  --magenta: #fc0254;
  --magenta-dark: #d00244;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --white: #ffffff;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", "Inter", system-ui, sans-serif;
  --shadow-card: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 8px 32px -4px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 16px 40px -12px rgba(252, 2, 84, 0.25);
  --maxw: 64rem;     /* container for section content */
  --maxw-wide: 80rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Faint 60px grid backdrop, fixed behind all content */
.grid-bg-light {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
}

.page { position: relative; z-index: 1; }

/* Magenta-tinted scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: rgba(252, 2, 84, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(252, 2, 84, 0.6); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding-inline: 1rem;
}

.section {
  border-top: 1px solid var(--slate-200);
  padding-block: 3rem;
}
@media (min-width: 768px) { .section { padding-block: 4rem; } }

.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section__inner--narrow { max-width: 48rem; }

.eyebrow-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 1rem;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--fg);
  overflow-wrap: break-word;
}
.h-hero { font-size: clamp(2.25rem, 6vw, 3.75rem); line-height: 0.95; }
.h-section { font-size: clamp(1.875rem, 4.5vw, 3rem); }
.h-box { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.accent { color: var(--magenta); }

p { margin: 0 0 0.75rem; }
.lead { font-size: clamp(1rem, 1.6vw, 1.125rem); color: var(--slate-700); line-height: 1.7; }
.muted { color: var(--slate-600); }
.fine { font-size: 0.8rem; color: var(--slate-500); line-height: 1.6; }
.strong { font-weight: 700; }
em { font-style: italic; }

.stack > * + * { margin-top: 0.75rem; }

/* ---------- Pill badge ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(100, 116, 139, 0.10);
  border: 1px solid var(--slate-300);
  max-width: 100%;
}
.pill--magenta {
  background: rgba(252, 2, 84, 0.10);
  border-color: rgba(252, 2, 84, 0.30);
}
.pill__text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-700);
}
.pill--magenta .pill__text { color: var(--magenta); }
.pill__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: var(--magenta);
  flex-shrink: 0;
  animation: pulse-soft 2s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  transition: background-color .15s ease, transform .15s ease;
}
.btn--primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: var(--shadow-cta);
  filter: drop-shadow(0 0 15px rgba(252, 2, 84, 0.35));
}
.btn--primary:hover { background: var(--magenta-dark); transform: scale(1.02); }
.btn__arrow { font-size: 1rem; line-height: 1; }

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .cta-row { flex-direction: row; align-items: center; }
}
.cta-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { text-decoration: none; display: block; min-width: 0; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  color: var(--magenta);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.brand__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0.15rem 0 0;
}
.site-nav { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.site-nav a {
  padding: 0.5rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-700);
  text-decoration: none;
  transition: color .15s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--magenta); }
.site-nav .nav-cta {
  background: var(--magenta);
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem 0.9rem;
}
.site-nav .nav-cta:hover { background: var(--magenta-dark); color: #fff; }
@media (max-width: 560px) {
  .site-nav .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-block: 3.5rem; }
@media (min-width: 768px) { .hero { padding-block: 5rem; } }
.hero__inner { max-width: var(--maxw); margin: 0 auto; }
.hero .pill { margin-bottom: 1.5rem; }
.hero .h-hero { margin: 0 0 1.5rem; }
.hero__subhead { max-width: 42rem; margin-bottom: 2rem; }
.hero__ctasub { max-width: 42rem; margin-top: 1rem; }

/* Hero founder photo — above the fold on mobile; right column on desktop */
.hero__media {
  margin-top: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero__photo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  object-fit: cover;
}
.hero__caption { margin: 0; text-align: center; line-height: 1.3; }
.hero__caption-name {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
}
.hero__caption-title {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
}
@media (min-width: 980px) {
  .hero__inner {
    max-width: var(--maxw-wide);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    align-items: center;
  }
  .hero__content { order: 1; }
  .hero__media { order: 2; margin-bottom: 0; align-items: flex-end; }
  .hero__media .hero__caption { text-align: right; }
  .hero__photo { max-width: 440px; }
}

/* ---------- Stat cards / tiles ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
.stat-card__metric {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: var(--magenta);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.stat-card__label { font-size: 0.75rem; color: var(--slate-600); line-height: 1.35; margin: 0; }

/* Inline proof tiles (Who I am) */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
.proof-tile {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.proof-tile__metric {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--magenta);
  flex-shrink: 0;
}
.proof-tile__label { font-size: 0.85rem; color: var(--slate-700); line-height: 1.35; }

/* ---------- Cards / pillars ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: rgba(252, 2, 84, 0.3); box-shadow: var(--shadow-card-hover); }
.card__head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.card__icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: rgba(252, 2, 84, 0.15);
  color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.card__kicker {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-500); margin: 0 0 0.25rem;
}
.card__title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.125rem;
  color: var(--fg); line-height: 1.2; margin: 0;
}
.card__tagline { font-size: 0.85rem; color: var(--slate-600); margin: 0.25rem 0 0; }
.card__body { font-size: 0.875rem; color: var(--slate-700); line-height: 1.6; margin: 0 0 0.75rem; }
.card__note { font-size: 0.875rem; color: var(--slate-800); font-weight: 600; line-height: 1.6; margin: 0; }
.card ul.bullets { list-style: none; margin: 0; padding: 0 0 0 3.5rem; }
.card ul.bullets li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--slate-700); margin-top: 0.5rem;
}
.card ul.bullets li::before {
  content: ""; flex-shrink: 0; width: 0.4rem; height: 0.4rem;
  border-radius: 9999px; background: var(--magenta); margin-top: 0.5rem;
}

/* ---------- Timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 1.5rem; }
.timeline__row {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) { .timeline__row { flex-direction: row; gap: 1.5rem; } }
.timeline__when { flex-shrink: 0; }
@media (min-width: 768px) { .timeline__when { width: 12rem; } }
.timeline__window {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--magenta); margin: 0 0 0.25rem;
}
.timeline__title { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; color: var(--fg); margin: 0; line-height: 1.2; }
.timeline__body { font-size: 0.95rem; color: var(--slate-700); line-height: 1.6; margin: 0; flex: 1; }

/* ---------- Highlight boxes (guarantee / pricing) ---------- */
.box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
@media (min-width: 640px) { .box { padding: 2rem; } }
.box--guarantee { border: 2px solid rgba(252, 2, 84, 0.3); }
.box .pill { margin-bottom: 1.25rem; }

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 640px) { .price-list { grid-template-columns: repeat(2, 1fr); } }
.price-list dt {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-500); margin: 0 0 0.25rem;
}
.price-list dd { font-size: 1.05rem; color: var(--fg); font-weight: 600; margin: 0; line-height: 1.3; }
.guarantee-sub { border-top: 1px solid var(--slate-200); padding-top: 1.25rem; margin-top: 0.25rem; }

/* ---------- Who this is for ---------- */
.forfor-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .forfor-grid { grid-template-columns: repeat(2, 1fr); } }
.forfor-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 1rem; padding: 1.5rem; }
.forfor-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 1rem;
}
.forfor-card--for h3 { color: var(--magenta); }
.forfor-card--not h3 { color: var(--slate-500); }
.forfor-card ul { list-style: none; margin: 0; padding: 0; }
.forfor-card li { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.65rem; font-size: 0.9rem; line-height: 1.5; }
.forfor-card--for li { color: var(--slate-700); }
.forfor-card--not li { color: var(--slate-600); }
.mark { flex-shrink: 0; font-weight: 800; line-height: 1.4; }
.mark--yes { color: var(--magenta); }
.mark--no { color: var(--slate-400); }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  font-size: 0.95rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: #f8fafc; }
.faq summary .chev { color: var(--magenta); transition: transform .2s ease; flex-shrink: 0; font-size: 1.1rem; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq__answer { padding: 0 1.25rem 1.25rem; }
.faq__answer p { font-size: 0.9rem; color: var(--slate-700); line-height: 1.7; margin: 0; }

/* ---------- Forms ---------- */
.form-section .box { max-width: 40rem; margin: 0 auto; }
.field { margin-bottom: 1rem; }
.field label.field__label {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate-500); margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: 0.5rem;
  background: #f8fafc;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 2px rgba(252, 2, 84, 0.25);
}
.field textarea { resize: vertical; min-height: 5rem; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0 0.5rem;
}
.consent input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1.05rem; height: 1.05rem;
  accent-color: var(--magenta);
  flex-shrink: 0;
}
.consent label { font-size: 0.8rem; color: var(--slate-700); line-height: 1.5; }
.consent-help { font-size: 0.75rem; color: var(--slate-500); line-height: 1.6; margin: 0.5rem 0 1rem; }
.consent-help a { color: var(--magenta); text-decoration: underline; }
.form-legal-links {
  font-size: 0.75rem; color: var(--slate-500); margin-top: 0.75rem;
}
.form-legal-links a { color: var(--magenta); text-decoration: underline; }
.form-status { font-size: 0.85rem; color: var(--magenta); margin-top: 0.75rem; min-height: 1.2rem; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
}
.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.4);
}
.modal__bar { height: 0.4rem; background: linear-gradient(to right, var(--magenta), #38bdf8, var(--magenta)); }
.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--slate-200);
}
.modal__title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0; }
.modal__subtitle { font-size: 0.8rem; color: var(--slate-500); margin: 0.35rem 0 0; }
.modal__close {
  border: none; background: transparent; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--slate-400); padding: 0.25rem;
  border-radius: 0.5rem;
}
.modal__close:hover { color: var(--fg); background: rgba(100,116,139,0.12); }
.modal__body { padding: 1.5rem; }
.booking-embed {
  border: 1px dashed var(--slate-300);
  border-radius: 0.75rem;
  background: #f8fafc;
  padding: 1.5rem;
  text-align: center;
  color: var(--slate-500);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.booking-live { margin-bottom: 1rem; }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 48rem; margin: 0 auto; }
.prose h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.875rem,4vw,2.5rem); text-transform: uppercase; letter-spacing: -0.02em; margin: 0 0 0.5rem; }
.prose h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin: 2rem 0 0.5rem; color: var(--fg); }
.prose h3 { font-weight: 700; font-size: 1rem; margin: 1.25rem 0 0.35rem; }
.prose p, .prose li { color: var(--slate-700); line-height: 1.7; font-size: 0.95rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.35rem; }
.prose a { color: var(--magenta); text-decoration: underline; }
.prose .updated { font-size: 0.8rem; color: var(--slate-500); }
.prose .verbatim {
  border-left: 3px solid var(--magenta);
  background: rgba(252, 2, 84, 0.05);
  padding: 0.85rem 1rem;
  margin: 0.75rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.contact-details { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-details li { font-size: 1rem; color: var(--slate-700); margin-bottom: 0.5rem; }
.contact-details a { color: var(--magenta); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--slate-200);
  margin-top: 1rem;
  padding-block: 2.5rem;
}
.site-footer__inner { max-width: var(--maxw-wide); margin: 0 auto; padding-inline: 1rem; text-align: center; }
.site-footer p { margin: 0.25rem 0; }
.footer-name { font-weight: 700; color: var(--fg); }
.footer-line { font-size: 0.85rem; color: var(--slate-600); }
.footer-contact a { color: var(--slate-700); text-decoration: none; }
.footer-contact a:hover { color: var(--magenta); }
.footer-links { margin-top: 0.75rem; }
.footer-links a { color: var(--magenta); text-decoration: none; font-weight: 600; font-size: 0.85rem; margin: 0 0.5rem; }
.footer-links a:hover { text-decoration: underline; }
.footer-legalname {
  margin-top: 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-400);
}
.footer-copy { margin-top: 0.5rem; font-size: 0.75rem; color: var(--slate-500); }

/* ---------- Founder photos ---------- */
/* Small circular avatar + name/title (hero, contact trust line) */
.founder-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  box-shadow: var(--shadow-card);
}
.founder-chip img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  object-position: 50% 18%;
  border: 2px solid var(--magenta);
  background: #eef2f7;
}
.founder-chip__name { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--fg); line-height: 1.1; }
.founder-chip__title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); margin-top: 0.15rem; }

/* Portrait figure beside the founder bio */
.founder-figure {
  float: right;
  width: 15rem;
  max-width: 42%;
  margin: 0 0 1rem 1.5rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.founder-figure img { width: 100%; height: auto; display: block; }
.founder-figure figcaption {
  padding: 0.6rem 0.85rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.78rem;
}
.founder-figure .cap-name { font-family: var(--font-display); font-weight: 800; color: var(--fg); }
.founder-figure .cap-title { color: var(--magenta); font-weight: 700; }
@media (max-width: 560px) {
  .founder-figure { float: none; width: 100%; max-width: 18rem; margin: 0 auto 1.5rem; }
}

/* Wider candid photo (About page) */
.founder-photo {
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 1.5rem 0;
  background: var(--white);
}
.founder-photo img { width: 100%; height: auto; display: block; }
.founder-photo figcaption {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.8rem;
  color: var(--slate-600);
}
.founder-photo .cap-name { font-family: var(--font-display); font-weight: 800; color: var(--fg); }
.founder-photo .cap-title { color: var(--magenta); font-weight: 700; }

/* utility */
.center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.italic { font-style: italic; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
