:root {
  --navy: #062d5d;
  --ink: #09294f;
  --gold: #a8752a;
  --cream: #fbf1e6;
  --paper: #fffaf3;
  --soft-line: rgba(118, 83, 44, .1);
  --shadow: 0 14px 34px rgba(55, 36, 18, .055);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.82), transparent 30rem),
    linear-gradient(180deg, #fff8ef 0%, #fbf1e6 48%, #fff8ef 100%);
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.founder-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: min(1536px, 100%);
  min-height: 112px;
  margin: 0 auto;
}

.founder-header::before {
  position: absolute;
  inset: 14px -22px 16px;
  z-index: -1;
  border-radius: 999px;
  background: transparent;
  filter: blur(12px);
  content: "";
}

.brand img {
  width: 270px;
  mix-blend-mode: multiply;
  opacity: 0;
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  color: transparent;
  font-size: 15.5px;
  font-weight: 900;
}

.primary-nav a,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav a::after,
.dropdown-toggle::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  content: "";
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after,
.dropdown-toggle:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  display: grid;
  gap: 3px;
  width: 290px;
  padding: 12px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255,250,243,.98);
  color: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  min-height: auto;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.25;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(229,189,120,.17);
}

.social-link {
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: transparent !important;
  font: 900 19px/1 Georgia, serif;
}

.social-link::after { display: none; }

.instagram {
  border: 0;
  background: transparent;
}

.instagram::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  opacity: 0;
  content: "";
}

@media (min-width: 1101px) {
  .primary-nav {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: block;
    height: 44px;
    pointer-events: none;
  }

  .primary-nav > a,
  .primary-nav > .nav-dropdown {
    position: absolute;
    top: 0;
    pointer-events: auto;
  }

  .primary-nav a,
  .dropdown-toggle {
    justify-content: center;
    min-height: 34px;
    padding: 0 0 8px;
  }

  .primary-nav a::after,
  .dropdown-toggle::after {
    left: 50%;
    right: auto;
    width: var(--nav-underline-width, 58px);
    transform: translateX(-50%) scaleX(0);
  }

  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after,
  .primary-nav a[aria-current="page"]::after,
  .dropdown-toggle:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .primary-nav > a[href="index.html"] {
    left: 26.25%;
    width: 5%;
    --nav-underline-width: 44px;
  }

  .primary-nav > a[href="about.html"] {
    left: 33.35%;
    width: 6.6%;
    --nav-underline-width: 68px;
  }

  .primary-nav > .nav-dropdown {
    left: 41.1%;
    width: 8.8%;
    --nav-underline-width: 82px;
  }

  .dropdown-toggle {
    width: 100%;
  }

  .primary-nav > a[href="community.html"] {
    left: 51.55%;
    width: 8.8%;
    --nav-underline-width: 86px;
  }

  .primary-nav > a[href="founders-corner.html"] {
    left: 61.75%;
    width: 13.2%;
    --nav-underline-width: 126px;
  }

  .primary-nav > a[href="contact.html"] {
    left: 73.45%;
    width: 5.4%;
    --nav-underline-width: 54px;
  }

  .primary-nav > a[href*="facebook.com"] {
    left: 83.75%;
  }

  .primary-nav > a[href*="instagram.com"] {
    left: 87.65%;
  }

  .primary-nav > a[aria-current="page"]::after,
  .primary-nav > a[aria-current="page"]:hover::after,
  .primary-nav > a[aria-current="page"]:focus-visible::after {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6,45,93,.18);
  border-radius: 50%;
  background: rgba(255,250,243,.9);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: clamp(376px, 27.35vw, 420px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px 24px 36px;
  text-align: center;
  background:
    url("assets/founders-html/founders-corner-desktop-hero-cropped.webp") center top / 100% auto no-repeat,
    linear-gradient(90deg, #f5e6d6, #fff4e7 52%, #f4e0cb);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-top: 18px;
  opacity: 0;
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.35rem);
}

.hero-copy p {
  max-width: 520px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(330px, 70vw);
  margin: 20px auto 0;
}

.leaf-divider::before,
.leaf-divider::after,
.founder-footer span {
  flex: 1;
  height: 1px;
  background: rgba(168,117,42,.62);
  content: "";
}

.leaf-divider span {
  width: 28px;
  height: 18px;
  background: url("assets/mockup-icons/motto-leaf-right.png") center / contain no-repeat;
}

.section-shell {
  width: min(1120px, calc(100% - 44px));
  margin: 28px auto 0;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: stretch;
}

.portrait {
  width: 100%;
  height: 100%;
  min-height: 342px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(55, 36, 18, .055);
}

.note-card,
.space-card,
.journal-card,
.development-card,
.community-band {
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.42), transparent 18rem),
    linear-gradient(135deg, rgba(255,250,243,.52), rgba(251,241,230,.3));
  box-shadow: 0 8px 22px rgba(55, 36, 18, .03);
}

.note-card {
  padding: clamp(26px, 4vw, 44px);
}

.note-card h2,
.space-card h2,
.development-card h2 {
  position: relative;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.note-card h2::after,
.development-card h2::after {
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
  content: "";
}

.note-card p {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.signature {
  color: var(--navy);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 4vw, 2.9rem) !important;
  line-height: 1 !important;
}

.signature span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .68em;
}

.role {
  margin-top: 6px !important;
  color: #9a621d;
  font-weight: 700;
}

.space-card {
  padding: 28px 30px 24px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.space-grid article {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
}

.space-grid article + article {
  border-left: 1px solid rgba(168,117,42,.07);
}

.space-grid img,
.circle-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.circle-icon {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6,45,93,.11);
  border-radius: 50%;
  color: var(--navy);
}

.pen-icon::before {
  width: 23px;
  height: 3px;
  transform: rotate(-42deg);
  border-radius: 999px;
  background: currentColor;
  box-shadow: 8px 0 0 -1px currentColor;
  content: "";
}

.globe-icon::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.globe-icon::after {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -8px 0 -1px currentColor, 0 8px 0 -1px currentColor;
  content: "";
}

.space-grid h3 {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.35;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(290px, .95fr) minmax(0, .9fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
}

.journal-card > img {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
}

.journal-card article {
  padding: 16px 18px 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.journal-card h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
}

.journal-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 7px;
  background: linear-gradient(180deg, #063568, #052b59);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(6,45,93,.18);
}

.development-card {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr);
  gap: 44px;
  padding: 28px 30px;
}

.development-card p {
  max-width: 430px;
  margin: 18px 0 0;
}

.development-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.development-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
}

.development-card li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.development-card li {
  grid-template-columns: 12px minmax(0, 1fr) max-content;
}

.development-card li span {
  border-bottom: 1px solid rgba(118,83,44,.065);
  padding-bottom: 4px;
}

.development-card strong {
  color: #9a621d;
  font-size: .95rem;
}

.community-band {
  display: grid;
  grid-template-columns: 96px 1fr max-content;
  gap: 22px;
  align-items: center;
  padding: 24px 36px;
  background:
    linear-gradient(90deg, rgba(233,238,246,.64), rgba(255,250,243,.46)),
    rgba(255,250,243,.42);
}

.community-band img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.community-band h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.community-band p {
  margin: 7px 0 0;
}

.community-band .button {
  margin: 0;
  min-width: 220px;
}

.founder-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 44px));
  margin: 28px auto 0;
  padding: 0 0 18px;
  color: var(--navy);
  font-size: .9rem;
  text-align: center;
}

.founder-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .founder-header {
    width: min(100%, calc(100% - 24px));
    min-height: 82px;
  }

  .brand img {
    width: clamp(156px, 28vw, 210px);
    opacity: .96;
  }

  .menu-toggle { display: block; }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    padding: 16px;
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background: rgba(255,250,243,.98);
    color: var(--navy);
    box-shadow: var(--shadow);
  }

  .instagram::before {
    opacity: 1;
  }

  .primary-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .primary-nav a,
  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 4px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .social-link {
    width: 42px;
    background: var(--navy);
    color: #fff !important;
  }

  .hero {
    min-height: clamp(315px, 36.7vw, 376px);
    padding-top: 112px;
    background:
      url("assets/founders-html/founders-hero-portrait.png") center top / cover no-repeat,
      linear-gradient(90deg, #f5e6d6, #fff4e7 52%, #f4e0cb);
  }

  .hero-copy {
    opacity: 0;
    pointer-events: none;
  }

  .founder-note,
  .journal-card,
  .development-card {
    grid-template-columns: 1fr;
  }

  .portrait {
    height: auto;
    min-height: 0;
  }

  .space-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .space-grid article:nth-child(4) {
    border-left: 0;
  }

  .community-band {
    grid-template-columns: 72px 1fr;
  }

  .community-band .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .founder-header {
    left: 0;
    right: 0;
    width: min(100%, calc(100% - 24px));
    min-height: 82px;
    margin: 0 auto;
  }

  .brand img {
    width: clamp(156px, 25vw, 210px);
    opacity: 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    height: auto;
    padding: 16px;
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background: rgba(255,250,243,.98);
    color: var(--navy);
    box-shadow: var(--shadow);
    pointer-events: auto;
  }

  .primary-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .primary-nav a,
  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 8px 2px;
  }

  .primary-nav a::after,
  .dropdown-toggle::after {
    left: 0;
    right: 0;
    width: auto;
    transform: scaleX(0);
  }

  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after,
  .primary-nav a[aria-current="page"]::after,
  .dropdown-toggle:hover::after {
    transform: scaleX(1);
  }

  .social-link {
    width: 42px;
    background: var(--navy);
    color: #fff !important;
  }

  .instagram {
    border: 0;
  }

  .instagram::before {
    opacity: 1;
    border-color: #fff;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 4px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero {
    min-height: clamp(315px, 30vw, 376px);
    padding-top: 112px;
    background:
      url("assets/founders-html/founders-hero-tablet-clean.png") center top / cover no-repeat,
      linear-gradient(90deg, #f5e6d6, #fff4e7 52%, #f4e0cb);
  }
}

@media (max-width: 640px) {
  .founder-header {
    min-height: 72px;
  }

  .brand img {
    width: 152px;
    opacity: 0;
  }

  .primary-nav {
    top: 74px;
  }

  .hero {
    min-height: clamp(108px, 28vw, 128px);
    padding: 0;
    background:
      url("assets/founders-html/founders-hero-tablet-clean.png") center top / 100% auto no-repeat,
      linear-gradient(90deg, #f5e6d6, #fff4e7 52%, #f4e0cb);
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    display: none;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-copy p {
    font-size: .98rem;
  }

  .section-shell,
  .founder-footer {
    width: min(100% - 28px, 1120px);
    margin-top: 10px;
  }

  .note-card,
  .space-card,
  .development-card,
  .community-band {
    padding: 22px 18px;
  }

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

  .space-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--soft-line);
    padding-top: 18px;
  }

  .journal-card {
    padding: 14px;
  }

  .journal-card > img {
    height: 190px;
  }

  .development-card li {
    grid-template-columns: 10px 1fr;
  }

  .development-card strong {
    grid-column: 2;
    margin-top: -7px;
  }

  .community-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-band img {
    margin: 0 auto;
  }

  .community-band .button {
    grid-column: auto;
    justify-self: stretch;
    min-width: 0;
  }

  .founder-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-footer span {
    display: none;
  }
}


/* Founder’s Corner Between Two Worlds update */
.themes-grid article { min-height: 112px; }

.series-card {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.58), transparent 18rem),
    linear-gradient(135deg, rgba(255,250,243,.64), rgba(251,241,230,.34));
  box-shadow: 0 8px 22px rgba(55, 36, 18, .035);
}

.series-card h2 {
  position: relative;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.series-card h2::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 15px;
  background: var(--gold);
  content: "";
}

.series-intro p:not(.eyebrow) {
  max-width: 460px;
  margin: 18px 0 0;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.series-item {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(168,117,42,.14);
  border-radius: 12px;
  background: rgba(255,250,243,.64);
}

.series-number {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.series-item h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.series-item p:not(.series-number) {
  margin: 14px 0 0;
}

.series-item .button,
.series-item .coming-soon {
  margin-top: auto;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: max-content;
  padding: 0 18px;
  border: 1px solid rgba(168,117,42,.28);
  border-radius: 7px;
  color: #9a621d;
  font-weight: 900;
  background: rgba(251,241,230,.46);
}

.reflection-library li {
  grid-template-columns: 12px minmax(0,1fr) max-content;
}

@media (max-width: 1100px) {
  .series-card,
  .series-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .series-card { padding: 22px 18px; }
  .series-item { min-height: 0; padding: 20px; }
}


/* Hero tone refinement: softer, more inviting Founder’s Corner intro */
.hero::before {
  display: block !important;
  position: absolute;
  left: 50%;
  top: 53%;
  width: min(760px, 76vw);
  height: min(250px, 46vw);
  transform: translate(-50%, -46%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 250, 243, .86) 0%, rgba(255, 250, 243, .68) 52%, rgba(255, 250, 243, 0) 76%);
  filter: blur(.2px);
  content: "";
}

.hero-copy {
  max-width: 780px;
  margin-top: 16px;
  opacity: 1 !important;
  pointer-events: auto !important;
  text-shadow: 0 2px 18px rgba(255, 250, 243, .72);
}

.hero-kicker {
  margin: 0 0 8px !important;
  color: var(--gold);
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.95rem, 1.2vw, 1.12rem) !important;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 5.45vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}

.hero-copy .leaf-divider {
  margin-top: 16px;
}

.hero-copy p:not(.hero-kicker) {
  max-width: 660px;
  margin-top: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
}

@media (max-width: 1180px) and (min-width: 641px) {
  .hero::before {
    width: min(720px, 82vw);
    height: min(235px, 42vw);
  }

  .hero-copy {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 6vw, 4.1rem);
  }

  .hero-copy p:not(.hero-kicker) {
    max-width: 590px;
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}


/* Founder’s Corner clean hero + soft portrait fix v4
   1) Removes the new text/glow overlay so the original v1 hero image shows cleanly.
   2) Softens the founder portrait by overriding the original hard-corner styling. */

/* Remove any visible hero overlay/text panel that was added after v1 */
.hero-copy,
.hero-copy::before,
.hero-copy::after {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  background: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Keep the original hero image presentation, without any extra overlay layers */
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Founder portrait: no hard frame, warmer rounded photo feel */
.founder-note .portrait,
img.portrait {
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  outline: none !important;
}

/* If the portrait itself is inside a framed container, soften/remove that too */
.founder-note,
.founder-note .portrait-wrap,
.founder-note figure {
  border-color: transparent !important;
}

/* Mobile portrait refinement */
@media (max-width: 640px) {
  .founder-note .portrait,
  img.portrait {
    border-radius: 18px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07) !important;
  }
}





/* Founder’s Corner v2 storytelling chapters */
.founders-v2 {
  margin-top: 54px;
}

.journey-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.journey-heading p:not(.eyebrow) {
  margin: 10px auto 0;
  color: rgba(25, 51, 82, .78);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.chapter-story {
  overflow: hidden;
  border: 1px solid rgba(183, 137, 70, .17);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .7), transparent 18rem),
    linear-gradient(145deg, rgba(255, 251, 244, .96), rgba(247, 235, 220, .56));
  box-shadow: 0 18px 42px rgba(55, 36, 18, .06);
}

.chapter-cinematic-banner {
  position: relative;
  min-height: clamp(250px, 32vw, 410px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 45, 72, .72), rgba(255, 248, 236, .16) 48%, rgba(31, 69, 96, .72)),
    url("assets/founders-html/founders-hero-top.png") center / cover no-repeat;
}

.chapter-cinematic-banner::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 231, 174, .34), transparent 18rem),
    radial-gradient(circle at 74% 42%, rgba(255, 255, 255, .24), transparent 18rem),
    linear-gradient(180deg, rgba(18, 45, 72, .08), rgba(255, 248, 236, .4));
  content: "";
}

.chapter-cinematic-banner::after {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: min(460px, 56vw);
  height: 92px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255, 248, 236, .42), rgba(255, 248, 236, .12) 54%, transparent 72%);
  filter: blur(4px);
  content: "";
}

.banner-haze {
  position: absolute;
  inset: auto 8% 0;
  height: 44%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 236, .28));
}

.banner-symbols {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(680px, calc(100% - 48px));
  transform: translateX(-50%);
  color: rgba(255, 248, 236, .94);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.symbol-korea,
.symbol-england {
  padding: 10px 16px;
  border: 1px solid rgba(255, 248, 236, .42);
  border-radius: 999px;
  background: rgba(16, 40, 66, .2);
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(2px);
}

.symbol-path {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,248,236,.18), rgba(255,248,236,.9), rgba(255,248,236,.18));
}

.chapter-opening {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 68px) clamp(24px, 5vw, 70px) 0;
  text-align: center;
}

.chapter-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.chapter-opening h3 {
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 1.02;
}

.chapter-tagline {
  margin: 13px auto 0;
  color: rgba(25, 51, 82, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
}

.chapter-rule {
  width: min(260px, 48vw);
  height: 1px;
  margin: 24px auto;
  background: linear-gradient(90deg, transparent, rgba(183, 137, 70, .58), transparent);
}

.chapter-opening p:not(.chapter-label):not(.chapter-tagline) {
  max-width: 860px;
  margin: 12px auto 0;
  color: rgba(25, 51, 82, .78);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.74;
}

.featured-reflection-card {
  width: min(900px, calc(100% - 48px));
  margin: clamp(34px, 5vw, 58px) auto clamp(38px, 5vw, 64px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(183, 137, 70, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .64), transparent 15rem),
    rgba(255, 250, 243, .82);
  box-shadow: 0 12px 30px rgba(55, 36, 18, .045);
  text-align: center;
}

.reflection-kicker {
  margin: 0;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.featured-reflection-card h4 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.3vw, 2.55rem);
  line-height: 1.08;
}

.reflection-date {
  margin: 8px 0 0;
  color: rgba(25, 51, 82, .62);
  font-size: .96rem;
}

.featured-reflection-card blockquote {
  margin: 26px auto 28px;
  color: rgba(25, 51, 82, .92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.35vw, 1.75rem);
  line-height: 1.5;
}

.featured-reflection-card blockquote span {
  display: block;
}

.timeline-section {
  margin-top: 40px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 251, 244, .62), rgba(247, 235, 220, .38));
}

.timeline-section > .eyebrow,
.timeline-section > h3 {
  text-align: center;
}

.timeline-section > h3 {
  margin-bottom: 30px;
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
}

.chapter-timeline {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.chapter-timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(183, 137, 70, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .44);
}

.chapter-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(183, 137, 70, .28);
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.chapter-timeline h4 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.chapter-timeline p {
  margin: 7px 0 0;
  color: rgba(25, 51, 82, .72);
  line-height: 1.55;
}

.chapter-timeline small {
  display: inline-block;
  margin-top: 10px;
  color: rgba(25, 51, 82, .58);
  font-style: italic;
}

@media (max-width: 640px) {
  .banner-symbols {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(330px, calc(100% - 32px));
    text-align: center;
  }

  .symbol-path {
    display: none;
  }

  .chapter-opening {
    text-align: left;
  }

  .chapter-rule {
    margin-left: 0;
  }

  .featured-reflection-card {
    width: min(100% - 32px, 900px);
    text-align: left;
  }

  .chapter-timeline article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .chapter-number {
    width: 46px;
    height: 46px;
    font-size: .96rem;
  }
}


/* Chapter One exact banner image integration v2.1 */
.chapter-cinematic-banner {
  min-height: clamp(310px, 34vw, 470px) !important;
  background:
    linear-gradient(180deg, rgba(12, 24, 40, .04), rgba(12, 24, 40, .08)),
    image-set(
      url("assets/founders/chapter-one-citizenship-banner.webp") type("image/webp"),
      url("assets/founders/chapter-one-citizenship-banner.png") type("image/png")
    ) center center / cover no-repeat !important;
}

/* Remove the previous CSS-generated labels/symbols from the banner. */
.chapter-cinematic-banner::before {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,248,236,.08)) !important;
}

.chapter-cinematic-banner::after,
.banner-haze,
.banner-symbols {
  display: none !important;
}

/* Since the uploaded banner already contains the chapter title, keep the content below calmer. */
.chapter-opening {
  margin-top: 10px;
}

.chapter-opening h3 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}


/* Chapter One banner reframed lower to show passports */
.chapter-cinematic-banner{
    background-position:center 68% !important;
}


/* Future chapter image showcase */
.image-chapter-showcase {
  margin-top: 44px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.68), transparent 18rem),
    linear-gradient(145deg, rgba(255, 251, 244, .72), rgba(247, 235, 220, .38));
}

.image-chapter-showcase > .eyebrow,
.image-chapter-showcase > h3 {
  text-align: center;
}

.image-chapter-showcase > h3 {
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  letter-spacing: .06em;
}

.next-chapter-preview {
  overflow: hidden;
  border: 1px solid rgba(183, 137, 70, .18);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(55, 36, 18, .08);
}

.next-chapter-preview img {
  display: block;
  width: 100%;
  height: clamp(250px, 32vw, 430px);
  object-fit: cover;
  object-position: center;
}

.chapter-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.chapter-image-grid article {
  overflow: hidden;
  border: 1px solid rgba(183, 137, 70, .16);
  border-radius: 20px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 10px 24px rgba(55, 36, 18, .055);
}

.chapter-image-grid img {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 310px);
  object-fit: cover;
  object-position: center;
}

.chapter-showcase-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px auto 0;
  color: rgba(25, 51, 82, .78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-style: italic;
  text-align: center;
}

.chapter-showcase-note::before,
.chapter-showcase-note::after {
  width: min(190px, 18vw);
  height: 1px;
  background: rgba(183, 137, 70, .5);
  content: "";
}

@media (max-width: 980px) {
  .chapter-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .chapter-image-grid {
    grid-template-columns: 1fr;
  }

  .next-chapter-preview img,
  .chapter-image-grid img {
    height: auto;
  }

  .chapter-showcase-note::before,
  .chapter-showcase-note::after {
    display: none;
  }
}


/* Future chapter image crop fix v3
   Show the full generated chapter images so chapter titles are not clipped. */
.next-chapter-preview,
.chapter-image-grid article {
  background: #f7f1e7;
}

.next-chapter-preview img,
.chapter-image-grid img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #f7f1e7;
}

/* Give the smaller chapter cards enough vertical room to display their top titles. */
.chapter-image-grid img {
  height: clamp(240px, 24vw, 340px) !important;
}


/* v13 navigation click-target fix
   The Founder’s Corner desktop header uses an image-based header with transparent
   link zones. These rules enlarge and stabilize the click zones so all buttons
   work, not only the Resources dropdown. */
@media (min-width: 1101px) {
  .founder-header {
    z-index: 9999 !important;
    pointer-events: auto !important;
  }

  .primary-nav {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 112px !important;
    pointer-events: none !important;
    z-index: 10000 !important;
  }

  .primary-nav > a,
  .primary-nav > .nav-dropdown {
    top: 20px !important;
    height: 70px !important;
    min-height: 70px !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
  }

  .primary-nav > a,
  .primary-nav > .nav-dropdown > .dropdown-toggle {
    align-items: center !important;
    justify-content: center !important;
  }

  .primary-nav > a[href="index.html"] {
    left: 23.8% !important;
    width: 8.2% !important;
  }

  .primary-nav > a[href="about.html"] {
    left: 31.5% !important;
    width: 9.2% !important;
  }

  .primary-nav > .nav-dropdown {
    left: 40.0% !important;
    width: 11.0% !important;
  }

  .primary-nav > a[href="community.html"] {
    left: 50.2% !important;
    width: 11.2% !important;
  }

  .primary-nav > a[href="founders-corner.html"] {
    left: 60.4% !important;
    width: 15.2% !important;
  }

  .primary-nav > a[href="contact.html"] {
    left: 74.0% !important;
    width: 8.2% !important;
  }

  .primary-nav > a[href*="facebook.com"] {
    left: 82.0% !important;
    width: 4.2% !important;
  }

  .primary-nav > a[href*="instagram.com"] {
    left: 86.2% !important;
    width: 4.5% !important;
  }

  .dropdown-menu {
    z-index: 10002 !important;
  }
}

/* Tablet/mobile: keep menu above page content and clickable. */
@media (max-width: 1100px) {
  .founder-header {
    z-index: 9999 !important;
  }

  .primary-nav {
    z-index: 10000 !important;
  }

  .primary-nav.is-open {
    display: grid !important;
  }
}


/* v18 LOCKED REAL NAVIGATION
   Replaces image/transparent click-zone nav behavior with normal visible HTML links.
   This is the safest Netlify-ready navigation approach. */

.founder-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 9999 !important;
  width: min(1180px, calc(100% - 32px)) !important;
  min-height: 78px !important;
  margin: 16px auto 0 !important;
  padding: 12px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  border: 1px solid rgba(183,137,70,.22) !important;
  border-radius: 999px !important;
  background: rgba(255,250,243,.96) !important;
  box-shadow: 0 12px 32px rgba(55,36,18,.08) !important;
  backdrop-filter: blur(6px);
}

.founder-header::before {
  display: none !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
}

.brand img {
  display: block !important;
  width: 215px !important;
  height: auto !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.primary-nav {
  position: static !important;
  inset: auto !important;
  height: auto !important;
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
  color: var(--navy, #15365a) !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  pointer-events: auto !important;
}

.primary-nav a,
.primary-nav .dropdown-toggle {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 8px 4px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--navy, #15365a) !important;
  font: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  white-space: nowrap !important;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .dropdown-toggle:hover,
.primary-nav .dropdown-toggle:focus-visible {
  color: var(--gold, #a8752a) !important;
}

.nav-dropdown {
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: auto !important;
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10000 !important;
  display: grid !important;
  gap: 4px !important;
  min-width: 290px !important;
  padding: 12px !important;
  border: 1px solid rgba(183,137,70,.22) !important;
  border-radius: 14px !important;
  background: rgba(255,250,243,.98) !important;
  box-shadow: 0 14px 34px rgba(55,36,18,.12) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dropdown-menu a {
  justify-content: flex-start !important;
  min-height: 34px !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  color: var(--navy, #15365a) !important;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(183,137,70,.12) !important;
}

.social-link {
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  border-radius: 999px !important;
  background: var(--navy, #15365a) !important;
  color: #fff8ec !important;
  font-weight: 800 !important;
}

.social-link.instagram::before {
  content: "◎";
}

/* Since header is now real and in document flow, reduce hero top padding */
.hero,
.reflection-hero-new,
.article-hero {
  margin-top: 0 !important;
}

.hero {
  padding-top: 42px !important;
}

.reflection-hero-new {
  padding-top: 0 !important;
}

/* Tablet/mobile real menu */
.menu-toggle {
  display: none !important;
  flex: 0 0 auto !important;
}

@media (max-width: 1100px) {
  .founder-header {
    border-radius: 24px !important;
    align-items: center !important;
  }

  .brand img {
    width: 190px !important;
  }

  .menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 10001 !important;
  }

  .primary-nav {
    display: none !important;
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    top: calc(100% + 10px) !important;
    z-index: 10000 !important;
    padding: 18px !important;
    border: 1px solid rgba(183,137,70,.22) !important;
    border-radius: 18px !important;
    background: rgba(255,250,243,.98) !important;
    box-shadow: 0 14px 34px rgba(55,36,18,.12) !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .primary-nav.is-open {
    display: grid !important;
  }

  .primary-nav a,
  .primary-nav .dropdown-toggle {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
  }

  .nav-dropdown {
    width: 100% !important;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-top: 6px !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
  }

  .nav-dropdown.is-open .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: grid !important;
  }
}

@media (max-width: 640px) {
  .founder-header {
    width: min(100% - 20px, 1180px) !important;
    margin-top: 10px !important;
    padding: 10px 12px !important;
  }

  .brand img {
    width: 165px !important;
  }
}

/* Disable previous invisible hotspot experiments if present */
.nav-hotspots,
.nav-hotspot {
  display: none !important;
}


/* =========================================================
   Founder’s Corner Desktop Nav Cleanup
   Desktop should show only the navigation baked into the hero image.
   This keeps the invisible click/routing layer active, but removes
   visible overlay text, hover underlines, and duplicate nav artifacts.
   Mobile hamburger behavior remains unchanged.
   ========================================================= */

@media (min-width: 1101px) {
  .founder-header {
    background: transparent !important;
    box-shadow: none !important;
  }

  .founder-header .brand img {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .primary-nav {
    color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .primary-nav > a,
  .primary-nav > .nav-dropdown > .dropdown-toggle {
    color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
  }

  .primary-nav > a::after,
  .primary-nav > .nav-dropdown > .dropdown-toggle::after {
    display: none !important;
    opacity: 0 !important;
    background: transparent !important;
  }

  .primary-nav > a:hover::after,
  .primary-nav > a:focus-visible::after,
  .primary-nav > a[aria-current="page"]::after,
  .dropdown-toggle:hover::after,
  .dropdown-toggle:focus-visible::after {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
  }

  .primary-nav > a[aria-label],
  .primary-nav > a.social-link,
  .primary-nav > a.social-link.instagram {
    color: transparent !important;
    background: transparent !important;
    border: 0 !important;
  }

  .primary-nav > a.social-link::before,
  .primary-nav > a.social-link::after,
  .primary-nav > a.social-link.instagram::before,
  .primary-nav > a.social-link.instagram::after {
    opacity: 0 !important;
    display: none !important;
  }

  /* Keep the Resources dropdown panel readable when opened */
  .primary-nav .dropdown-menu {
    color: var(--navy) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .primary-nav .dropdown-menu a {
    color: var(--navy) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    overflow: visible !important;
  }
}


/* =========================================================
   Founder’s Corner Hero Navigation Fix v2
   Desktop:
   - the hero image itself supplies the visible nav
   - this adds precise invisible hotspots over that nav
   - old overlay navigation is disabled on desktop
   - hero remains expanded to cover the nav area
   Mobile:
   - existing circular hamburger menu remains active
   ========================================================= */

@media (min-width: 1101px) {
  .founder-header {
    min-height: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .founder-header .brand,
  .founder-header .primary-nav,
  .founder-header .menu-toggle {
    display: none !important;
    pointer-events: none !important;
  }

  .hero {
    position: relative !important;
    margin-top: 0 !important;
    min-height: clamp(400px, 27.8vw, 430px) !important;
    padding: 0 !important;
    background-position: center top !important;
    background-size: 100% auto !important;
  }

  .founder-hero-hotspots {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
  }

  .founder-hero-hotspots .fh-hit {
    position: absolute;
    display: block;
    pointer-events: auto;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 999px;
    background: transparent;
  }

  .founder-hero-hotspots .fh-hit:focus-visible {
    outline: 3px solid rgba(189,143,76,.85);
    outline-offset: 2px;
  }

  /* Coordinates mapped to the baked-in desktop hero nav */
  .fh-home      { left: 26.2%; top: 10.0%; width: 5.2%;  height: 8.5%; }
  .fh-about     { left: 33.2%; top: 10.0%; width: 7.0%;  height: 8.5%; }
  .fh-resources { left: 41.8%; top: 10.0%; width: 8.8%;  height: 8.5%; }
  .fh-community { left: 52.8%; top: 10.0%; width: 8.3%;  height: 8.5%; }
  .fh-founders  { left: 61.7%; top: 10.0%; width: 13.6%; height: 8.5%; }
  .fh-contact   { left: 73.8%; top: 10.0%; width: 5.6%;  height: 8.5%; }
  .fh-facebook  { left: 83.9%; top: 8.7%;  width: 3.2%;  height: 9.5%; }
  .fh-instagram { left: 87.4%; top: 8.7%;  width: 3.2%;  height: 9.5%; }

  .hero-copy {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1100px) {
  .founder-hero-hotspots {
    display: none !important;
  }
}


/* =========================================================
   Founder’s Corner Embedded Resources Dropdown
   Adds a real desktop dropdown to the Resources hotspot
   while preserving the baked-in hero navigation look.
   ========================================================= */

@media (min-width: 1101px) {
  .fh-resources-zone {
    overflow: visible !important;
    text-indent: 0 !important;
  }

  .fh-resources-trigger {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 999px;
    text-indent: -9999px;
    overflow: hidden;
  }

  .fh-resources-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 292px;
    padding: 12px;
    border: 1px solid rgba(189,143,76,.32);
    border-radius: 14px;
    background: rgba(255,250,243,.97);
    box-shadow: 0 18px 42px rgba(16,39,68,.18);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    display: grid;
    gap: 4px;
    z-index: 40;
  }

  .fh-resources-zone:hover .fh-resources-menu,
  .fh-resources-zone:focus-within .fh-resources-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .fh-resources-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #102744;
    background: transparent;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .02em;
    text-indent: 0;
    overflow: visible;
  }

  .fh-resources-menu a:hover,
  .fh-resources-menu a:focus {
    background: rgba(189,143,76,.13);
    outline: none;
  }
}

@media (max-width: 1100px) {
  .fh-resources-menu {
    display: none !important;
  }
}

@media (min-width: 1101px) {
  .fh-resources-zone.is-open .fh-resources-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}


/* =========================================================
   Founder’s Corner Resources Dropdown Stability Fix
   Prevents dropdown from disappearing while moving cursor
   from the embedded Resources nav area into the menu.
   ========================================================= */

@media (min-width: 1101px) {
  .fh-resources-zone {
    height: 72px !important; /* extends hover zone below baked-in nav */
  }

  .fh-resources-zone::after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: 100%;
    height: 22px;
    background: transparent;
  }

  .fh-resources-menu {
    top: calc(100% - 6px) !important; /* removes hover gap */
    transform: translateX(-50%) translateY(0) !important;
  }

  .fh-resources-zone:hover .fh-resources-menu,
  .fh-resources-zone:focus-within .fh-resources-menu,
  .fh-resources-zone.is-open .fh-resources-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  .fh-resources-menu:hover {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}


/* Chapter card link for published Founder Reflection */
.published-chapter-card a {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.chapter-card-status {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(202, 162, 86, .62);
  border-radius: 999px;
  background: rgba(8, 43, 84, .88);
  color: #fff7e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.published-chapter-card a:hover .chapter-card-status,
.published-chapter-card a:focus-visible .chapter-card-status {
  background: rgba(168,117,42,.95);
}


/* Isolated Founder’s Corner update: Chapter links and library status */
.chapter-reflection-link {
  width: min(820px, calc(100% - 48px));
  margin: clamp(28px, 4vw, 46px) auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(183, 137, 70, .18);
  border-radius: 22px;
  background: rgba(255, 252, 246, .72);
  box-shadow: 0 10px 26px rgba(55, 36, 18, .035);
  text-align: center;
}

.chapter-reflection-link h4 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.chapter-reflection-link p:not(.reflection-kicker) {
  max-width: 620px;
  margin: 12px auto 20px;
  color: rgba(25, 51, 82, .76);
  line-height: 1.7;
}

.reflection-library .library-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}

.reflection-library li {
  grid-template-columns: 12px minmax(150px, .42fr) minmax(0, 1fr);
}

.reflection-library .library-link-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  min-width: 0;
}

.reflection-library .library-link {
  display: inline;
  max-width: 100%;
  line-height: 1.4;
  text-align: right;
  white-space: normal;
}

.reflection-library .library-link:hover,
.reflection-library .library-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .reflection-library li {
    grid-template-columns: 10px 1fr;
  }
  .reflection-library .library-link-group {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: -4px;
  }
  .reflection-library .library-link {
    text-align: left;
  }
}


/* Founder's Corner two-reflection structure fixes */
.featured-reflection-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.featured-reflection-current {
  margin-top: 0;
  margin-bottom: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .82), transparent 16rem),
    linear-gradient(145deg, rgba(255, 250, 243, .96), rgba(247, 235, 220, .72));
}

.featured-reflection-current h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.05;
}

.chapter-reflection-link {
  width: min(820px, calc(100% - 48px));
  margin: clamp(30px, 4vw, 46px) auto clamp(38px, 5vw, 60px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(183, 137, 70, .2);
  border-radius: 22px;
  background: rgba(255, 250, 243, .72);
  text-align: center;
  box-shadow: 0 10px 24px rgba(55, 36, 18, .04);
}

.chapter-reflection-link h4 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.12;
}

.chapter-reflection-link p:not(.reflection-kicker) {
  max-width: 620px;
  margin: 10px auto 22px;
  color: rgba(25, 51, 82, .74);
}

@media (min-width: 1101px) {
  .hero {
    background:
      url("assets/founders-html/founders-corner-desktop-hero-cropped.webp") center top / 100% auto no-repeat,
      linear-gradient(90deg, #f5e6d6, #fff4e7 52%, #f4e0cb) !important;
  }
}

/* Founder’s Corner v3 refinement: cleaner mobile header and chapter library */
@media (max-width: 1100px) {
  .founder-header {
    justify-content: flex-end !important;
  }
  .founder-header .brand {
    display: none !important;
  }
}

.chapter-library-section {
  margin-top: clamp(34px, 5vw, 62px);
}

.chapter-library-heading {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.chapter-library-heading h3 {
  margin: 8px 0 0;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
}

.chapter-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.chapter-library-card {
  overflow: hidden;
  border: 1px solid rgba(183, 137, 70, .18);
  border-radius: 24px;
  background: rgba(255, 250, 243, .76);
  box-shadow: 0 12px 28px rgba(55, 36, 18, .055);
}

.chapter-library-card img {
  display: block;
  width: 100%;
  height: clamp(190px, 20vw, 275px);
  object-fit: cover;
  object-position: center;
  background: #f7f1e7;
}

.chapter-library-card:first-child img {
  object-fit: cover;
  object-position: center 68%;
}

.chapter-card-copy {
  padding: clamp(18px, 2.6vw, 26px);
  text-align: center;
}

.chapter-card-copy .chapter-label {
  margin: 0 0 8px;
  color: var(--gold, #a8752a);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.chapter-card-copy h4 {
  margin: 0 0 16px;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.15;
}

.chapter-link,
.chapter-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.chapter-link {
  border: 1px solid rgba(183, 137, 70, .36);
  background: rgba(255, 255, 255, .64);
  color: var(--navy, #15365a);
}

.chapter-link:hover,
.chapter-link:focus-visible {
  background: rgba(183, 137, 70, .12);
  color: var(--gold, #a8752a);
}

.chapter-status {
  color: rgba(25, 51, 82, .58);
  background: rgba(25, 51, 82, .055);
}

@media (max-width: 980px) {
  .chapter-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .chapter-library-grid {
    grid-template-columns: 1fr;
  }
  .chapter-library-card img {
    height: auto;
  }
}


/* Founder’s Corner v4 cleanup: chapter card image balancing */
.chapter-library-card.chapter-reunion-family img {
  height: clamp(190px, 20vw, 275px);
  object-fit: cover;
  object-position: center 50%;
}

.chapter-library-card.chapter-korea-return img {
  height: clamp(190px, 20vw, 275px);
  object-fit: cover;
  object-position: center 48%;
}

@media (max-width: 980px) {
  .chapter-library-card.chapter-reunion-family img,
  .chapter-library-card.chapter-korea-return img {
    height: clamp(170px, 26vw, 230px);
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  .chapter-library-card.chapter-reunion-family img,
  .chapter-library-card.chapter-korea-return img {
    height: 210px;
    object-fit: cover;
  }
  .chapter-library-card.chapter-korea-return img {
    object-position: center 46%;
  }
}

/* Founder’s Corner v6: image cards should fill their frames, not shrink/letterbox.
   This intentionally only overrides the v5 contain rule. */
.chapter-library-card img,
.chapter-library-card:first-child img,
.chapter-library-card.chapter-reunion-family img,
.chapter-library-card.chapter-korea-return img {
  width: 100% !important;
  height: clamp(190px, 20vw, 275px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}

.chapter-library-card:first-child img {
  object-position: center 68% !important;
}

.chapter-library-card.chapter-reunion-family img {
  object-position: center 50% !important;
}

.chapter-library-card.chapter-korea-return img {
  object-position: center 48% !important;
}

@media (max-width: 980px) {
  .chapter-library-card img,
  .chapter-library-card:first-child img,
  .chapter-library-card.chapter-reunion-family img,
  .chapter-library-card.chapter-korea-return img {
    height: clamp(180px, 27vw, 235px) !important;
    object-fit: cover !important;
  }
}

@media (max-width: 640px) {
  .chapter-library-card img,
  .chapter-library-card:first-child img,
  .chapter-library-card.chapter-reunion-family img,
  .chapter-library-card.chapter-korea-return img {
    height: 210px !important;
    object-fit: cover !important;
  }
  .chapter-library-card.chapter-korea-return img {
    object-position: center 46% !important;
  }
}


/* Founder’s Corner v7 QA fix: card images fill their image frame; no contain/letterboxing. */
.chapter-library-grid .chapter-library-card > img {
  display: block !important;
  width: 100% !important;
  height: 225px !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}
.chapter-library-grid .chapter-library-card:first-child > img {
  object-position: center 68% !important;
}
.chapter-library-grid .chapter-library-card.chapter-reunion-family > img {
  object-position: center center !important;
}
.chapter-library-grid .chapter-library-card.chapter-korea-return > img {
  object-position: center 46% !important;
}
@media (max-width: 980px) {
  .chapter-library-grid .chapter-library-card > img {
    height: 215px !important;
    object-fit: cover !important;
  }
}
@media (max-width: 640px) {
  .chapter-library-grid .chapter-library-card > img {
    height: 205px !important;
    object-fit: cover !important;
  }
  .chapter-library-grid .chapter-library-card.chapter-korea-return > img {
    object-position: center 44% !important;
  }
}


/* v8 QA stabilization: chapter card media is a fixed frame; images fill it. */
.chapter-library-grid .chapter-library-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}
.chapter-library-grid .chapter-card-media {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #f7f1e7 !important;
  flex: 0 0 auto !important;
}
.chapter-library-grid .chapter-card-media > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}
.chapter-library-grid .chapter-library-card > img {
  display: none !important;
}
.chapter-library-grid .chapter-card-copy {
  flex: 1 1 auto !important;
}
@media (max-width: 980px) {
  .chapter-library-grid .chapter-card-media {
    aspect-ratio: 16 / 9 !important;
  }
}
@media (max-width: 640px) {
  .chapter-library-grid .chapter-card-media {
    aspect-ratio: 16 / 9 !important;
  }
}


/* Founder’s Corner v9: clean chapter cards using prepared banner images. */
.chapter-library-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 28px) !important;
}
.chapter-library-grid .chapter-library-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: rgba(255, 250, 243, .82) !important;
  border: 1px solid rgba(183, 137, 70, .20) !important;
  box-shadow: 0 14px 28px rgba(37, 32, 25, .07) !important;
}
.chapter-library-grid .chapter-card-media {
  width: 100% !important;
  aspect-ratio: 2 / 1 !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #f7f1e7 !important;
  border-radius: 0 !important;
}
.chapter-library-grid .chapter-card-media > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}
.chapter-card-copy {
  padding: clamp(16px, 2.2vw, 22px) !important;
  text-align: center !important;
}
.chapter-reflection-label {
  margin: 0 0 10px !important;
  color: var(--gold, #a8752a) !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}
.chapter-empty {
  display: inline-block !important;
  color: rgba(25, 51, 82, .58) !important;
  font-size: .92rem !important;
  font-style: italic !important;
  line-height: 1.45 !important;
}
.chapter-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  font-size: .84rem !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  text-decoration: none !important;
  border: 1px solid rgba(183, 137, 70, .36) !important;
  background: rgba(255, 255, 255, .64) !important;
  color: var(--navy, #15365a) !important;
}
.chapter-link:hover,
.chapter-link:focus-visible {
  background: rgba(183, 137, 70, .12) !important;
  color: var(--gold, #a8752a) !important;
}
.chapter-korea-return .chapter-card-copy {
  display: grid !important;
  gap: 10px !important;
  align-content: start !important;
}
.chapter-korea-return .chapter-reflection-label {
  margin-bottom: 2px !important;
}
.chapter-korea-return .chapter-link {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  padding: 11px 14px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: normal !important;
}
.chapter-card-copy .chapter-label,
.chapter-card-copy h4,
.chapter-status {
  display: none !important;
}
@media (max-width: 760px) {
  .chapter-library-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   v27 targeted Founder’s Corner tablet/mobile underlay cleanup
   Fix: remove the radial/text overlay and duplicate decorative layers
   that briefly show when resizing from desktop to tablet.
   This does not alter the approved chapter cards or Resource Hub work.
   ========================================================= */
@media (max-width: 1100px) {
  .hero::before,
  .hero::after,
  .hero-copy::before,
  .hero-copy::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    background: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .hero-copy {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero {
    overflow: hidden !important;
    background-image: url("assets/founders-html/founders-hero-tablet-clean.png") !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-color: #fff7ef !important;
  }
}

@media (max-width: 1100px) and (min-width: 641px) {
  .hero {
    background-size: cover !important;
  }
}

@media (max-width: 640px) {
  .hero {
    background-size: 100% auto !important;
  }
}

/* =========================================================
   v28 targeted Founder’s Corner resize-underlay cleanup
   Purpose: remove the hidden/underlying hero layer that flashes when
   resizing between tablet and desktop. This is a CSS-only repair.
   ========================================================= */
.hero,
.hero::before,
.hero::after,
.hero-copy,
.hero-copy::before,
.hero-copy::after {
  transition: none !important;
  animation: none !important;
}

.hero::before,
.hero::after,
.hero-copy::before,
.hero-copy::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.hero-copy {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 1101px) {
  .hero {
    background-image: url("assets/founders-html/founders-corner-desktop-hero-cropped.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: 100% auto !important;
    background-color: #fff4e7 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 1100px) {
  .hero {
    background-image: url("assets/founders-html/founders-hero-tablet-clean.png") !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
    background-color: #fff4e7 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 640px) {
  .hero {
    background-size: 100% auto !important;
    background-color: #fff4e7 !important;
  }
}


/* =========================================================
   v29 targeted fix: Founder’s Corner desktop hero underlay
   The previous desktop hero used a full-page mockup as a background.
   During tablet/desktop resizing, the lower page content could flash as
   an underlying image. This forces the hero to use a cropped hero-only
   asset so no lower-page content can appear.
   ========================================================= */
@media (min-width: 1101px) {
  .hero {
    background: #fff4e7 url("assets/founders-html/founders-corner-desktop-hero-cropped.webp") center top / 100% auto no-repeat !important;
    min-height: clamp(400px, 28vw, 430px) !important;
    overflow: hidden !important;
    contain: paint !important;
    isolation: isolate !important;
  }
}

/* Founder’s Corner v42: clean journal-style reflection archive. */
.reflection-archive {
  margin-top: clamp(34px, 5vw, 58px);
}

.reflection-archive-heading {
  max-width: 760px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  text-align: center;
}

.reflection-archive-heading h3 {
  margin: 8px 0 0;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.reflection-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto clamp(26px, 4vw, 42px);
}

.reflection-filters button {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(168, 117, 42, .28);
  border-radius: 999px;
  background: rgba(255, 250, 243, .74);
  color: var(--navy, #15365a);
  font: 800 .78rem/1 Avenir, "Avenir Next", system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reflection-filters button.is-active {
  background: var(--navy, #15365a);
  border-color: var(--navy, #15365a);
  color: #fff8ec;
}

.reflection-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.reflection-archive-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(168, 117, 42, .22);
  border-top: 4px solid rgba(168, 117, 42, .78);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, .96), rgba(255, 247, 235, .88));
  box-shadow: 0 14px 30px rgba(37, 32, 25, .06);
}

.reflection-archive-card[hidden] {
  display: none !important;
}

.archive-chapter,
.archive-theme,
.archive-excerpt,
.archive-reading-time,
.reflection-archive-card h4 {
  margin: 0;
}

.archive-chapter {
  color: var(--gold, #a8752a);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.3;
}

.archive-theme {
  margin-top: 12px;
  color: rgba(25, 51, 82, .68);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.35;
}

.reflection-archive-card h4 {
  margin-top: 14px;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.08rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.archive-excerpt {
  margin-top: 16px;
  color: rgba(25, 51, 82, .72);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.58;
}

.archive-reading-time {
  margin-top: auto;
  padding-top: 26px;
  color: rgba(25, 51, 82, .62);
  font-size: .92rem;
  font-weight: 800;
}

.reflection-archive-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(21, 54, 90, .08);
  color: var(--navy, #15365a);
  font-weight: 900;
  text-decoration: none;
}

.reflection-archive-card a:hover,
.reflection-archive-card a:focus-visible {
  background: var(--navy, #15365a);
  color: #fff8ec;
  outline: none;
}

.new-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold, #a8752a);
  color: #fff8ec;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.reflection-quote-box {
  margin: clamp(28px, 5vw, 48px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(168, 117, 42, .24);
  border-left: 5px solid var(--gold, #a8752a);
  border-radius: 18px;
  background: rgba(255, 250, 243, .72);
  text-align: center;
}

.reflection-quote-box p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.reflection-quote-box span {
  display: block;
  margin-top: 12px;
  color: var(--gold, #a8752a);
  font-weight: 900;
}

.reflection-empty-message {
  margin: clamp(18px, 3vw, 26px) auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(168, 117, 42, .22);
  border-radius: 14px;
  background: rgba(255, 250, 243, .72);
  color: rgba(25, 51, 82, .72);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 980px) {
  .reflection-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reflection-card-grid {
    grid-template-columns: 1fr;
  }
  .reflection-archive-card {
    min-height: 270px;
  }
  .reflection-archive-card a {
    width: 100%;
  }
}

/* Founder’s Corner v30: guided reflection reading path. */
.founders-reading-path {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.reflection-intro-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(168, 117, 42, .24);
  border-top: 5px solid var(--gold, #a8752a);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.72), transparent 16rem),
    linear-gradient(145deg, rgba(255,250,243,.96), rgba(247,235,220,.78));
  box-shadow: 0 16px 36px rgba(37, 32, 25, .08);
  text-align: center;
}

.reflection-intro-panel h2 {
  margin: 8px 0 16px;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.reflection-intro-panel p:not(.eyebrow) {
  max-width: 730px;
  margin: 0 auto 12px;
  color: rgba(25, 51, 82, .76);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  font-weight: 400;
  line-height: 1.72;
}

.reflection-start-button {
  margin-top: 14px;
}

.reflection-archive-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px auto 0;
  color: rgba(25, 51, 82, .72);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.reflection-chapter-stack {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.reflection-chapter-section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(168, 117, 42, .18);
  border-radius: 24px;
  background: rgba(255, 250, 243, .5);
}

.reflection-chapter-heading {
  max-width: 780px;
  margin: 0 auto clamp(18px, 3vw, 28px);
  text-align: center;
}

.reflection-chapter-heading h4 {
  margin: 8px 0 10px;
  color: var(--navy, #15365a);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.reflection-chapter-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(25, 51, 82, .7);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.62;
}

.reflection-chapter-section .reflection-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .reflection-chapter-section .reflection-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reflection-intro-panel,
  .reflection-chapter-section {
    border-radius: 18px;
  }

  .reflection-intro-panel .button {
    width: 100%;
  }

  .reflection-chapter-section {
    padding: 22px 16px;
  }

  .reflection-chapter-section .reflection-card-grid {
    grid-template-columns: 1fr;
  }
}
