/* =============================================
   RRR MALAYSIA — GWANGJU BIENNALE INSPIRED THEME
   Clean white, black, minimal editorial
   ============================================= */

:root {
  --white:    #FFFFFF;
  --black:    #000000;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #DDDDDD;
  --gray-400: #BBBBBB;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #111111;
  --gold:     #f5be02;
  --red:      #CC2200;

  --font-sans:  'Inter', 'Noto Sans', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --nav-h:    64px;
  --max-w:    1200px;
  --sidebar-w: 200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: .85rem; font-weight: 600; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; min-width: 0; }
.logo-mark {
  width: 36px; height: 36px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before,
.logo-mark::after {
  content: '';
  position: absolute;
  background: var(--black);
}
.logo-mark::before { width: 36px; height: 4px; top: 6px; left: 0; }
.logo-mark::after  { width: 4px; height: 30px; bottom: 0; left: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: .78rem; font-weight: 800; color: var(--black); letter-spacing: .04em; text-transform: uppercase; line-height: 1.1; }
.logo-sub   { font-size: .65rem; font-weight: 800; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* Nav */
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 0; }
.site-nav a {
  display: block; padding: .4rem .9rem;
  font-size: .82rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--black); }
.site-nav a.active { font-weight: 700; }

/* Dropdown */
.site-nav li.has-dropdown { position: relative; }
.site-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  width: 220px;
  z-index: 200;
  flex-direction: column;
}
/* Caret arrow */
.site-nav .dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--black);
}
/* Bridge gap so hover doesn't break */
.site-nav li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}
.site-nav li.has-dropdown:hover .dropdown { display: flex; }
.site-nav .dropdown {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-nav .dropdown li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
.site-nav .dropdown li:last-child { border-bottom: none; }
.site-nav .dropdown a {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  transition: background .15s, color .15s;
  box-sizing: border-box;
  text-align: left;
}
.site-nav .dropdown a:hover,
.site-nav .dropdown a.active {
  background: rgba(255,255,255,.08);
  color: var(--gold);
  font-weight: 600;
}

/* Header icons */
.header-icons { display: flex; align-items: center; gap: .25rem; }
.header-icon-btn {
  width: 36px; height: 36px;
  border: none; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700); transition: color .15s; font-size: 1.1rem;
}
.header-icon-btn:hover { color: var(--black); }

/* Right-side controls (login + lang + hamburger) */
.header-controls {
  display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-left: auto;
}

/* Member login button — compact */
.header-member-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--black); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 20px; text-decoration: none;
  white-space: nowrap; transition: background .15s;
}
.header-member-btn:hover { background: #333; }
.header-member-btn--gold { background: var(--gold); color: var(--black); }
.header-member-btn--gold:hover { background: #e5b000; }

/* Language toggle */
.lang-toggle { display: flex; align-items: center; gap: .15rem; }
.lang-btn {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gray-500); text-decoration: none; padding: .2rem .3rem;
  transition: color .15s;
}
.lang-btn:hover { color: var(--black); }
.lang-btn.active { color: var(--black); font-weight: 800; }
.lang-divider { font-size: .6rem; color: var(--gray-300); }

/* Mobile-only auth link in burger menu */
.nav-mobile-auth { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); transition: .3s; }

/* ── CONTAINERS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 60px 0; }
.section-sm  { padding: 40px 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: .6rem 0;
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  font-size: .75rem; color: var(--gray-500);
  display: flex; align-items: center; gap: .4rem;
}
.breadcrumb-inner a { color: var(--gray-500); }
.breadcrumb-inner a:hover { color: var(--black); }
.breadcrumb-inner svg { width: 10px; height: 10px; }

/* ── PAGE TITLE (with corner mark) ── */
.page-title-section {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.page-title-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  position: relative;
}
.corner-mark {
  display: inline-block; width: 10px; height: 10px;
  border-top: 3px solid var(--black); border-left: 3px solid var(--black);
  margin-right: .5rem; vertical-align: middle;
  position: relative; top: -.15em;
}
.page-title-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  display: flex; align-items: center; gap: .5rem;
}

/* ── INNER PAGE LAYOUT (sidebar + content) ── */
.inner-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.5rem;
  display: grid; grid-template-columns: var(--sidebar-w) 1fr; gap: 3rem; align-items: start;
}
.inner-layout > main { min-width: 0; overflow: hidden; }
.inner-sidebar {}
.sidebar-box {
  border: 1px solid var(--gray-300); overflow: hidden;
}
.sidebar-box-title {
  background: var(--black); color: var(--white);
  padding: .85rem 1rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .02em;
}
.sidebar-box ul { }
.sidebar-box li a {
  display: block; padding: .7rem 1rem;
  font-size: .82rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: background .15s;
}
.sidebar-box li:last-child a { border-bottom: none; }
.sidebar-box li a:hover,
.sidebar-box li a.active { background: var(--gray-100); color: var(--black); font-weight: 600; }

/* ── HERO SLIDER (home) ── */
.hero {
  min-height: 560px; max-height: 680px; height: 60vw;
  background: var(--gray-900);
  position: relative; overflow: hidden;
}

/* Individual slides stacked via absolute positioning */
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity .9s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

/* Background image per slide */
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 9s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3rem 1.5rem; max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3.5rem); max-width: 700px; line-height: 1.15; }
.hero-tagline { color: rgba(255,255,255,.65); font-size: .9rem; max-width: 520px; margin: .75rem 0 1.75rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Arrow nav */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 1.1rem;
  transition: background .2s; user-select: none;
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }
.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }

/* Dot nav */
.hero-dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: .45rem; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* Hide arrows when only 1 slide */
.hero[data-slides="1"] .hero-arrow,
.hero[data-slides="1"] .hero-dots { display: none; }

/* Scroll-to-top btn */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 44px; height: 44px;
  background: var(--black); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  overflow: hidden; background: var(--white);
  border-top: 2px solid var(--black); border-bottom: 2px solid var(--black);
  padding: .75rem 0;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--black);
  flex-shrink: 0;
}
.marquee-item span { color: var(--gray-300); margin: 0 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 2px solid var(--black); padding-bottom: .75rem;
  margin-bottom: 1.5rem;
}
.section-header h2 { font-size: 1.1rem; font-weight: 700; }
.section-header a  { font-size: .78rem; color: var(--gray-500); transition: color .15s; }
.section-header a:hover { color: var(--black); }

/* ── PROGRAM/EVENT CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.prog-card { cursor: pointer; transition: opacity .2s; }
.prog-card:hover { opacity: .85; }
.prog-card-img {
  width: 100%; aspect-ratio: 3/4; background: var(--gray-200);
  overflow: hidden; position: relative;
}
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.prog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gray-400);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.prog-card-body { padding: .75rem 0; }
.prog-card-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: .2rem;
}
.prog-card h3 { font-size: .85rem; font-weight: 600; line-height: 1.35; margin-bottom: .25rem; }
.prog-card-date { font-size: .75rem; color: var(--gray-500); }
.prog-card--img-hover { opacity: 1 !important; }
.prog-card--img-hover:hover .prog-card-img-overlay { opacity: 0 !important; }
.prog-card--img-hover:hover .prog-card-icon-label { opacity: 0 !important; }

/* ── NEWS TABLE ── */
.news-table-wrap { margin-top: 1rem; }
.news-table { width: 100%; border-collapse: collapse; }
.news-table thead th {
  padding: .7rem 1rem; text-align: left;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  border-top: 2px solid var(--black); border-bottom: 1px solid var(--gray-300);
  background: var(--white);
}
.news-table thead th.th-no  { width: 60px; text-align: center; }
.news-table thead th.th-cat { width: 160px; }
.news-table thead th.th-date{ width: 110px; text-align: right; }
.news-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background .12s;
}
.news-table tbody tr:hover { background: var(--gray-100); }
.news-table td { padding: .85rem 1rem; font-size: .85rem; }
.news-table td.td-no { text-align: center; color: var(--gray-500); font-size: .78rem; }
.news-table td.td-date { text-align: right; color: var(--gray-500); font-size: .78rem; white-space: nowrap; }
.news-table .news-subject a { color: var(--gray-900); transition: color .15s; font-weight: 400; }
.news-table .news-subject a:hover { color: var(--black); text-decoration: underline; }

/* Category badges */
.cat-badge {
  display: inline-block; padding: .2rem .55rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
}
.cat-badge-dark   { background: var(--black); color: var(--white); }
.cat-badge-red    { background: var(--red); color: var(--white); }
.cat-badge-gold   { background: var(--gold); color: var(--white); }
.cat-badge-gray   { background: var(--gray-700); color: var(--white); }
.cat-badge-green  { background: #2a7a3b; color: var(--white); }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .25rem; margin-top: 2rem;
}
.page-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; border: 1px solid var(--gray-300);
  cursor: pointer; transition: background .15s, color .15s; color: var(--gray-700);
}
.page-btn:hover,
.page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.page-btn.nav { font-size: 1rem; border-color: var(--gray-200); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; border: 2px solid transparent;
  cursor: pointer; transition: all .2s;
}
.btn-black  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: var(--gray-900); }
.btn-outline{ background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-w:hover { background: var(--white); color: var(--black); }
.btn-gold   { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── TABS ── */
.tabs { display: flex; border-bottom: 1px solid var(--gray-300); margin-bottom: 2rem; }
.tab-btn {
  padding: .7rem 1.25rem; font-size: .85rem; font-weight: 500;
  border: none; background: none; cursor: pointer; color: var(--gray-500);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.tab-btn.active { color: var(--black); border-bottom-color: var(--black); font-weight: 700; }
.tab-btn:hover  { color: var(--black); }

/* ── ABOUT / CONTENT PAGES ── */
.content-body { max-width: 760px; }
.content-body p { font-size: .92rem; color: var(--gray-700); line-height: 1.9; }
.content-body h3 { margin: 2rem 0 .75rem; }

/* Who We Are boxes */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-200); margin-top: 2.5rem; }
.info-cell { background: var(--white); padding: 2rem; }
.info-cell h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: .75rem; }
.info-cell ul { display: flex; flex-direction: column; gap: .5rem; }
.info-cell li { font-size: .85rem; color: var(--gray-700); padding-left: 1rem; position: relative; }
.info-cell li::before { content: '—'; position: absolute; left: 0; color: var(--gray-400); }

/* Vision block */
.vision-block {
  background: var(--black); color: var(--white);
  padding: 3rem; margin: 2.5rem 0;
}
.vision-block h2 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.vision-block p {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,.85); line-height: 1.6; font-style: italic;
}
.vision-block strong { color: var(--gold); font-style: normal; }

/* ── SIMULATION ── */
.sim-form-wrap {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 2rem; max-width: 680px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4rem; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .65rem .85rem;
  border: 1px solid var(--gray-300); background: var(--white);
  font-family: var(--font-sans); font-size: .88rem; color: var(--black);
  outline: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sim-result {
  margin-top: 2rem; border: 2px solid var(--black);
  display: none; overflow: hidden;
}
.sim-result.show { display: block; }
.sim-result-header {
  background: var(--black); color: var(--white);
  padding: .85rem 1.25rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.sim-result-body { padding: 1.25rem; }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: .85rem;
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: var(--gray-500); }
.result-row .value { font-weight: 600; }
.result-row.highlight .value { font-size: 1.4rem; font-weight: 700; color: var(--black); }
.result-row.highlight .label { font-weight: 600; color: var(--black); }

/* ── STEPS / GEARS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gray-200); margin-top: 1.5rem; }
.step-cell { background: var(--white); padding: 1.75rem 1.25rem; }
.step-num { font-size: 2.5rem; font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: .75rem; }
.step-cell h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: .5rem; }
.step-cell p { font-size: .82rem; color: var(--gray-500); margin: 0; }

/* ── TIMELINE ── */
.timeline { border-left: 2px solid var(--gray-200); padding-left: 2rem; margin-top: 2rem; }
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.65rem; top: .1rem;
  width: 26px; height: 26px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}
.tl-phase { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.tl-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.tl-item p  { font-size: .83rem; color: var(--gray-500); margin: 0; }

/* ── CMO TABLE ── */
.data-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .85rem; }
.data-table thead th {
  background: var(--black); color: var(--white);
  padding: .75rem 1rem; text-align: left;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.data-table tbody td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-200); }
.data-table tbody tr:hover td { background: var(--gray-100); }

/* ── LEGAL GAP ── */
.gap-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.gap-col { padding: 1.75rem; border: 1px solid var(--gray-200); }
.gap-col-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.gap-col-title.ok   { color: #2a7a3b; }
.gap-col-title.miss { color: var(--red); }
.gap-col ul { display: flex; flex-direction: column; }
.gap-col li { padding: .55rem 0; border-bottom: 1px solid var(--gray-200); font-size: .85rem; display: flex; align-items: flex-start; gap: .6rem; }
.gap-col li:last-child { border-bottom: none; }
.gap-col.ok   li::before { content: '✓'; color: #2a7a3b; font-weight: 700; flex-shrink: 0; }
.gap-col.miss li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── FRAMEWORK ── */
.framework-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gray-200); margin-top: 1.5rem; }
.fw-cell { background: var(--white); padding: 1.75rem; }
.fw-cell-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.fw-cell h4 { font-size: .85rem; font-weight: 700; margin-bottom: .5rem; }
.fw-cell p  { font-size: .82rem; color: var(--gray-500); margin: 0; }

/* ── NEWSLETTER / WACANA STRIP ── */
.wacana-strip {
  background: var(--black); color: var(--white);
  padding: 2.5rem 0; text-align: center;
}
.wacana-strip .eyebrow { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.wacana-strip h2 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; letter-spacing: .04em; line-height: 1; }
.wacana-strip .sub { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .5rem; }

/* ── FEEDBACK ── */
.feedback-wrap { max-width: 680px; }
.feedback-wrap textarea { min-height: 130px; resize: vertical; }
.alert { padding: .9rem 1.25rem; margin-bottom: 1.25rem; border-left: 3px solid; font-size: .85rem; }
.alert-success { background: #f0fff4; border-color: #48bb78; color: #276749; }
.alert-error   { background: #fff5f5; border-color: #fc8181; color: #c53030; }

/* ── OUR ADVOCACY BENTO ── */
.ldrt-section {
  background: var(--white);
  color: var(--black);
  border-top: 2px solid var(--black);
  padding: 60px 0;
}
.ldrt-section .container {
}

/* Bento grid — 3 columns */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  overflow: hidden;
}

/* Base cell */
.bento-cell {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .75rem;
  transition: background .2s;
  border: 1px solid var(--gray-200);
}

/* A — Logo: col 1, row 1 */
.bento-logo {
  grid-column: 1;
  grid-row: 1;
  background: var(--gray-100);
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  min-height: 260px;
}
.ldrt-logo-img {
  max-width: 190px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* B — Headline: col 2–3, row 1 */
.bento-headline {
  grid-column: 2 / 4;
  grid-row: 1;
  justify-content: center;
  gap: .85rem;
  background: var(--white);
}

/* C/D/E — Pillars: col 1–3, row 2 */
.bento-pillar {
  grid-row: 2;
  justify-content: flex-start;
  padding: 2rem 2.25rem;
}
.bento-pillar:hover { background: var(--gray-100); }
.bento-pillar--gold { background: var(--white); }

/* F — News: col 4, row 2 */
.bento-news {
  grid-column: 4;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
  text-decoration: none;
  display: block;
  background: var(--black);
}
.bento-news-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .3s, transform .4s;
}
.bento-news:hover .bento-news-img { opacity: .7; transform: scale(1.04); }
.bento-news-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .6rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
}
.bento-news-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.bento-news-quote {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}
.bento-news-cta {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Shared typography */
.ldrt-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0;
}
.ldrt-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}
.ldrt-headline em { font-style: italic; color: var(--gold); }
.ldrt-sub {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}
.ldrt-pillar-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-200);
  margin-bottom: .75rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.ldrt-pillar-icon {
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--black);
}
.bento-pillar h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  margin-bottom: .6rem;
}
.bento-pillar p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

/* News card below bento */
.ldrt-news-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  border: 1px solid var(--gray-200);
}
.ldrt-news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-200);
  text-decoration: none;
  min-height: 260px;
}
.ldrt-news-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block; transition: transform .4s;
}
.ldrt-news-thumb:hover img { transform: scale(1.04); }
.ldrt-news-thumb-label {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--black); color: var(--white);
  font-size: .6rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem .65rem;
}
.ldrt-news-body {
  padding: 2.25rem 2.5rem;
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  min-width: 0;
}
.ldrt-news-tag { font-size: .68rem; color: var(--gray-500); letter-spacing: .05em; }
.ldrt-news-quote {
  margin: 0; font-size: 1.05rem; font-weight: 700;
  line-height: 1.55; color: var(--black);
  border-left: 3px solid var(--gold);
  padding-left: 1.15rem; font-style: italic;
}
.ldrt-news-excerpt { font-size: .82rem; color: var(--gray-600); line-height: 1.75; margin: 0; }
.ldrt-news-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; background: var(--black);
  padding: .6rem 1.2rem; align-self: flex-start;
  margin-top: auto; transition: background .2s;
}
.ldrt-news-cta:hover { background: var(--gray-700); }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-logo  { grid-column: 1; grid-row: 1; min-height: 180px; }
  .bento-headline { grid-column: 2; grid-row: 1; }
  .bento-pillar { grid-column: unset; grid-row: unset; }
  .ldrt-news-card { grid-template-columns: 1fr; }
  .ldrt-news-thumb { min-height: 200px; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-logo, .bento-headline { grid-column: 1; grid-row: unset; }
}

/* ── PUBLICATION LIST (homepage) ── */
.pub-list {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pub-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background .15s;
}
.pub-row:last-child { border-bottom: none; }
.pub-row:hover { background: var(--gray-100); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.pub-main {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.pub-num {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: .1em;
  margin-top: .15rem;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.pub-content { display: flex; flex-direction: column; gap: .3rem; }
.pub-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  line-height: 1.45;
}
.pub-title:hover { text-decoration: underline; }
.pub-authors {
  font-size: .75rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}
.pub-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-end;
  text-align: right;
}
.pub-journal {
  font-size: .72rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.pub-year {
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .05em;
}
.pub-doi {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: .25rem .6rem;
  text-decoration: none;
  transition: background .15s;
}
.pub-doi:hover { background: var(--gray-700); }
@media (max-width: 768px) {
  .pub-row { grid-template-columns: 1fr; gap: .75rem; }
  .pub-meta { align-items: flex-start; text-align: left; flex-direction: row; flex-wrap: wrap; }
}

/* ── CONTACT ── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 1px 0 0 0 var(--gray-200), 0 1px 0 0 var(--gray-200);
  transition: background .2s;
}
.contact-card:hover { background: var(--gray-100); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-body { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.contact-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0;
}
.contact-card-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  word-break: break-all;
}
.contact-card-value:hover { text-decoration: underline; }
.contact-card-cta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  padding: .5rem .9rem;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.contact-card-cta:hover { background: var(--gray-700); }

/* Contact form */
.contact-form-wrap { max-width: 680px; }
.contact-form-wrap input,
.contact-form-wrap textarea {
  border: 1px solid var(--black) !important;
  background: var(--white) !important;
  color: var(--black) !important;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: 2px solid var(--black) !important;
  outline-offset: 0 !important;
}
.contact-form-wrap textarea { min-height: 140px; resize: vertical; }

/* Social cards grid */
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.social-card-top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.social-card-platform {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.social-card-handle {
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.social-card-btn {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: .4rem .85rem;
  margin-top: .5rem;
  align-self: flex-start;
  transition: background .15s;
}
.social-card:hover .social-card-btn { background: var(--gray-700); }
@media (max-width: 560px) {
  .social-cards-grid { grid-template-columns: 1fr; }
}

/* ── RESEARCH & PUBLICATION ── */
.research-card {
  padding: 2rem 2rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background .2s;
}
.research-card:last-child { border-bottom: none; }
.research-card:hover { background: var(--gray-100); }
.research-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.research-num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}
.research-year {
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-left: auto;
}
.research-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}
.research-title a {
  color: var(--black);
  text-decoration: none;
}
.research-title a:hover { text-decoration: underline; }
.research-authors {
  font-size: .8rem;
  color: var(--gray-600);
  margin: 0;
  font-weight: 500;
}
.research-journal {
  font-size: .8rem;
  color: var(--gray-500);
  margin: 0;
}
.research-abstract {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.research-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.research-kw {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray-600);
  background: var(--gray-200);
  padding: .2rem .55rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.research-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.research-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  padding: .45rem 1rem;
  transition: background .2s;
}
.research-link-btn:hover { background: var(--gray-700); }
.research-link-doi {
  font-size: .7rem;
  color: var(--gray-500);
  text-decoration: none;
  font-family: monospace;
}
.research-link-doi:hover { color: var(--black); text-decoration: underline; }

/* ── RRR LIFECYCLE COMPARE ── */
.rrr-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--gray-200);
}
.rrr-col {
  display: flex;
  flex-direction: column;
}
.rrr-col-header {
  padding: 1rem 1.5rem .75rem;
  border-bottom: 1px solid var(--gray-200);
}
.rrr-col-status {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rrr-col--before .rrr-col-status { color: #c53030; }
.rrr-col--after  .rrr-col-status { color: #276749; }
.rrr-col-sub {
  font-size: .7rem;
  color: var(--gray-400);
  margin: .2rem 0 0;
}
/* Divider */
.rrr-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.25rem;
  background: var(--black);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
}
/* Cards */
.rrr-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-bottom: 1px solid var(--gray-200);
  flex: 1;
}
.rrr-card:last-child { border-bottom: none; }
.rrr-card--before { background: #fdf5f5; }
.rrr-card--after  { background: #f5fdf7; }
.rrr-card--dark   { background: var(--black); border: none; }
.rrr-card-label {
  font-size: .85rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}
.rrr-card p {
  font-size: .82rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
}
.rrr-card-note {
  font-size: .76rem !important;
  color: var(--gray-400) !important;
  font-style: italic;
}
.rrr-card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  align-self: flex-start;
  margin-top: .2rem;
}
.rrr-card-tag--red   { background: #fff0f0; color: #c53030; border: 1px solid #fc8181; }
.rrr-card-tag--green { background: #f0fff4; color: #276749; border: 1px solid #68d391; }
@media (max-width: 700px) {
  .rrr-compare { grid-template-columns: 1fr; }
  .rrr-divider { flex-direction: row; padding: .85rem 1.5rem; justify-content: center; }
}

/* ── TIKTOK FEED ── */
.tiktok-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 3.5rem 0;
}
.tiktok-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.tiktok-header-left {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.tiktok-logo-icon { color: var(--black); flex-shrink: 0; }
.tiktok-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 .15rem;
  letter-spacing: -.01em;
}
.tiktok-sub {
  font-size: .75rem;
  color: var(--gray-500);
  margin: 0;
}
.tiktok-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  padding: .6rem 1.2rem;
  transition: background .2s;
  white-space: nowrap;
}
.tiktok-follow-btn:hover { background: var(--gray-700); }
/* Scroll row */
.tiktok-scroll-wrapper { position: relative; }
.tiktok-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.tiktok-grid::-webkit-scrollbar { display: none; }
/* Poster card — 3 visible, 9:16 portrait */
.tt-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}
.tt-card-thumb {
  position: absolute;
  inset: 0;
}
.tt-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tt-card:hover .tt-card-thumb img { transform: scale(1.05); }
.tt-card-thumb-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
}
/* Play button */
.tt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s, transform .2s;
}
.tt-card:hover .tt-play-btn {
  background: var(--black);
  transform: translate(-50%, -50%) scale(1.1);
}
/* Bottom gradient + title */
.tt-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem .85rem;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
}
.tt-card-title {
  font-size: .75rem;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
/* Arrow nav */
.tiktok-nav {
  display: flex;
  gap: .5rem;
  margin-top: .85rem;
  justify-content: flex-end;
}
.tiktok-nav-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.tiktok-nav-btn:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.tiktok-nav-btn svg { pointer-events: none; }
@media (max-width: 768px) {
  .tt-card { flex: 0 0 75vw; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black); color: rgba(255,255,255,.55);
  padding: 2.5rem 0 0;
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem 2rem;
  display: flex; align-items: flex-start; gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo .logo-mark::before,
.footer-logo .logo-mark::after { background: var(--white); }
.footer-logo .logo-title { color: var(--white); }
.footer-logo .logo-sub   { color: var(--gold); }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: .6rem; max-width: 260px; line-height: 1.6; }

.footer-links-group { margin-left: auto; display: flex; gap: 3rem; }
.footer-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a  { font-size: .78rem; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col a:hover { color: var(--white); }

.footer-social { display: flex; align-items: center; gap: .5rem; }
.social-btn {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: background .15s, color .15s; cursor: pointer;
}
.social-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: .72rem; color: rgba(255,255,255,.25);
}
.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-partner-logos {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem 2rem;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
}
.partner-logo-item { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .06em; text-transform: uppercase; }

/* ── SEARCH BAR (overlay) ── */
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.8); align-items: flex-start; padding-top: 6rem;
}
.search-overlay.open { display: flex; }
.search-bar {
  max-width: 600px; margin: 0 auto; width: 100%; padding: 0 1.5rem;
  display: flex; gap: 0;
}
.search-bar input {
  flex: 1; padding: 1rem 1.25rem; font-size: 1rem;
  border: none; outline: none; background: var(--white);
}
.search-bar button {
  padding: 1rem 1.5rem; background: var(--black); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem;
}
.search-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid    { grid-template-columns: repeat(2,1fr); }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .framework-grid{ grid-template-columns: 1fr 1fr; }
  .inner-layout  { grid-template-columns: 1fr; }
  .inner-sidebar { display: none; }
  .footer-links-group { gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .header-inner { gap: .5rem; padding: 0 .75rem; }
  .header-member-btn { display: none; }
  .site-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--white); padding: 1.5rem; border-top: 1px solid var(--gray-200); overflow-y: auto; z-index: 999; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a  { padding: .9rem 0; border-bottom: 1px solid var(--gray-200); font-size: .9rem; }
  .nav-toggle  { display: flex; }
  .nav-mobile-auth { display: block !important; text-align: center; }
  .nav-mobile-auth-btn { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .9rem 0; border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: inherit; text-decoration: none; background: none; }
  .nav-mobile-auth-btn--gold { color: var(--gold); }
  .header-icons .header-icon-btn:not(:last-child) { display: none; }
  .hero { min-height: 420px; height: auto; }
  .hero-slide { min-height: 420px; }
  .hero-arrow { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .gap-cols  { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-links-group { flex-direction: column; gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .news-table thead th.th-no  { display: none; }
  .news-table tbody td.td-no  { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
}
