/* ============================================================
   WE ARE WITH YOU — Global Stylesheet v3
   Design tokens live at the top. Change colors/fonts here once
   and the whole site updates. See EDITING-GUIDE.md.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Tokens ── */
:root {
  --paper:  #FAF8F3;   /* page background */
  --mist:   #EFECE3;   /* light gray section background */
  --ink:    #13233A;   /* deep navy text + dark sections */
  --ink-2:  #1B3049;   /* raised surfaces on dark sections */
  --blue:   #3E6B8F;   /* warm blue accent */
  --gold:   #C4A24E;   /* soft gold accent */
  --gold-2: #D3B569;   /* gold hover */
  --white:  #FFFFFF;
  --line:   rgba(19,35,58,0.14);        /* hairline on light */
  --line-d: rgba(250,248,243,0.16);     /* hairline on dark */
  --muted:  #5B6472;                    /* secondary text on light */
  --muted-d: rgba(250,248,243,0.68);    /* secondary text on dark */

  --display: 'Fraunces', Georgia, serif;
  --body:    'Instrument Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6.5rem;

  --max-w: 1140px;
  --radius: 8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 0.6rem 1.2rem;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 {
  font-family: var(--body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
p { max-width: 62ch; }
em { font-style: italic; }

.eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--space-sm);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 34px; height: 1px; background: var(--gold); }

.lead { font-size: 1.2rem; line-height: 1.65; color: var(--muted); }
.section--dark .lead { color: var(--muted-d); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--space-md); }
.section { padding-block: var(--space-xl); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--mist { background: var(--mist); }
.section--tight { padding-block: var(--space-lg); }
.stack > * + * { margin-top: var(--space-sm); }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }
.measure { max-width: 680px; margin-inline: auto; }

.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head h2 { margin-bottom: var(--space-sm); }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section--dark .section-head p { color: var(--muted-d); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--space-md);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled, .nav.open { background: var(--ink); box-shadow: 0 1px 0 var(--line-d); }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.02rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.03em; white-space: nowrap;
}
.nav__logo svg { flex-shrink: 0; }
.nav__links { display: flex; gap: 1.6rem; align-items: center; }
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
  padding: 0.4rem 0; transition: color 0.2s;
}
.nav__links > li > a:hover, .nav__links > li > a:focus-visible { color: var(--gold-2); }
.nav__links > li > a.active { color: var(--white); box-shadow: 0 2px 0 var(--gold); }
.nav__caret { font-size: 0.55rem; opacity: 0.6; }

.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: -1rem;
  min-width: 230px; background: var(--ink);
  border: 1px solid var(--line-d); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav__links > li:hover .nav__dropdown,
.nav__links > li:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.8rem; color: var(--muted-d);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav__dropdown a:hover, .nav__dropdown a:focus-visible { color: var(--gold-2); background: rgba(255,255,255,0.04); }

.nav__cta { padding: 0.55rem 1.1rem !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav.open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav.open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (home) ── */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: center;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(62,107,143,0.35), transparent 65%),
    radial-gradient(700px 460px at 10% 95%, rgba(196,162,78,0.14), transparent 60%),
    var(--ink);
  color: var(--paper); overflow: hidden;
}
.hero__content { position: relative; z-index: 2; padding-block: 9rem 6rem; }
.hero__title { color: var(--white); max-width: 15ch; margin-bottom: var(--space-md); }
.hero__title em { color: var(--gold-2); }
.hero__sub { font-size: 1.15rem; color: var(--muted-d); max-width: 56ch; margin-bottom: var(--space-md); }
.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero__ring {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: min(560px, 55vw); opacity: 0.5; z-index: 1; pointer-events: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(62,107,143,0.3), transparent 65%),
    var(--ink);
  color: var(--paper);
  padding: 9.5rem var(--space-md) var(--space-xl);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); max-width: 18ch; margin-bottom: var(--space-sm); }
.page-hero .page-hero__sub { font-size: 1.15rem; color: var(--muted-d); max-width: 60ch; }
.page-hero__kicker { font-family: var(--display); font-style: italic; font-size: 1.25rem; color: var(--gold-2); margin-bottom: var(--space-xs); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.85rem 1.9rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: var(--radius); transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); }
.btn--ghost { border: 1px solid rgba(255,255,255,0.4); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--ink { border: 1px solid var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--paper); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: #4B7CA3; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.72rem; }

/* ── CARDS ── */
.cards { display: grid; gap: var(--space-sm); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-md);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(19,35,58,0.1); border-color: rgba(196,162,78,0.5); }
.card h3 { font-size: 1.3rem; }
.card p { font-size: 0.95rem; color: var(--muted); flex: 1; max-width: none; }
.card .btn { align-self: flex-start; margin-top: 0.4rem; }
.card__tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.section--dark .card { background: var(--ink-2); border-color: var(--line-d); }
.section--dark .card p { color: var(--muted-d); }
.section--mist .card { background: var(--paper); }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.two-col__text h2 { margin-bottom: var(--space-sm); }
.two-col__text p { margin-bottom: var(--space-sm); color: var(--muted); }
.section--dark .two-col__text p { color: var(--muted-d); }
.frame {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: rgba(196,162,78,0.45); font-family: var(--display); font-size: 4.5rem; font-style: italic;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ── PULL QUOTE ── */
.pullquote { border-left: 3px solid var(--gold); padding: var(--space-xs) var(--space-md); margin-block: var(--space-md); }
.pullquote p { font-family: var(--display); font-style: italic; font-size: 1.35rem; line-height: 1.45; max-width: none; }

/* ── CIRCLE OF LOVE ── */
.circle-figure { display: flex; justify-content: center; margin-block: var(--space-md); }
.circle-figure svg { width: min(460px, 88vw); height: auto; }
.circle-words { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-top: var(--space-md); }
.circle-word {
  padding: 0.45rem 1.15rem; border: 1px solid rgba(196,162,78,0.4); border-radius: 100px;
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold-2);
  background: rgba(196,162,78,0.07);
}

/* ── FLOW LIST (ordered narrative steps) ── */
.flow { display: flex; flex-direction: column; gap: 0; max-width: 560px; margin-inline: auto; }
.flow__item { padding: 0.85rem 0; border-bottom: 1px solid var(--line-d); font-size: 1.05rem; display: flex; gap: 0.9rem; align-items: baseline; }
.flow__item:last-child { border-bottom: none; }
.flow__item::before { content: '◦'; color: var(--gold); }
.section:not(.section--dark) .flow__item { border-color: var(--line); }

/* ── CHECK LIST ── */
.check-list { display: grid; gap: 0.45rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.97rem; color: var(--muted); }
.check-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.section--dark .check-list li { color: var(--muted-d); }
.check-list--cols { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-md); }

/* ── VALUES / PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.pillar { border-top: 2px solid var(--gold); padding-top: var(--space-sm); }
.pillar h3 { margin-bottom: 0.4rem; }
.pillar p { font-size: 0.95rem; color: var(--muted); max-width: none; }
.section--dark .pillar p { color: var(--muted-d); }

/* ── MEDIA GALLERY ── */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.media-item {
  aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: rgba(196,162,78,0.3); font-family: var(--display); font-size: 2rem; font-style: italic;
  overflow: hidden;
}
.media-item img { width: 100%; height: 100%; object-fit: cover; }
.media-item figcaption { display: none; }

/* ── CTA BAND ── */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; margin-bottom: var(--space-sm); }
.cta-band .btn-row { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }

/* ── CONTACT DETAILS ── */
.contact-detail { display: flex; gap: var(--space-sm); align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--line-d); font-size: 0.98rem; }
.contact-detail__label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); min-width: 90px; }
.contact-detail a:hover { color: var(--gold-2); }

/* ── FOOTER ── */
.footer { background: #0C1828; color: var(--paper); padding: var(--space-xl) var(--space-md) var(--space-md); }
.footer__inner {
  max-width: var(--max-w); margin-inline: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg); padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--line-d);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__brand-name { font-family: var(--display); font-size: 1.15rem; color: var(--white); display: flex; align-items: center; gap: 10px; }
.footer__brand p { font-size: 0.9rem; color: rgba(250,248,243,0.5); max-width: 34ch; }
.footer__col h4 { color: var(--gold); font-size: 0.68rem; letter-spacing: 0.18em; margin-bottom: var(--space-sm); }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { font-size: 0.88rem; color: rgba(250,248,243,0.55); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
  padding-top: var(--space-md); flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(250,248,243,0.3); }
.footer__tagline { font-family: var(--display); font-style: italic; font-size: 0.92rem; color: rgba(196,162,78,0.6); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav__links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-top: 1px solid var(--line-d);
    padding: 0.8rem 0 1.2rem; max-height: calc(100svh - 64px); overflow-y: auto;
  }
  .nav.open .nav__links { display: flex; }
  .nav__links > li > a { padding: 0.8rem var(--space-md); }
  .nav__links > li > a.active { box-shadow: inset 3px 0 0 var(--gold); }
  .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; border-left: 1px solid var(--line-d); border-radius: 0;
    margin-left: var(--space-md); padding: 0;
  }
  .nav__hamburger { display: flex; }
  .nav__cta { margin: 0.6rem var(--space-md) 0; justify-content: center; }
  .hero__ring { display: none; }
  .two-col { grid-template-columns: 1fr; gap: var(--space-md); }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding-block: var(--space-lg); }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .check-list--cols { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .media-grid { grid-template-columns: 1fr; }
  .hero__content { padding-block: 7.5rem 4.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════════════════════
   v4 COMPONENTS — pathway logos, homepage invitation + carousel,
   philosophy quote, NADO learning loop, featured press card
   ════════════════════════════════════════════════════════════ */

/* ── LOGO CHIPS (pathway cards + partner hero) ── */
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 210px; height: 64px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.55rem 0.9rem; overflow: hidden;
}
.logo-chip img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.logo-chip__fallback {
  display: none; font-family: var(--display); font-size: 1.25rem; font-weight: 500;
  color: var(--blue); letter-spacing: 0.1em;
}
.logo-chip--missing { background: var(--mist); border-style: dashed; }
.logo-chip--missing .logo-chip__fallback { display: block; }
.card--pathway .logo-chip { align-self: flex-start; margin-bottom: 0.35rem; }
.logo-chip--hero {
  height: 88px; max-width: 250px; margin-bottom: 1.5rem;
  border: none; box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

/* ── PAGE LOGO CARD (GYCO / NADO logo panels) ── */
.logo-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-sm); text-align: center;
  box-shadow: 0 16px 40px rgba(19,35,58,0.08);
}
.logo-panel img { max-width: min(320px, 80%); height: auto; }
.logo-panel figcaption {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* ── HOMEPAGE INVITATION FIGURE ── */
.invite-figure { margin: 0; width: 100%; max-width: 420px; justify-self: center; }
.invite-figure img {
  width: 100%; height: auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(19,35,58,0.16);
}

/* ── CAROUSEL (one image at a time · arrows · dots) ── */
.carousel { position: relative; width: 100%; max-width: 430px; justify-self: center; }
.carousel__viewport {
  overflow: hidden; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(19,35,58,0.16);
  touch-action: pan-y;
}
.carousel__track { display: flex; transition: transform 0.45s ease; }
.carousel__slide { flex: 0 0 100%; margin: 0; display: flex; flex-direction: column; }
.carousel__slide img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: contain;
  background: var(--white); user-select: none;
}
.carousel__slide figcaption {
  padding: 0.75rem 1rem; text-align: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); background: var(--paper); border-top: 1px solid var(--line);
}
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--paper); font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(19,35,58,0.32);
  transition: background 0.2s, transform 0.2s;
}
.carousel__arrow:hover { background: var(--blue); }
.carousel__arrow--prev { left: -21px; }
.carousel__arrow--next { right: -21px; }
.carousel__dots { display: flex; justify-content: center; gap: 0.35rem; margin-top: 0.9rem; }
.carousel__dot {
  width: 24px; height: 24px; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.carousel__dot::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--line); transition: background 0.2s, transform 0.2s;
}
.carousel__dot:hover::before { background: var(--blue); }
.carousel__dot[aria-current="true"]::before { background: var(--gold); transform: scale(1.3); }
.section--dark .carousel__dot::before { background: var(--line-d); }
.section--dark .carousel__dot[aria-current="true"]::before { background: var(--gold); }

/* ── CIRCLE OF LOVE — never clip the ring labels ── */
.circle-figure svg { overflow: visible; }

/* ── FOUR-UP CARDS (GYCO: Learn · Create · Serve · Lead) ── */
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card__list { display: grid; gap: 0.4rem; margin-top: 0.2rem; }
.card__list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--muted);
}
.card__list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ── PHILOSOPHY QUOTE BLOCK ── */
.quote-block {
  position: relative; max-width: 640px; margin-inline: auto; text-align: center;
  border: 1px solid rgba(196,162,78,0.45); border-radius: var(--radius);
  background: rgba(196,162,78,0.06);
  padding: calc(var(--space-lg) - 0.5rem) var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
}
.quote-block::before {
  content: '“'; position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: 4.6rem; line-height: 1;
  color: var(--gold); background: var(--ink); padding-inline: 1rem;
}
.quote-block p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem); line-height: 1.55;
  max-width: none; color: inherit;
}
.quote-block p em { color: var(--gold-2); }

/* ── NADO "I will…" LINES ── */
.say-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin-top: var(--space-md); }
.say-grid p {
  font-family: var(--display); font-style: italic; font-size: 1.15rem; max-width: none;
  background: var(--white); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.05rem 1.4rem; margin: 0;
}
.hangul-mark {
  font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', var(--body);
  font-weight: 600; font-size: clamp(4rem, 9vw, 6.5rem);
  color: var(--blue); line-height: 1;
}

/* ── LEARNING LOOP (NADO School) ── */
.loop {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md); counter-reset: loopstep; margin-top: var(--space-md);
}
.loop__step {
  position: relative; counter-increment: loopstep;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.loop__step:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(19,35,58,0.1); border-color: rgba(196,162,78,0.5); }
.loop__step::before {
  content: counter(loopstep, decimal-leading-zero);
  display: block; margin-bottom: 0.7rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold);
}
.loop__step h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.loop__step p { font-size: 0.88rem; color: var(--muted); max-width: none; }
.loop__step:not(:last-child)::after {
  content: '→'; position: absolute; right: -1.6rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.15rem;
}
.loop__step--again { border: 1px dashed var(--gold); background: rgba(196,162,78,0.05); }
.loop__return {
  text-align: center; margin-top: var(--space-sm); margin-inline: auto;
  font-family: var(--display); font-style: italic; font-size: 0.98rem; color: var(--muted);
}

/* ── FEATURED PRESS CARD (Media page) ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.32rem 0.85rem; border-radius: 100px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
}
.chip--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.chip--blue { border-color: rgba(62,107,143,0.45); color: var(--blue); }

.press-card {
  display: grid; grid-template-columns: 5fr 7fr;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 18px 44px rgba(19,35,58,0.1);
}
.press-card__media {
  position: relative; min-height: 320px;
  background: linear-gradient(150deg, var(--ink-2), var(--ink));
  display: flex; align-items: center; justify-content: center;
}
.press-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.press-card__media-fallback {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(196,162,78,0.45); font-family: var(--display); font-size: 3rem; font-style: italic;
}
.press-card__media-fallback small {
  font-family: var(--body); font-style: normal; font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,248,243,0.4);
}
.press-card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.65rem; }
.press-card__labels { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.press-card__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.press-card__publisher {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); max-width: none;
}
.press-card__desc { color: var(--muted); font-size: 1rem; max-width: none; }
.press-card__langs {
  font-family: var(--display); font-style: italic; font-size: 0.95rem; color: var(--gold);
  max-width: none;
}
.press-card__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.4rem; }

/* ── v4 RESPONSIVE ── */
@media (max-width: 1080px) {
  .loop { grid-template-columns: repeat(3, 1fr); }
  .loop__step:nth-child(3)::after { content: none; }
}
@media (max-width: 960px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .press-card { grid-template-columns: 1fr; }
  .press-card__media { min-height: 240px; }
  .invite-figure, .carousel { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 780px) {
  .loop { grid-template-columns: 1fr; }
  .loop__step::after, .loop__step:nth-child(3)::after {
    content: '↓'; right: auto; left: 50%; top: auto; bottom: -1.85rem;
    transform: translateX(-50%);
  }
  .loop__step:last-child::after { content: none; }
  .say-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards--4 { grid-template-columns: 1fr; }
  .carousel__arrow { width: 38px; height: 38px; }
  .carousel__arrow--prev { left: 8px; }
  .carousel__arrow--next { right: 8px; }
  .logo-chip--hero { height: 72px; max-width: 210px; }
}
