/* =========================================================
   LCC — Life Code Company
   Multi-page consulting & education brand
   Korean: Pretendard (clean) · English: Italianno script + Cormorant italic
   ========================================================= */

:root {
  /* Surfaces */
  --ink:       #0a0e14;
  --ink-2:     #131826;
  --ink-3:     #1d2433;
  --paper:     #ffffff;
  --bg:        #f5f1e7;
  --bg-2:      #ece6d6;
  --line:      #ddd4bf;
  --line-soft: #e7dfca;
  --line-dark: rgba(255,255,255,.10);
  --line-dark-strong: rgba(255,255,255,.18);

  /* Type */
  --fg:        #0a0e14;
  --fg-2:      #2a2f3a;
  --muted:     #6b6f7a;
  --muted-on-dark: rgba(255,255,255,.62);

  /* Accents */
  --gold:      #b88746;
  --gold-2:    #d4a866;
  --gold-soft: #efd9a7;
  --green:     #2d4a3e;
  --burgundy:  #5a2630;
  --steel:     #3a4452;

  /* Fonts */
  --font-sans:    'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:  'Italianno', 'Cormorant Garamond', cursive;
  --font-italic:  'Cormorant Garamond', 'Pretendard', Georgia, serif;
  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  /* Layout */
  --max:    1280px;
  --gutter: 36px;
  --radius: 4px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Em (Korean accent: clean Pretendard + gold)
   .script (English signature: Italianno cursive)
   .display (Elegant uppercase serif: Italiana) ---------- */
em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  font-family: inherit;
}
em.en {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05em;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.35em;
  line-height: 1;
  display: inline-block;
}
.display {
  font-family: var(--font-display);
  letter-spacing: .06em;
  font-weight: 400;
}

/* =========================================================
   HEADER (shared)
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(10,14,20,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 28px;
}
.logo { display: inline-flex; align-items: baseline; gap: 14px; color: #fff; }
.logo__mark {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 20px;
}
.logo__sub {
  font-family: var(--font-script);
  font-size: 19px;
  letter-spacing: 0;
  color: var(--gold-2);
  line-height: 1;
}
.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav { margin-left: auto; }
.nav > ul { display: flex; gap: 28px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: .18em; font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 24px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 16px;
  height: 1px; background: var(--gold);
}

.nav__panel {
  position: absolute;
  top: 100%; left: -20px;
  min-width: 230px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius);
  padding: 12px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__panel a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__panel a:hover { color: var(--gold-2); background: rgba(255,255,255,.04); }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease);
  text-transform: uppercase;
}
.cta-pill:hover { background: var(--gold-2); transform: translateY(-2px); }

.menu-btn { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; }
.menu-btn span { width: 22px; height: 1.5px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}
.mobile-nav .group { padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-nav .group:last-child { border-bottom: 0; }
.mobile-nav .group > strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .2em;
  color: var(--gold-2); text-transform: uppercase;
  margin-bottom: 10px; font-weight: 600;
}
.mobile-nav a {
  display: block; padding: 7px 0;
  color: rgba(255,255,255,.78); font-size: 14px;
}

/* =========================================================
   ATOMS
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
}
.eyebrow--light { color: var(--gold-2); }
.eyebrow--light::before { background: var(--gold-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.section-title {
  font-size: clamp(24px, 2.9vw, 40px);
  line-height: 1.18;
  letter-spacing: -.022em;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}
.section-title--light { color: #fff; }
.section-sub {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,.7); }

/* =========================================================
   HERO (Home)
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 150px 0 80px;
  display: flex; align-items: center;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(184,135,70,.18), transparent 60%),
    radial-gradient(50% 40% at 0% 90%, rgba(45,74,62,.30), transparent 60%),
    linear-gradient(180deg, #07090f 0%, #0a0e14 60%, #0a0e14 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%),
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%);
  background-size: 80px 80px;
  opacity: .35;
  pointer-events: none;
}
.hero__inner { position: relative; width: 100%; }

.hero__since {
  position: absolute; top: -50px; right: 0;
  text-align: right;
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero__since strong { display: block; color: var(--gold-2); margin-top: 4px; font-size: 12px; letter-spacing: .12em; }

.hero__signature {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold-2);
  line-height: 1;
  margin: 0 0 18px;
}

.hero__title {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -.028em;
  font-weight: 800;
  margin: 0 0 24px;
}
.hero__lead {
  max-width: 600px;
  font-size: 16px;
  color: rgba(255,255,255,.74);
  margin: 0 0 38px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }

.hero__keys {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark-strong);
}
.hero__keys > div {
  padding: 26px 20px 4px;
  text-align: center;
  border-right: 1px solid var(--line-dark-strong);
}
.hero__keys > div:last-child { border-right: 0; }
.hero__keys span {
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .25em;
  color: var(--gold-2);
}
.hero__keys strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: -.005em;
  color: #fff;
  font-weight: 700;
}
.hero__keys p { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; line-height: 1.65; }

.scroll-down {
  position: absolute;
  right: var(--gutter); bottom: 24px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .3em; color: rgba(255,255,255,.5);
}
.scroll-down i { width: 1px; height: 40px; background: rgba(255,255,255,.6); animation: scrollDot 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes scrollDot { 0% { transform: scaleY(0); } 60% { transform: scaleY(1); transform-origin: top; } 61% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   PAGE HERO (sub pages)
   ========================================================= */
.page-hero {
  padding: 160px 0 90px;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(184,135,70,.18), transparent 60%),
    linear-gradient(180deg, #07090f 0%, #0a0e14 80%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%),
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%);
  background-size: 80px 80px;
  opacity: .35; pointer-events: none;
}
.page-hero__inner { position: relative; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb i { display: inline-block; width: 18px; height: 1px; background: rgba(255,255,255,.3); }

.page-hero__kicker {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold-2);
  line-height: 1;
  margin: 0 0 14px;
}
.page-hero__title {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 800;
  margin: 0 0 22px;
}
.page-hero__lead {
  max-width: 620px;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin: 0;
}
.page-hero__meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark-strong);
  padding-top: 26px;
  gap: 20px;
}
.page-hero__meta > div span {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .25em; color: var(--gold-2); text-transform: uppercase;
}
.page-hero__meta > div strong {
  display: block; margin-top: 8px;
  font-size: 16px; color: #fff; font-weight: 600; letter-spacing: -.005em;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section--cream { background: var(--bg); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink-2 { background: var(--ink-2); color: #fff; }

.section-head { max-width: 820px; margin: 0 0 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

.idx {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .28em;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
}
.idx--light { color: var(--gold-2); }

/* =========================================================
   ABOUT PREVIEW (home)
   ========================================================= */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 90px; align-items: start;
}
.intro-copy h2 { margin-bottom: 24px; }
.intro-copy p {
  color: var(--fg-2);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 520px;
  line-height: 1.8;
}

.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}
.istat {
  padding: 36px 30px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.istat strong {
  font-family: var(--font-ui);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -.04em;
  display: inline-block;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.istat sup {
  font-family: var(--font-ui);
  font-size: 18px;
  vertical-align: super;
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}
.istat p { margin: 8px 0 0; color: var(--muted); font-size: 13px; letter-spacing: .04em; }

.intro-stats--rows { grid-template-columns: 1fr; }

/* =========================================================
   VALUES
   ========================================================= */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark-strong);
  border-left: 1px solid var(--line-dark-strong);
}
.value-card {
  padding: 42px 32px 48px;
  border-right: 1px solid var(--line-dark-strong);
  border-bottom: 1px solid var(--line-dark-strong);
  transition: background .35s var(--ease);
}
.value-card:hover { background: rgba(255,255,255,.03); }
.value-card .idx { color: var(--gold-2); }
.value-card h3 {
  font-size: 20px; margin: 24px 0 6px;
  letter-spacing: -.015em; color: #fff; font-weight: 700;
}
.value-card .kr {
  color: var(--gold-2); font-weight: 500;
  margin: 0 0 16px; font-size: 13.5px; letter-spacing: .04em;
}
.value-card p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; line-height: 1.7; }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 32px 36px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  background: var(--ink); color: #fff;
}
.svc-card:hover .svc-card__lead { color: rgba(255,255,255,.7); }
.svc-card:hover .svc-card__more { color: var(--gold-2); border-color: var(--gold-2); }
.svc-card:hover .idx { color: var(--gold-2); }
.svc-card h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  letter-spacing: -.015em;
  font-weight: 700;
}
.svc-card__lead {
  color: var(--fg-2);
  font-size: 14px;
  margin: 0 0 28px;
  line-height: 1.75;
  flex: 1;
}
.svc-card__more {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  transition: gap .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.svc-card__more:hover { gap: 14px; }

/* =========================================================
   STATEMENT
   ========================================================= */
.statement {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "“";
  position: absolute; top: -30px; left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 360px; line-height: 1;
  color: rgba(212, 168, 102, .07);
  font-weight: 600;
  pointer-events: none;
}
.statement__inner { position: relative; max-width: 880px; }
.statement p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.5;
  letter-spacing: -.005em;
  margin: 0 0 30px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.statement cite {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-2);
}

/* =========================================================
   TESTIMONIALS — long, detailed, grid
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 38px 34px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--gold); }
.testimonial::before {
  content: "“";
  position: absolute; top: 12px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px; line-height: 1;
  color: var(--gold-soft);
  opacity: .55;
  pointer-events: none;
}
.testimonial__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.testimonial__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--gold);
}
.testimonial__date {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .12em;
  color: var(--muted);
}
.testimonial__text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--fg-2);
  margin: 0;
  letter-spacing: -.005em;
}
.testimonial__foot {
  display: flex; align-items: center; gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 700;
}
.testimonial__name strong {
  display: block;
  font-size: 14.5px; color: var(--ink);
  font-weight: 700; letter-spacing: -.005em;
}
.testimonial__name span {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px; color: var(--muted);
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Compact testimonial (for home preview) */
.testimonial--compact .testimonial__text {
  font-size: 14.5px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   INSIGHT CARDS
   ========================================================= */
.insight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.insight:hover { transform: translateY(-6px); border-color: var(--ink); }
.insight__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  position: relative;
  overflow: hidden;
}
.insight__cover::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(212,168,102,.22), transparent 60%);
}
.insight__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.insight__cat {
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}
.insight h3 {
  font-size: 17px; line-height: 1.4;
  margin: 12px 0 14px;
  letter-spacing: -.012em; font-weight: 700;
  flex: 1;
}
.insight__date {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .08em;
  color: var(--muted);
}

/* Text-only insight grid (no cover image) */
.insight-grid--text .insight {
  min-height: 200px;
}
.insight-grid--text .insight__body {
  padding: 32px 30px 30px;
}
.insight-grid--text .insight h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 14px 0 18px;
}

/* =========================================================
   PAGER (testimonial pagination)
   ========================================================= */
.pager {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
}
.pager__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 6px;
}
.pager__list button {
  font-family: var(--font-ui);
  font-size: 13px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: all .25s var(--ease);
  letter-spacing: .05em;
}
.pager__list button:hover { border-color: var(--ink); }
.pager__list button.is-active {
  background: var(--ink);
  color: var(--gold-2);
  border-color: var(--ink);
}
.pager__btn {
  font-family: var(--font-ui);
  font-size: 16px;
  width: 40px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.pager__btn:hover:not(:disabled) { border-color: var(--ink); background: var(--ink); color: var(--gold-2); }
.pager__btn:disabled { opacity: .3; cursor: not-allowed; }

/* Hide testimonials not on current page */
.testimonials .testimonial[hidden] { display: none; }

/* =========================================================
   ARTICLE BODY (insight-XX.html)
   ========================================================= */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--fg);
  letter-spacing: -.005em;
}
.article-body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 60px 0 18px;
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 36px 0 12px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.article-body p { margin: 0 0 18px; }
.article-body p + h2 { margin-top: 60px; }
.article-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}
.article-body blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--gold);
  background: var(--bg-2);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
}
.article-body ul, .article-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-meta {
  max-width: 760px;
  margin: 0 auto 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: .14em;
  color: var(--muted);
}
.article-meta .cat {
  color: var(--gold); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
}
.article-back {
  max-width: 760px;
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-back a {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: .2em;
  color: var(--ink); text-transform: uppercase;
  font-weight: 600;
}
.article-back a:hover { color: var(--gold); }

/* =========================================================
   GLOBAL CITIES
   ========================================================= */
.network-visual {
  width: 100%;
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark-strong);
  background: var(--ink-2);
}
.network-visual img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

.cities {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark-strong);
  border-left: 1px solid var(--line-dark-strong);
}
.cities li {
  padding: 50px 26px;
  border-right: 1px solid var(--line-dark-strong);
  border-bottom: 1px solid var(--line-dark-strong);
  transition: background .35s var(--ease);
}
.cities li:hover { background: rgba(255,255,255,.04); }
.cities li .idx { color: var(--gold-2); }
.cities li h3 {
  font-size: 22px;
  margin: 22px 0 6px;
  letter-spacing: -.015em; color: #fff; font-weight: 700;
}
.cities li p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0; }

/* =========================================================
   PAGE NAV
   ========================================================= */
.page-nav { background: var(--ink-2); color: #fff; border-top: 1px solid var(--line-dark); }
.page-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.page-nav__cell {
  border: 1px solid var(--line-dark-strong);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.page-nav__cell:hover { background: rgba(255,255,255,.04); transform: translateY(-4px); }
.page-nav__cell span {
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .25em; color: var(--gold-2);
  text-transform: uppercase;
}
.page-nav__cell strong {
  font-size: 22px; letter-spacing: -.018em; color: #fff; font-weight: 700;
}
.page-nav__cell p { color: rgba(255,255,255,.6); font-size: 14px; margin: 0; line-height: 1.65; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #060810; color: #fff; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 70px;
  padding: 84px var(--gutter) 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer__brand .logo__mark { color: #fff; font-size: 44px; line-height: 1; }
.footer__brand .footer__sig {
  display: block;
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold-2);
  margin-top: 10px;
  line-height: 1;
}
.footer__tag {
  color: rgba(255,255,255,.55);
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 320px;
}
.footer__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
}
.footer__cta:hover { color: #fff; border-color: #fff; }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__cols h5 {
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 20px; font-weight: 600;
}
.footer__cols li { margin: 9px 0; font-size: 13.5px; color: rgba(255,255,255,.78); }
.footer__cols a { transition: color .25s var(--ease); }
.footer__cols a:hover { color: var(--gold-2); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; padding-bottom: 22px;
}
.footer__bar small { color: rgba(255,255,255,.4); font-size: 11.5px; letter-spacing: .04em; }
.footer__bar .meta { display: inline-flex; gap: 18px; align-items: center; }
.footer__bar .footer-link { color: rgba(255,255,255,.55); transition: color .2s var(--ease); }
.footer__bar .footer-link:hover { color: var(--gold-2); }
.footer__bar .footer-link small { color: inherit; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.message { display: grid; grid-template-columns: 1fr 1.4fr; gap: 90px; align-items: start; }
.message__label {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-weight: 600;
}
.message__body p {
  font-size: 16px; line-height: 1.85; color: var(--fg-2);
  margin: 0 0 22px;
  max-width: 720px;
}
.message__body p.lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 500;
}
.signature {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-ui);
  font-size: 12px; color: var(--muted); letter-spacing: .08em;
}
.signature .sig-name {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1;
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  padding: 48px 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.mv-card .idx { margin-bottom: 22px; }
.mv-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -.018em; font-weight: 800;
}
.mv-card p { color: var(--fg-2); font-size: 15px; line-height: 1.8; margin: 0; }

/* =========================================================
   METHOD PAGE
   ========================================================= */
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.life-card {
  padding: 56px 28px 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.life-card:hover { transform: translateY(-6px); background: var(--ink); color: #fff; border-color: var(--ink); }
.life-card:hover p { color: rgba(255,255,255,.7); }
.life-card:hover .life-card__big { color: var(--gold-2); }
.life-card__big {
  font-family: var(--font-ui);
  font-size: 56px; font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.04em;
}
.life-card h4 {
  font-size: 18px; margin: 24px 0 10px;
  letter-spacing: -.012em; font-weight: 700;
}
.life-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.7; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark-strong); }
.process__step {
  padding: 44px 26px 48px;
  position: relative;
}
.process__step span {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .28em; color: var(--gold-2);
  text-transform: uppercase;
}
.process__step h4 {
  font-size: 19px;
  margin: 22px 0 12px;
  letter-spacing: -.012em; color: #fff; font-weight: 700;
}
.process__step p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.7; margin: 0; }
.process__step::after {
  content: "→";
  position: absolute; right: -18px; top: 60px;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.process__step:last-child::after { display: none; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  padding: 44px 32px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.pillar h3 {
  font-size: 20px; margin: 22px 0 14px;
  letter-spacing: -.012em; font-weight: 700;
}
.pillar p { color: var(--fg-2); font-size: 14.5px; line-height: 1.75; margin: 0 0 16px; }
.pillar ul li {
  font-size: 13.5px; color: var(--fg-2);
  padding-left: 22px; position: relative;
  margin: 7px 0;
}
.pillar ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--gold);
}

/* =========================================================
   PROGRAMS — POSTER GALLERY
   ========================================================= */
.poster-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 56px;
}
.poster-filters { display: inline-flex; flex-wrap: wrap; gap: 4px; }
.poster-filter {
  padding: 9px 16px;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.poster-filter:hover { color: var(--ink); }
.poster-filter.is-active {
  color: var(--ink);
  border-color: var(--ink);
}
.poster-count {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.poster-count strong { color: var(--ink); font-size: 13px; margin-left: 6px; }

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.poster {
  --poster-bg: linear-gradient(160deg, #0a0e14, #1a2032);
  --poster-fg: #fff;
  --poster-accent: var(--gold-2);
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--poster-bg);
  color: var(--poster-fg);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.poster:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10,14,20,.18);
}
.poster::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.05) 100%),
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(255,255,255,.05) 100%);
  background-size: 40px 40px;
  opacity: .35; pointer-events: none;
}
.poster__head {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.poster__cat {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--poster-accent);
  font-weight: 600;
}
.poster__status {
  font-family: var(--font-ui);
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--poster-fg);
  font-weight: 600;
}
.poster__status--upcoming { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.poster__status--ongoing  { background: var(--green); color: #fff; border-color: var(--green); }
.poster__status--closed   { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.25); }

.poster__body { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.poster__no {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .25em; color: var(--poster-accent);
  font-weight: 600; text-transform: uppercase;
}
.poster__sub {
  font-family: var(--font-script);
  font-size: 32px; line-height: 1;
  color: var(--poster-accent);
  margin: 4px 0 12px;
}
.poster__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: 1.2;
  color: var(--poster-fg);
  margin: 0;
}
.poster__desc {
  margin: 12px 0 0;
  font-size: 12.5px; line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 90%;
}
.poster--light .poster__desc { color: rgba(10,14,20,.7); }

.poster__foot {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.poster--light .poster__foot { border-top-color: rgba(10,14,20,.18); }
.poster__date {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: .15em; color: var(--poster-fg);
  font-weight: 600;
}
.poster__loc {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 500;
  text-align: right;
}
.poster--light .poster__loc { color: rgba(10,14,20,.6); }

/* poster color variants */
.poster--ink {
  --poster-bg: linear-gradient(160deg, #07090f, #1a2032);
  --poster-fg: #fff; --poster-accent: var(--gold-2);
}
.poster--gold {
  --poster-bg: linear-gradient(160deg, #c89b5a, #8a6230);
  --poster-fg: #ffffff; --poster-accent: #fff3dc;
}
.poster--cream {
  --poster-bg: linear-gradient(160deg, #f5f1e7, #ddd1b2);
  --poster-fg: var(--ink); --poster-accent: var(--gold);
  border-color: var(--line);
}
.poster--cream.poster, .poster--paper.poster, .poster--sand.poster { color: var(--ink); }
.poster--cream.poster .poster__loc,
.poster--cream.poster .poster__desc { color: rgba(10,14,20,.65); }
.poster--paper {
  --poster-bg: #fff;
  --poster-fg: var(--ink); --poster-accent: var(--gold);
  border-color: var(--ink);
}
.poster--paper .poster__loc,
.poster--paper .poster__desc { color: rgba(10,14,20,.65); }
.poster--paper::after { opacity: 0; }
.poster--green {
  --poster-bg: linear-gradient(160deg, #2d4a3e, #16271f);
  --poster-fg: #fff; --poster-accent: #d8b984;
}
.poster--burgundy {
  --poster-bg: linear-gradient(160deg, #6e2c38, #34141b);
  --poster-fg: #fff; --poster-accent: #e8c89c;
}
.poster--steel {
  --poster-bg: linear-gradient(160deg, #4a5566, #1f2533);
  --poster-fg: #fff; --poster-accent: var(--gold-2);
}
.poster--sand {
  --poster-bg: linear-gradient(160deg, #ece6d6, #c8b890);
  --poster-fg: var(--ink); --poster-accent: var(--ink);
  border-color: var(--line);
}
.poster--sand .poster__loc,
.poster--sand .poster__desc { color: rgba(10,14,20,.65); }
.poster--sand .poster__sub { color: var(--burgundy); }

/* =========================================================
   POSTER MARQUEE — infinite scrolling program archive
   ========================================================= */
.poster-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 32px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.poster-marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: poster-marquee 90s linear infinite;
  will-change: transform;
}
.poster-marquee:hover .poster-marquee__track,
.poster-marquee:focus-within .poster-marquee__track {
  animation-play-state: paused;
}
.poster-marquee .poster-card {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 891 / 1259;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow: 0 12px 28px rgba(10, 14, 20, .12), 0 2px 6px rgba(10, 14, 20, .08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.poster-marquee .poster-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 44px rgba(10, 14, 20, .22), 0 4px 10px rgba(10, 14, 20, .12);
}
.poster-marquee .poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes poster-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .poster-marquee { padding: 20px 0; }
  .poster-marquee__track { gap: 18px; animation-duration: 70s; }
  .poster-marquee .poster-card { width: 200px; border-radius: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .poster-marquee__track { animation: none; }
  .poster-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* "How to apply" section reuses .process */

/* =========================================================
   INSIGHTS / NOTICE
   ========================================================= */
.notice { border-top: 1px solid var(--line); }
.notice li {
  display: grid; grid-template-columns: 130px 130px 1fr;
  gap: 28px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s var(--ease);
}
.notice li:hover { padding-left: 14px; }
.notice li time {
  font-family: var(--font-ui);
  font-size: 12.5px; letter-spacing: .08em; color: var(--muted);
}
.notice li .tag {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: .2em;
  background: var(--ink); color: #fff;
  padding: 6px 12px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
}
.notice li h4 { margin: 0; font-size: 15.5px; letter-spacing: -.005em; font-weight: 600; line-height: 1.5; }
.notice li:hover h4 { color: var(--gold); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-info dt {
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px; font-weight: 600;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 8px 0 0;
  font-size: 16px; color: var(--ink);
  letter-spacing: -.005em;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 42px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-ui);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 14.5px; color: var(--ink);
  font-family: inherit;
  background: var(--bg);
  letter-spacing: 0; text-transform: none; font-weight: 400;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--ink); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .contact-consent {
  flex-direction: row; align-items: flex-start; gap: 10px;
  text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: 12.5px; line-height: 1.65; color: var(--muted);
}
.contact-form .contact-consent input {
  width: auto; margin-top: 3px; flex-shrink: 0;
}
.contact-form .contact-consent a { text-decoration: underline; color: var(--ink); }
.contact-form button { margin-top: 10px; align-self: flex-start; }

.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; letter-spacing: -.008em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-ui); font-size: 22px; color: var(--gold);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 16px 0 0;
  color: var(--fg-2); font-size: 14.5px; line-height: 1.8;
  max-width: 820px;
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .20s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .28s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .36s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .44s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: .52s; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: .60s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav { display: none; }
  .cta-pill { display: none; }
  .menu-btn { display: inline-flex; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .cities { grid-template-columns: repeat(2, 1fr); }
  .page-nav__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }

  .message { grid-template-columns: 1fr; gap: 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .life-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step { border-bottom: 1px solid var(--line-dark-strong); }
  .process__step::after { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero__meta { grid-template-columns: repeat(2, 1fr); }
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .header__inner { padding: 12px 22px; gap: 16px; }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
  .hero__keys { grid-template-columns: 1fr; }
  .hero__keys > div { border-right: 0; border-bottom: 1px solid var(--line-dark-strong); padding: 22px 0; }
  .hero__keys > div:last-child { border-bottom: 0; }
  .scroll-down { display: none; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero__meta { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bar .container { flex-direction: column; gap: 8px; align-items: flex-start; }
  .life-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: 0; }
  .notice li { grid-template-columns: 1fr; gap: 6px; }
  .contact-form { padding: 28px 22px; }
  .poster-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 32px 28px 28px; }
}
