:root {
  --navy: #0f2547;
  --gold: #c89d5c;
  --cream: #faf7f2;
  --cream-deep: #f4ede4;
  --blue: #6b8196;
  --ink: #1d2b3d;
  --muted: #657085;
  --white: #ffffff;
}

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lato", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

.mockup-hero {
  position: relative;
  width: 100%;
  background: #e9ddd0;
  overflow: hidden;
}

.mockup-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  min-height: 74px;
  padding: 1.05rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  background: rgba(247, 241, 232, .72);
  border-bottom: 1px solid rgba(189, 143, 76, .2);
  backdrop-filter: blur(8px);
}

.about-site-nav a {
  color: #102744;
  font-size: clamp(.68rem, .95vw, .88rem);
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-site-nav a[aria-current="page"] {
  color: #a46f28;
  border-bottom: 2px solid currentColor;
  padding-bottom: .22rem;
}

.hit {
  position: absolute;
  display: block;
  pointer-events: auto;
  border-radius: 999px;
}

.hit:focus-visible {
  outline: 3px solid rgba(200, 157, 92, .85);
  outline-offset: 3px;
}

/* Navigation hitboxes mapped to the mockup image */
.hit-home { left: 27.5%; top: 3.2%; width: 5.5%; height: 3.4%; }
.hit-about { left: 34.0%; top: 3.2%; width: 5.5%; height: 3.4%; }
.hit-community { left: 41.5%; top: 3.2%; width: 8.5%; height: 3.4%; }
.hit-resources { left: 52.0%; top: 3.2%; width: 8.8%; height: 3.4%; }
.hit-contact { left: 62.0%; top: 3.2%; width: 7.0%; height: 3.4%; }
.hit-facebook { left: 73.6%; top: 2.6%; width: 2.5%; height: 4%; }
.hit-instagram { left: 76.3%; top: 2.6%; width: 2.5%; height: 4%; }

.section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow { width: min(760px, 90vw); }
.center { text-align: center; }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  margin: 0 0 .7rem;
}

h2 {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  font-weight: 500;
}

h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 1rem;
  font-weight: 500;
}

p {
  margin: 0 auto 1rem;
  max-width: 74ch;
}

.section-purpose {
  background: linear-gradient(180deg, #faf7f2 0%, #f7f0e8 100%);
}

.closing-line {
  margin-top: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: var(--gold);
  line-height: 1.45;
}

.section-founder {
  background: #fffdf9;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.founder-card {
  border-radius: 28px;
  min-height: 500px;
  background: linear-gradient(135deg, #f9eee2, #fffdf9 45%, #e8f0f4);
  box-shadow: 0 20px 50px rgba(15, 37, 71, .12);
  border: 1px solid rgba(200, 157, 92, .28);
}

.founder-photo-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  padding: 2rem;
}

.founder-photo-placeholder span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.founder-photo-placeholder small {
  display: block;
  color: var(--muted);
  margin-top: .6rem;
}

.founder-copy { text-align: left; }
.founder-copy h3 span { color: var(--gold); font-size: .9em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #fff; box-shadow: 0 14px 28px rgba(200, 157, 92, .25); }
.button-outline { border: 1px solid rgba(15, 37, 71, .3); color: var(--navy); background: transparent; }
.button-outline.light { border-color: rgba(255,255,255,.65); color: #fff; }

.section-values {
  background: var(--cream-deep);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.value-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(200, 157, 92, .22);
  border-radius: 24px;
  padding: 2rem 1.4rem;
  box-shadow: 0 16px 32px rgba(15, 37, 71, .08);
}

.value-card-wide {
  grid-column: 2 / span 2;
}

.value-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(200, 157, 92, .35);
  font-size: 1.5rem;
}

.value-card h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.value-card p { font-size: .95rem; }
.hangul { color: var(--gold); letter-spacing: .08em; font-weight: 700; margin-bottom: .9rem !important; }

.section-forward {
  background: linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
}

.hangul-divider {
  margin-top: 2.2rem;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 1.05rem;
}

.section-closing {
  background:
    radial-gradient(circle at top, rgba(255,255,255,.12), transparent 52%),
    linear-gradient(135deg, rgba(15,37,71,.95), rgba(58,82,103,.94));
  color: #fff;
}

.section-closing h2 { color: #fff; margin-bottom: .4rem; }
.section-closing h2.gold { color: var(--gold); }
.section-closing p { max-width: 700px; color: rgba(255,255,255,.86); }
.closing-logo { width: min(260px, 62vw); height: auto; border-radius: 20px; margin-bottom: 2rem; opacity: .96; }
.hangul-final { margin-top: 2rem; font-size: 1.35rem; color: var(--gold) !important; letter-spacing: .12em; }
.translation { font-style: italic; }
.button-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

.site-footer {
  background: #08182e;
  color: rgba(255,255,255,.78);
  text-align: center;
  padding: 1.4rem 1rem;
  font-size: .86rem;
}

.site-footer p { margin: 0 auto; }
.site-footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-copy { text-align: center; }
  .founder-card { min-height: 360px; max-width: 520px; margin: 0 auto; width: 100%; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card-wide { grid-column: auto; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}

/* v2 visual refinement: Why Haneul Exists section */
.section-purpose {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 1.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 157, 92, .10), transparent 34%),
    radial-gradient(circle at 82% 15%, rgba(107, 129, 150, .12), transparent 36%),
    linear-gradient(180deg, #faf7f2 0%, #f6efe6 100%);
}

.section-purpose::before,
.section-purpose::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200, 157, 92, .12);
  pointer-events: none;
}

.section-purpose::before { left: -120px; top: 12%; }
.section-purpose::after { right: -150px; bottom: 10%; }

.purpose-shell {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 253, 249, .70);
  border: 1px solid rgba(200, 157, 92, .18);
  border-radius: 34px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.35rem, 5vw, 4.5rem);
  box-shadow: 0 24px 70px rgba(15, 37, 71, .08);
}

.purpose-ornament {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 1.15rem;
}

.section-purpose h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.9rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.section-purpose h2 span { color: var(--gold); }

.purpose-copy {
  width: min(700px, 100%);
  margin: 0 auto;
}

.purpose-copy p {
  max-width: 62ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.purpose-statement {
  width: min(720px, 100%);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 37, 71, .92), rgba(45, 70, 92, .9));
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  box-shadow: 0 18px 40px rgba(15, 37, 71, .16);
}

@media (max-width: 768px) {
  .purpose-shell { border-radius: 28px; }
  .purpose-statement { border-radius: 20px; }
}

@media (max-width: 480px) {
  .section-purpose { padding: 4rem 1rem; }
  .purpose-shell { width: 94vw; padding: 2.6rem 1.2rem; }
  .purpose-copy p { font-size: .98rem; }
}


/* =========================================================
   Founder Chapter: A Journey That Became A Shared Mission
   Built as a restrained emotional chapter, not a corporate bio.
   ========================================================= */

.founder-chapter {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 8rem) 1.5rem;
  background:
    radial-gradient(circle at 14% 8%, rgba(232, 178, 177, 0.22), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.76), transparent 28%),
    linear-gradient(135deg, #fbf4ea 0%, #fff9ef 48%, #f3e6d6 100%);
}

.founder-chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(16,39,68,.05) 1px, transparent 1px),
    linear-gradient(rgba(16,39,68,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: multiply;
}

.founder-chapter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(80px, 10vw, 140px);
  opacity: 0.16;
  background: linear-gradient(to top, rgba(130,107,82,.42), transparent);
  clip-path: polygon(
    0 76%, 8% 60%, 16% 73%, 26% 43%, 36% 66%, 46% 52%, 58% 78%,
    69% 42%, 80% 62%, 90% 45%, 100% 71%, 100% 100%, 0 100%
  );
}

.founder-chapter__shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(3rem, 6vw, 5.75rem);
  align-items: center;
}

.founder-chapter__photo-wrap {
  justify-self: center;
  width: min(420px, 100%);
  padding: clamp(0.75rem, 1.4vw, 1.05rem);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.86);
  border: 1px solid rgba(189,143,76,0.35);
  box-shadow: 0 24px 58px rgba(15,37,71,0.13);
}

.founder-chapter__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 16px;
  border: 1px solid rgba(189,143,76,0.35);
}

.founder-chapter__copy {
  max-width: 660px;
}

.founder-chapter .section-kicker {
  margin-bottom: 1.35rem;
  color: #bd8f4c;
  letter-spacing: .22em;
}

.founder-chapter h2 {
  margin: 0 0 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.4vw, 4.85rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #102744;
}

.founder-chapter__copy p {
  margin: 0 0 1.08rem;
  font-size: clamp(1.05rem, 1.25vw, 1.24rem);
  line-height: 1.72;
  color: rgba(16,39,68,.88);
}

.founder-lede {
  font-size: clamp(1.16rem, 1.55vw, 1.45rem) !important;
  color: #102744 !important;
  line-height: 1.62 !important;
}

.founder-closing {
  margin-top: 1.85rem !important;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(189,143,76,0.55);
  color: #bd8f4c !important;
  font-style: italic;
}

.founder-signature-block {
  margin-top: clamp(2rem, 3.6vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(189,143,76,0.35);
}

.founder-signature-name {
  margin: 0 0 .45rem !important;
  font-size: clamp(1.45rem, 2.1vw, 2rem) !important;
  color: #102744 !important;
  line-height: 1.25 !important;
}

.founder-signature-name span {
  color: #bd8f4c;
  white-space: nowrap;
}

.founder-signature-title {
  margin: 0 !important;
  font-family: Arial, sans-serif;
  font-size: .82rem !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #bd8f4c !important;
}

@media (max-width: 960px) {
  .founder-chapter__shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-chapter__copy {
    margin: 0 auto;
  }

  .founder-closing {
    border-left: 0;
    padding-left: 0;
  }

  .founder-signature-block {
    width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .founder-chapter {
    padding: 4.5rem 1.1rem 5.2rem;
  }

  .founder-chapter__photo-wrap {
    width: min(320px, 100%);
  }

  .founder-chapter h2 {
    font-size: 2.35rem;
  }

  .founder-chapter__copy p {
    font-size: 1.02rem;
  }
}


/* =========================================================
   Alignment Fix: Why Haneul Exists / Purpose Chapter
   Keeps the kicker, ornament, heading, and copy centered
   across wider desktop displays.
   ========================================================= */

.section-purpose {
  text-align: center;
}

.section-purpose .purpose-shell {
  width: min(920px, calc(100% - 2rem));
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: block;
}

.section-purpose .purpose-ornament,
.section-purpose .section-kicker,
.section-purpose h2,
.section-purpose .purpose-copy,
.section-purpose .purpose-statement {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.section-purpose .section-kicker {
  display: block;
  width: 100%;
}

.section-purpose h2 {
  max-width: 880px;
}

.section-purpose .purpose-copy {
  max-width: 760px;
}

.section-purpose .purpose-statement {
  max-width: 840px;
}


/* =========================================================
   Initial Spacing Reduction Pass v1
   Goal: reduce large gaps so the About page feels like one
   continuous story rather than separated cards/sections.
   ========================================================= */

/* General section tightening */
.section {
  padding-top: clamp(4.25rem, 6vw, 5.75rem) !important;
  padding-bottom: clamp(4.25rem, 6vw, 5.75rem) !important;
}

/* Meaning section: tighter connection after the hero */
.section-meaning {
  padding-top: clamp(4.25rem, 6vw, 5.75rem) !important;
  padding-bottom: clamp(2.75rem, 4.5vw, 4rem) !important;
}

.meaning-mountains {
  margin-top: clamp(1.75rem, 3vw, 2.75rem) !important;
}

/* Purpose / Why Haneul Exists: reduce oversized vertical gaps */
.section-purpose {
  padding-top: clamp(4.25rem, 6vw, 5.6rem) !important;
  padding-bottom: clamp(4.25rem, 6vw, 5.6rem) !important;
}

.section-purpose .purpose-shell {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section-purpose .purpose-copy p {
  margin-bottom: 0.9rem !important;
}

/* Founder: keep emotional space, but remove excessive separation */
.founder-chapter {
  padding-top: clamp(4.5rem, 6.5vw, 6.25rem) !important;
  padding-bottom: clamp(4.75rem, 6.5vw, 6.5rem) !important;
}

.founder-chapter__shell {
  gap: clamp(2.5rem, 4.5vw, 4.5rem) !important;
}

.founder-chapter h2 {
  margin-bottom: 1.45rem !important;
}

.founder-chapter__copy p {
  margin-bottom: 0.85rem !important;
}

.founder-closing {
  margin-top: 1.25rem !important;
}

.founder-signature-block {
  margin-top: clamp(1.35rem, 2.4vw, 2.1rem) !important;
}

/* Values: reduce large card/section spacing */
.section-values {
  padding-top: clamp(4.25rem, 6vw, 5.75rem) !important;
  padding-bottom: clamp(4.25rem, 6vw, 5.75rem) !important;
}

.values-grid {
  gap: clamp(1.1rem, 2vw, 1.6rem) !important;
  margin-top: clamp(2rem, 3vw, 2.8rem) !important;
}

.value-card {
  padding: clamp(1.45rem, 2.2vw, 2.15rem) !important;
}

.section-intro {
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem) !important;
}

/* Forward + closing: preserve warmth but reduce scroll dead space */
.section-forward,
.section-closing {
  padding-top: clamp(4.5rem, 6.5vw, 6.2rem) !important;
  padding-bottom: clamp(4.5rem, 6.5vw, 6.2rem) !important;
}

.button-row {
  margin-top: clamp(1.5rem, 2.8vw, 2.3rem) !important;
}

@media (max-width: 760px) {
  .section,
  .section-purpose,
  .section-values,
  .section-forward,
  .section-closing {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .section-meaning {
    padding-top: 3.5rem !important;
    padding-bottom: 2.75rem !important;
  }

  .founder-chapter {
    padding-top: 3.75rem !important;
    padding-bottom: 4rem !important;
  }

  .founder-chapter__shell {
    gap: 2.25rem !important;
  }
}


/* =========================================================
   Spacing Reduction Pass v2
   Further tightens chapter gaps while preserving readability.
   ========================================================= */

.section {
  padding-top: clamp(3.4rem, 5vw, 4.65rem) !important;
  padding-bottom: clamp(3.4rem, 5vw, 4.65rem) !important;
}

.section-meaning {
  padding-top: clamp(3.4rem, 5vw, 4.5rem) !important;
  padding-bottom: clamp(2.2rem, 3.5vw, 3.2rem) !important;
}

.meaning-shell {
  gap: clamp(2rem, 4vw, 4rem) !important;
}

.meaning-mountains {
  margin-top: clamp(1.1rem, 2.2vw, 2rem) !important;
  height: clamp(70px, 9vw, 120px) !important;
}

.section-purpose {
  padding-top: clamp(3.4rem, 5vw, 4.5rem) !important;
  padding-bottom: clamp(3.4rem, 5vw, 4.5rem) !important;
}

.section-purpose h2 {
  margin-bottom: clamp(1.1rem, 2vw, 1.75rem) !important;
}

.section-purpose .purpose-copy {
  margin-top: clamp(1.1rem, 2vw, 1.7rem) !important;
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem) !important;
}

.section-purpose .purpose-statement {
  margin-top: clamp(1.2rem, 2vw, 1.8rem) !important;
  padding: clamp(1.15rem, 2vw, 1.7rem) !important;
}

.founder-chapter {
  padding-top: clamp(3.65rem, 5.4vw, 5rem) !important;
  padding-bottom: clamp(3.85rem, 5.4vw, 5.25rem) !important;
}

.founder-chapter__shell {
  gap: clamp(2rem, 3.6vw, 3.7rem) !important;
}

.founder-chapter h2 {
  margin-bottom: 1.15rem !important;
}

.founder-chapter__copy p {
  margin-bottom: 0.65rem !important;
  line-height: 1.62 !important;
}

.founder-lede {
  margin-bottom: 0.85rem !important;
}

.founder-closing {
  margin-top: 1rem !important;
}

.founder-signature-block {
  margin-top: clamp(1rem, 2vw, 1.65rem) !important;
  padding-top: 1rem !important;
}

.section-values {
  padding-top: clamp(3.4rem, 5vw, 4.65rem) !important;
  padding-bottom: clamp(3.4rem, 5vw, 4.65rem) !important;
}

.values-grid {
  gap: clamp(0.85rem, 1.6vw, 1.25rem) !important;
  margin-top: clamp(1.4rem, 2.4vw, 2.15rem) !important;
}

.value-card {
  padding: clamp(1.1rem, 1.85vw, 1.7rem) !important;
}

.value-card p {
  margin-bottom: 0 !important;
}

.value-icon {
  margin-bottom: 0.65rem !important;
}

.section-forward,
.section-closing {
  padding-top: clamp(3.6rem, 5vw, 5rem) !important;
  padding-bottom: clamp(3.6rem, 5vw, 5rem) !important;
}

.section-forward p,
.section-closing p {
  margin-bottom: 0.75rem !important;
}

.closing-logo {
  margin-bottom: clamp(1rem, 2vw, 1.6rem) !important;
}

.button-row {
  margin-top: clamp(1.1rem, 2vw, 1.75rem) !important;
}

@media (max-width: 760px) {
  .section,
  .section-purpose,
  .section-values,
  .section-forward,
  .section-closing {
    padding-top: 2.85rem !important;
    padding-bottom: 2.85rem !important;
  }

  .section-meaning {
    padding-top: 2.9rem !important;
    padding-bottom: 2.3rem !important;
  }

  .founder-chapter {
    padding-top: 3rem !important;
    padding-bottom: 3.25rem !important;
  }

  .founder-chapter__shell {
    gap: 1.85rem !important;
  }

  .values-grid {
    gap: 0.9rem !important;
  }
}


/* =========================================================
   Spacing Reduction Pass v3
   Small final tightening (~10-15%) beyond v2.
   ========================================================= */

.section,
.section-purpose,
.section-values,
.section-forward,
.section-closing {
  padding-top: clamp(3rem, 4.4vw, 4rem) !important;
  padding-bottom: clamp(3rem, 4.4vw, 4rem) !important;
}

.section-meaning {
  padding-top: clamp(2.9rem, 4.2vw, 3.9rem) !important;
  padding-bottom: clamp(2rem, 3vw, 2.8rem) !important;
}

.founder-chapter {
  padding-top: clamp(3.15rem, 4.8vw, 4.25rem) !important;
  padding-bottom: clamp(3.35rem, 4.8vw, 4.5rem) !important;
}

.founder-chapter__shell {
  gap: clamp(1.6rem, 3vw, 3rem) !important;
}

.values-grid {
  margin-top: clamp(1rem, 1.8vw, 1.6rem) !important;
}

.button-row {
  margin-top: 1rem !important;
}

@media (max-width: 760px) {
  .section,
  .section-purpose,
  .section-values,
  .section-forward,
  .section-closing,
  .founder-chapter {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}


/* =========================================================
   Chapter 5 - Core Values
   Reflection layout replacing cards.
   ========================================================= */

.values-chapter {
  background: linear-gradient(180deg,#fbf6ee 0%, #fffaf3 100%);
}

.values-chapter h2 {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: clamp(2rem,4vw,3.6rem);
  color:#102744;
}

.values-reflection-grid {
  max-width: 1000px;
  margin: 2rem auto 0;
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 2rem 4rem;
}

.value-reflection {
  text-align:left;
}

.value-reflection h3 {
  font-size:1.8rem;
  color:#102744;
  margin:0 0 .75rem;
  font-weight:500;
}

.value-divider {
  width:80px;
  height:2px;
  background:#bd8f4c;
  margin-bottom:1rem;
}

.value-reflection p {
  color:rgba(16,39,68,.82);
  line-height:1.75;
  margin:0;
}

.value-reflection-belonging {
  max-width:620px;
  margin:3rem auto 0;
  text-align:center;
}

.value-reflection-belonging .value-divider {
  margin:0 auto 1rem;
}

@media (max-width: 820px) {
  .values-reflection-grid {
    grid-template-columns:1fr;
    gap:1.8rem;
  }

  .value-reflection {
    text-align:center;
  }

  .value-divider {
    margin:0 auto 1rem;
  }

  .value-reflection-belonging {
    margin-top:2rem;
  }
}


/* =========================================================
   Core Values v3 - Premium Cards with Bubble Identifiers
   ========================================================= */

.values-card-grid{
  max-width:1050px;
  margin:2rem auto 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.4rem;
}

.haneul-value-card{
  background:rgba(255,250,243,.92);
  border:1px solid rgba(189,143,76,.18);
  border-radius:24px;
  padding:1.8rem;
  text-align:center;
  box-shadow:0 10px 30px rgba(16,39,68,.05);
  transition:.2s ease;
}

.haneul-value-card:hover{
  transform:translateY(-2px);
}

.value-badge{
  width:72px;
  height:72px;
  margin:0 auto 1rem;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  color:#102744;
  background:linear-gradient(180deg,#f6e7c9,#fff8ea);
  border:1px solid rgba(189,143,76,.35);
  box-shadow:0 8px 20px rgba(189,143,76,.12);
}

.haneul-value-card h3{
  margin:0 0 .75rem;
  color:#102744;
  font-size:1.55rem;
}

.haneul-value-card p{
  margin:0;
  line-height:1.7;
  color:rgba(16,39,68,.82);
}

.belonging-card{
  max-width:560px;
  margin:1.8rem auto 0;
}

@media(max-width:820px){
  .values-card-grid{
    grid-template-columns:1fr;
  }

  .belonging-card{
    max-width:none;
  }
}


/* =========================================================
   Core Values v4 - SVG icon bubbles
   Replaces placeholder symbols with consistent line-art SVGs.
   ========================================================= */

.value-badge {
  background: linear-gradient(180deg, #fff8ea 0%, #f2dfba 100%) !important;
  color: #102744 !important;
}

.value-svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.belonging-card .value-badge {
  width: 78px;
  height: 78px;
}

.belonging-card .value-svg {
  width: 42px;
  height: 42px;
}


/* =========================================================
   Core Values Header Centering Fix
   Keeps "Core Values" and the chapter title perfectly
   centered on desktop, tablet, and mobile.
   ========================================================= */

.values-chapter,
.values-chapter .container {
  text-align: center !important;
}

.values-chapter .section-kicker {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.values-chapter h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 760px;
}

@media (min-width: 821px) {
  .values-chapter .section-kicker,
  .values-chapter h2 {
    position: relative;
    left: 0 !important;
    right: 0 !important;
  }
}


/* =========================================================
   Core Values v6 - Remove hover movement
   Value cards are informational, not clickable links.
   ========================================================= */

.haneul-value-card,
.haneul-value-card:hover {
  transform: none !important;
  cursor: default !important;
}

.haneul-value-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.haneul-value-card:hover {
  box-shadow: 0 10px 30px rgba(16,39,68,.05) !important;
  border-color: rgba(189,143,76,.18) !important;
}


/* =========================================================
   Core Values v7 - Compact static cards
   Reduces card footprint now that cards are informational only.
   ========================================================= */

.values-card-grid {
  max-width: 900px !important;
  gap: 1rem !important;
  margin-top: 1.5rem !important;
}

.haneul-value-card {
  padding: 1.25rem 1.35rem !important;
  border-radius: 18px !important;
}

.value-badge {
  width: 58px !important;
  height: 58px !important;
  margin-bottom: 0.75rem !important;
}

.value-svg {
  width: 31px !important;
  height: 31px !important;
}

.haneul-value-card h3 {
  font-size: 1.32rem !important;
  margin-bottom: 0.5rem !important;
}

.haneul-value-card p {
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
}

.belonging-card {
  max-width: 500px !important;
  margin-top: 1.2rem !important;
  padding: 1.35rem 1.5rem !important;
}

.belonging-card .value-badge {
  width: 64px !important;
  height: 64px !important;
}

.belonging-card .value-svg {
  width: 34px !important;
  height: 34px !important;
}

@media (max-width: 820px) {
  .values-card-grid {
    max-width: 560px !important;
  }

  .haneul-value-card,
  .belonging-card {
    padding: 1.2rem !important;
  }
}


/* =========================================================
   Core Values v8 - Pillar Layout
   Uses horizontal space, reduces vertical footprint.
   ========================================================= */

.values-pillars{
  max-width:1200px;
  margin:1.5rem auto 0;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
  align-items:start;
}

.value-pillar{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:0.5rem 1rem !important;
  text-align:center;
  position:relative;
}

.value-pillar:not(:last-child)::after{
  content:"";
  position:absolute;
  top:10%;
  right:0;
  width:1px;
  height:80%;
  background:rgba(189,143,76,.25);
}

.value-badge{
  width:52px !important;
  height:52px !important;
  margin:0 auto .65rem !important;
}

.value-svg{
  width:28px !important;
  height:28px !important;
}

.value-pillar h3{
  font-size:1.15rem !important;
  margin:0 0 .45rem !important;
  color:#102744;
}

.value-pillar p{
  font-size:.92rem !important;
  line-height:1.45 !important;
  max-width:190px;
  margin:0 auto !important;
}

.value-pillar-belonging{
  grid-column:auto !important;
}

@media (max-width: 1000px){
  .values-pillars{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.2rem;
  }

  .value-pillar::after{
    display:none;
  }

  .value-pillar-belonging{
    grid-column:1 / -1;
    max-width:420px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .values-pillars{
    grid-template-columns:1fr;
    gap:1rem;
  }

  .value-pillar-belonging{
    max-width:none;
  }
}


/* =========================================================
   Core Values v9 - Belonging Desktop Adjustment
   Desktop: first four values remain as pillars, Belonging
   moves to a centered second row as the culmination.
   ========================================================= */

@media (min-width: 1001px) {
  .values-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 1040px !important;
    row-gap: 1.35rem !important;
  }

  .value-pillar-belonging {
    grid-column: 2 / 4 !important;
    max-width: 440px !important;
    justify-self: center !important;
    margin-top: 0.65rem !important;
    padding-top: 1.05rem !important;
    border-top: 1px solid rgba(189,143,76,.22) !important;
  }

  .value-pillar:nth-child(4)::after,
  .value-pillar-belonging::after {
    display: none !important;
  }

  .value-pillar-belonging .value-badge {
    width: 58px !important;
    height: 58px !important;
  }

  .value-pillar-belonging .value-svg {
    width: 31px !important;
    height: 31px !important;
  }

  .value-pillar-belonging h3 {
    font-size: 1.28rem !important;
  }

  .value-pillar-belonging p {
    max-width: 340px !important;
  }
}


/* =========================================================
   Core Values v10 - Restore 5-column desktop line
   Keeps all values in one clean horizontal row on desktop.
   Belonging is subtly emphasized without breaking alignment.
   ========================================================= */

@media (min-width: 1001px) {
  .values-pillars {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    max-width: 1200px !important;
    row-gap: 0 !important;
  }

  .value-pillar-belonging {
    grid-column: auto !important;
    max-width: none !important;
    justify-self: stretch !important;
    margin-top: 0 !important;
    padding-top: 0.5rem !important;
    border-top: none !important;
  }

  .value-pillar:nth-child(4)::after {
    display: block !important;
  }

  .value-pillar-belonging::after {
    display: none !important;
  }

  .value-pillar-belonging .value-badge {
    width: 58px !important;
    height: 58px !important;
    background: linear-gradient(180deg, #f4dfad 0%, #fff8ea 100%) !important;
    border-color: rgba(189,143,76,.55) !important;
  }

  .value-pillar-belonging .value-svg {
    width: 31px !important;
    height: 31px !important;
  }

  .value-pillar-belonging h3 {
    font-size: 1.22rem !important;
    color: #bd8f4c !important;
  }

  .value-pillar-belonging p {
    max-width: 190px !important;
  }
}


/* =========================================================
   Core Values v11 - Equal Pillars
   All five values share equal visual weight.
   ========================================================= */

@media (min-width: 1001px) {

  .values-pillars {
    grid-template-columns: repeat(5, 1fr) !important;
    max-width: 1180px !important;
    align-items: start !important;
  }

  .value-pillar,
  .value-pillar-belonging {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0.5rem 1rem !important;
    border-top: none !important;
    justify-self: stretch !important;
  }

  .value-pillar::after,
  .value-pillar-belonging::after {
    display: block !important;
  }

  .value-pillar:last-child::after,
  .value-pillar-belonging:last-child::after {
    display: none !important;
  }

  .value-pillar .value-badge,
  .value-pillar-belonging .value-badge {
    width: 52px !important;
    height: 52px !important;
    background: linear-gradient(180deg,#fff8ea 0%, #f2dfba 100%) !important;
    border-color: rgba(189,143,76,.35) !important;
  }

  .value-pillar .value-svg,
  .value-pillar-belonging .value-svg {
    width: 28px !important;
    height: 28px !important;
  }

  .value-pillar h3,
  .value-pillar-belonging h3 {
    font-size: 1.15rem !important;
    color: #102744 !important;
    margin: 0 0 .45rem !important;
  }

  .value-pillar p,
  .value-pillar-belonging p {
    max-width: 190px !important;
    margin: 0 auto !important;
    font-size: .92rem !important;
    line-height: 1.45 !important;
  }
}


/* =========================================================
   Core Values v12 - True Desktop Equal Alignment
   Completely removes inherited Belonging offsets and forces
   all five pillars to sit on the same row and same baseline.
   ========================================================= */

@media (min-width: 1001px) {
  .values-pillars {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-flow: column !important;
    grid-auto-rows: auto !important;
    align-items: start !important;
    justify-items: stretch !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .values-pillars > .value-pillar {
    grid-row: 1 !important;
    grid-column: auto !important;
    align-self: start !important;
    justify-self: stretch !important;
    margin: 0 !important;
    margin-top: 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 0.5rem 1rem !important;
    border-top: 0 !important;
  }

  .values-pillars > .value-pillar-belonging {
    grid-row: 1 !important;
    grid-column: auto !important;
    align-self: start !important;
    justify-self: stretch !important;
    margin: 0 !important;
    margin-top: 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 0.5rem 1rem !important;
    border-top: 0 !important;
  }

  .values-pillars > .value-pillar .value-badge,
  .values-pillars > .value-pillar-belonging .value-badge {
    width: 52px !important;
    height: 52px !important;
    margin-top: 0 !important;
    margin-bottom: 0.65rem !important;
  }

  .values-pillars > .value-pillar h3,
  .values-pillars > .value-pillar-belonging h3 {
    margin-top: 0 !important;
  }

  .values-pillars > .value-pillar:not(:last-child)::after {
    display: block !important;
  }

  .values-pillars > .value-pillar:last-child::after,
  .values-pillars > .value-pillar-belonging:last-child::after {
    display: none !important;
  }
}


/* =========================================================
   Core Values v13 - Structural Fix
   Belonging is now inside .values-pillars as the fifth item.
   This override keeps all five pillars aligned in one row.
   ========================================================= */

@media (min-width: 1001px) {
  .values-pillars {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: start !important;
    justify-items: stretch !important;
    max-width: 1180px !important;
    margin: 1.5rem auto 0 !important;
    gap: 0 !important;
  }

  .values-pillars > .value-pillar {
    grid-row: auto !important;
    grid-column: auto !important;
    align-self: start !important;
    justify-self: stretch !important;
    margin: 0 !important;
    padding: 0.5rem 1rem !important;
    max-width: none !important;
    width: auto !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    text-align: center !important;
    position: relative !important;
  }

  .values-pillars > .value-pillar:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 10% !important;
    right: 0 !important;
    width: 1px !important;
    height: 80% !important;
    background: rgba(189,143,76,.25) !important;
  }

  .values-pillars > .value-pillar:last-child::after {
    display: none !important;
  }

  .values-pillars .value-badge {
    width: 52px !important;
    height: 52px !important;
    margin: 0 auto .65rem !important;
    background: linear-gradient(180deg,#fff8ea 0%, #f2dfba 100%) !important;
    border-color: rgba(189,143,76,.35) !important;
  }

  .values-pillars .value-svg {
    width: 28px !important;
    height: 28px !important;
  }

  .values-pillars h3 {
    font-size: 1.15rem !important;
    color: #102744 !important;
    margin: 0 0 .45rem !important;
  }

  .values-pillars p {
    max-width: 190px !important;
    margin: 0 auto !important;
    font-size: .92rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 1000px) {
  .values-pillars {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.2rem !important;
  }

  .values-pillars > .value-pillar::after {
    display: none !important;
  }

  .values-pillars > .value-pillar:last-child {
    grid-column: 1 / -1 !important;
    max-width: 420px !important;
    justify-self: center !important;
  }
}

@media (max-width: 640px) {
  .values-pillars {
    grid-template-columns: 1fr !important;
  }

  .values-pillars > .value-pillar:last-child {
    max-width: none !important;
  }
}


/* =========================================================
   Looking Forward v2
   Open, light, and hopeful.
   ========================================================= */

.looking-forward-chapter{
  position:relative;
  text-align:center;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.9), transparent 35%),
    linear-gradient(180deg,#faf7f1 0%, #f8f4ec 45%, #fdfbf7 100%);
}

.looking-forward-shell{
  max-width:860px;
  margin:0 auto;
}

.looking-forward-chapter h2{
  max-width:700px;
  margin:0 auto 1.5rem;
  font-size:clamp(2.2rem,4vw,4rem);
  color:#102744;
}

.looking-forward-copy{
  max-width:720px;
  margin:0 auto;
}

.looking-forward-copy p{
  font-size:1.08rem;
  line-height:1.85;
  color:rgba(16,39,68,.86);
  margin:0 0 1.15rem;
}

.looking-forward-closing{
  margin-top:2.25rem;
}

.horizon-line{
  display:block;
  width:140px;
  height:1px;
  margin:0 auto 1rem;
  background:rgba(189,143,76,.45);
}

.closing-thought{
  font-style:italic;
  color:#bd8f4c;
  font-size:1.08rem;
}

@media(max-width:768px){
  .looking-forward-copy p{
    font-size:1rem;
    line-height:1.75;
  }
}


/* =========================================================
   Looking Forward v3 - Center Alignment Fix
   Prevents the kicker/title from drifting left on tablet
   and desktop. Centers the chapter from the parent down.
   ========================================================= */

.looking-forward-chapter,
.looking-forward-chapter .looking-forward-shell,
.looking-forward-chapter .section-kicker,
.looking-forward-chapter h2,
.looking-forward-chapter .looking-forward-copy,
.looking-forward-chapter .looking-forward-copy p,
.looking-forward-chapter .looking-forward-closing {
  text-align: center !important;
}

.looking-forward-chapter .looking-forward-shell {
  width: min(860px, calc(100% - 2rem)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.looking-forward-chapter .section-kicker {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.looking-forward-chapter h2,
.looking-forward-chapter .looking-forward-copy {
  margin-left: auto !important;
  margin-right: auto !important;
}

.looking-forward-chapter .horizon-line {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* =========================================================
   Final Chapter - You Belong Here
   ========================================================= */

.final-belonging{
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.95), transparent 35%),
    linear-gradient(180deg,#fdfbf7 0%, #faf6ef 55%, #f7f1e7 100%);
}

.final-belonging__shell{
  max-width:820px;
  margin:0 auto;
}

.final-belonging h2{
  font-size:clamp(2.4rem,4.5vw,4.4rem);
  color:#102744;
  margin:0 auto 1.5rem;
}

.final-belonging__intro{
  max-width:680px;
  margin:0 auto 1.75rem;
  line-height:1.85;
  color:rgba(16,39,68,.86);
  font-size:1.08rem;
}

.final-belonging__line{
  font-size:1.2rem;
  color:#102744;
  margin:1rem 0;
}

.final-belonging__line--strong{
  font-size:1.45rem;
  font-weight:600;
}

.final-belonging__logo{
  margin:1.5rem auto;
}

.final-belonging__logo img{
  max-width:120px;
  height:auto;
}

.final-belonging__motto{
  margin-top:2rem;
  display:flex;
  flex-direction:column;
  gap:.4rem;
  color:#bd8f4c;
  font-style:italic;
  letter-spacing:.02em;
}

@media (max-width:768px){
  .final-belonging__logo img{
    max-width:95px;
  }
}


/* Final Chapter v2: duplicate cream final-belonging section removed.
   Original clean blue closing section remains active. */


/* =========================================================
   Restore About Page Mobile Circular Hamburger
   Phone only: hides tiny image-based hero hotspots and uses
   a circular three-line routing button.
   ========================================================= */

.about-mobile-menu {
  display: none;
}

@media (max-width: 700px) {
  .about-site-nav {
    display: none;
  }

  .mockup-hero .hero-links {
    display: none !important;
  }

  .about-mobile-menu {
    display: block;
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 30;
    font-family: Arial, sans-serif;
  }

  .about-mobile-menu__button {
    appearance: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(189,143,76,.65);
    background: rgba(255, 250, 242, .94);
    color: #102744;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(16,39,68,.14);
  }

  .about-mobile-menu__panel {
    display: none;
    position: absolute;
    top: calc(100% + .55rem);
    right: 0;
    min-width: 180px;
    padding: .45rem;
    border-radius: 16px;
    background: rgba(255, 250, 242, .97);
    border: 1px solid rgba(189,143,76,.35);
    box-shadow: 0 14px 34px rgba(16,39,68,.18);
  }

  .about-mobile-menu.is-open .about-mobile-menu__panel {
    display: grid;
    gap: .15rem;
  }

  .about-mobile-menu__panel a {
    display: block;
    padding: .72rem .9rem;
    border-radius: 12px;
    color: #102744;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .about-mobile-menu__panel a:hover,
  .about-mobile-menu__panel a:focus {
    background: rgba(189,143,76,.12);
    outline: none;
  }
}
