:root {
  --green-950: #032b22;
  --green-900: #063f31;
  --green-800: #075843;
  --green-700: #087055;
  --gold-500: #d8a526;
  --gold-300: #f1ce6d;
  --orange-500: #f36d21;
  --ink: #15231f;
  --muted: #66736f;
  --line: #dce4e0;
  --soft: #f2f6f3;
  --white: #ffffff;
  --display: "Libre Baskerville", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(3, 43, 34, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--green-950);
}

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

.skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--green-950);
  background: var(--gold-500);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.84rem;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--green-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--gold-300);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 43, 34, 0.84), rgba(3, 43, 34, 0));
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(3, 43, 34, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: 92px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.brand .custom-logo-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand > a,
.brand .custom-logo-link {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.brand img,
.custom-logo {
  width: auto;
  height: 56px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.site-nav {
  justify-self: center;
}

.nav-list,
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 900ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-portrait {
  background:
    radial-gradient(circle at 78% 34%, rgba(19, 131, 93, 0.72), transparent 30%),
    linear-gradient(125deg, #032b22 0%, #064f3c 58%, #08664c 100%);
}

.hero-slide-warm {
  color: var(--green-950);
  background:
    radial-gradient(circle at 82% 40%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(130deg, #f5bc35 0%, #f38a25 100%);
}

.hero-orbit {
  position: absolute;
  top: 10%;
  right: 7%;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(216, 165, 38, 0.3);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before { inset: 70px; }
.hero-orbit::after { inset: 145px; }

.hero-grid {
  display: grid;
  height: 760px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 20px;
}

.hero-copy {
  align-self: center;
  padding-top: 90px;
}

.hero-copy .eyebrow,
.hero-photo-copy .eyebrow {
  color: var(--gold-300);
}

.hero-slide-warm .eyebrow {
  color: var(--green-950);
}

.hero-copy h1,
.hero-copy h2,
.hero-photo-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-lead,
.hero-photo-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-slide-warm .hero-lead {
  color: rgba(3, 43, 34, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-figure-wrap {
  position: relative;
  display: flex;
  height: 690px;
  align-items: flex-end;
  justify-content: center;
}

.hero-figure {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 94%;
  height: 89%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.22));
}

.hero-figure-casual {
  height: 82%;
}

.hero-year {
  position: absolute;
  z-index: 1;
  right: -40px;
  bottom: 110px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.72;
  writing-mode: vertical-rl;
}

.hero-year span {
  color: rgba(216, 165, 38, 0.2);
}

.hero-cover,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cover {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(3, 43, 34, 0.97) 0%, rgba(3, 43, 34, 0.66) 45%, rgba(3, 43, 34, 0.18) 100%);
}

.hero-photo-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 62px;
  background: var(--gold-500);
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrows button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.hero-arrows button:hover,
.hero-arrows button:focus-visible {
  color: var(--green-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section-kicker p { margin: 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 62px;
}

.intro-copy h2,
.section-heading h2,
.join-grid h2,
.join-copy h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.intro-copy > p:not(.eyebrow),
.section-heading > p,
.join-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.signature-quote {
  position: relative;
  margin: 0;
  padding: 42px 34px;
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-quote > span {
  display: block;
  height: 38px;
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.signature-quote p {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.5;
}

.signature-quote cite {
  color: var(--gold-300);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading > div { max-width: 700px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 480px; margin-bottom: 6px; }
.section-heading-light .eyebrow { color: var(--gold-300); }
.section-heading-light > p { color: rgba(255, 255, 255, 0.65); }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.focus-card {
  min-height: 330px;
  padding: 42px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

.focus-card:first-child { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.focus-card:hover { background: var(--green-800); transform: translateY(-8px); }
.focus-number { color: var(--gold-300); font-size: 0.82rem; font-weight: 800; }
.focus-card h3 { margin: 90px 0 18px; font-family: var(--display); font-size: 1.5rem; }
.focus-card p { margin-bottom: 0; color: rgba(255, 255, 255, 0.66); }

.news-grid,
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.news-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--soft); }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.news-card:hover .news-media img { transform: scale(1.045); }
.news-body { position: relative; padding: 28px 28px 32px; }
.meta { margin-bottom: 12px; color: var(--green-700); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.news-body h2,
.news-body h3 { margin-bottom: 14px; padding-right: 22px; font-family: var(--display); font-size: 1.25rem; line-height: 1.38; }
.news-body p:not(.meta) { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }
.card-link { position: absolute; right: 24px; bottom: 26px; display: grid; width: 40px; height: 40px; place-items: center; color: var(--green-800); background: var(--soft); border-radius: 50%; }

.gallery-teaser {
  color: var(--white);
  background: var(--green-800);
}

.mosaic {
  display: grid;
  height: 560px;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.mosaic a {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.mosaic-large { grid-row: 1 / span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.mosaic a:hover img { transform: scale(1.05); }
.mosaic a::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3, 43, 34, 0.86)); content: ""; }
.mosaic span { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; font-weight: 800; }

.social-tabs { overflow: hidden; }
.tab-list { display: flex; gap: 8px; margin-bottom: 28px; }
.tab-list button { padding: 10px 20px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }
.tab-list button.is-active { color: var(--white); background: var(--green-800); border-color: var(--green-800); }
.tab-panel { animation: tab-in 320ms ease both; }
@keyframes tab-in { from { opacity: 0; transform: translateY(8px); } }

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.social-tile { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 14px; background: var(--soft); }
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms ease; }
.social-tile span { position: absolute; right: 10px; bottom: 10px; padding: 5px 8px; color: var(--white); background: rgba(3, 43, 34, 0.82); border-radius: 6px; font-size: 0.66rem; font-weight: 800; opacity: 0; transform: translateY(5px); transition: opacity 180ms ease, transform 180ms ease; }
.social-tile:hover img { transform: scale(1.07); }
.social-tile:hover span { opacity: 1; transform: none; }

.join-strip {
  background: linear-gradient(115deg, var(--gold-500), #f6cb5b);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 70px;
}

.join-grid .eyebrow { color: var(--green-950); }
.join-grid h2 { max-width: 700px; margin-bottom: 18px; }
.join-grid p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: rgba(3, 43, 34, 0.76); }
.join-logo-wrap { display: grid; justify-items: center; gap: 20px; }
.join-logo-wrap img { width: 250px; max-height: 210px; object-fit: contain; }

.site-footer {
  padding: 78px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #021d17;
}

.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 70px; padding-bottom: 54px; }
.footer-brand img { width: 220px; max-height: 110px; object-fit: contain; object-position: left center; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 440px; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-family: var(--display); font-size: 1.06rem; }
.footer-links,
.footer-links ul,
.footer-socials,
.site-footer .nav-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--gold-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.8rem; }
.footer-bottom p { margin: 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 90px;
  color: var(--white);
  background: var(--green-950);
}

.page-hero::after {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(216, 165, 38, 0.2);
  border-radius: 50%;
  content: "";
}

.page-hero h1,
.article-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) { max-width: 680px; color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; }
.page-hero .eyebrow,
.article-hero .eyebrow { color: var(--gold-300); }

.page-hero-profile { padding-bottom: 0; }
.page-hero-grid { position: relative; z-index: 2; display: grid; min-height: 500px; grid-template-columns: 1.12fr 0.88fr; align-items: center; gap: 50px; }
.page-hero-grid img { width: 100%; height: 500px; object-fit: contain; object-position: bottom center; }
.page-hero-simple { padding-bottom: 100px; }
.page-title-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.page-title-row > p { max-width: 480px !important; margin-bottom: 12px; }

.article-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: space-between; gap: 70px; }
.article-aside { position: sticky; top: 130px; align-self: start; padding-left: 24px; border-left: 3px solid var(--gold-500); }
.article-aside p { margin: 22px 0 4px; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.article-aside p:first-child { margin-top: 0; }
.article-aside strong { display: block; font-size: 0.92rem; line-height: 1.55; }
.prose { font-size: 1.06rem; }
.prose h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.15; }
.prose h3 { margin: 46px 0 18px; font-family: var(--display); font-size: 1.5rem; }
.prose p { margin-bottom: 24px; color: #3f4d49; }
.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 38px 0; padding: 26px 30px; background: var(--soft); border-left: 4px solid var(--gold-500); }
.page-editor-content { margin-top: 52px; padding-top: 44px; border-top: 1px solid var(--line); }

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 182px; width: 1px; background: var(--line); content: ""; }
.timeline li { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 65px; padding: 30px 0; }
.timeline li::before { position: absolute; top: 38px; left: 175px; width: 15px; height: 15px; background: var(--gold-500); border: 4px solid var(--soft); border-radius: 50%; content: ""; }
.timeline > li > span { color: var(--green-700); font-weight: 800; }
.timeline h3 { margin-bottom: 8px; font-family: var(--display); font-size: 1.4rem; }
.timeline p { color: var(--muted); }

.news-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pagination-wrap { margin-top: 42px; }
.nav-links { display: flex; gap: 8px; }
.nav-links .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.nav-links .current { color: var(--white); background: var(--green-800); border-color: var(--green-800); }
.article-hero { padding: 190px 0 80px; color: var(--white); background: var(--green-950); }
.article-featured { margin-top: -35px; }
.article-featured img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.article-content { max-width: 780px; padding-top: 72px; padding-bottom: 110px; }

.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; min-height: 330px; padding: 0; background: var(--soft); border: 0; border-radius: 16px; text-align: left; }
.gallery-item:nth-child(1),
.gallery-item:nth-child(6n + 1) { grid-column: span 2; }
.gallery-item:nth-child(4n + 2) { min-height: 470px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(3, 43, 34, 0.9)); content: ""; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item > span { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; color: var(--white); font-family: var(--display); font-size: 1.15rem; }
.gallery-item small { display: block; margin-bottom: 5px; color: var(--gold-300); font-family: var(--sans); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.lightbox { width: min(1100px, calc(100% - 36px)); max-width: none; padding: 0; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(2, 20, 16, 0.92); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox figcaption { padding-top: 12px; color: var(--white); text-align: center; }
.lightbox-close { position: fixed; z-index: 2; top: 22px; right: 26px; display: grid; width: 48px; height: 48px; place-items: center; color: var(--white); background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 50%; font-size: 1.8rem; line-height: 1; }

.kawan-hero { padding-bottom: 70px; background: linear-gradient(130deg, var(--green-950), var(--green-800)); }
.kawan-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 340px; align-items: center; gap: 80px; }
.kawan-hero-grid img { width: 290px; max-height: 300px; justify-self: end; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16)); }
.join-page-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 70px; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 34px; font-weight: 700; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 23px; height: 23px; place-items: center; color: var(--white); background: var(--green-700); border-radius: 50%; content: "✓"; font-size: 0.75rem; }
.join-form-card { padding: 38px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.join-form { display: grid; gap: 18px; }
.join-form label > span { display: block; margin-bottom: 7px; font-size: 0.84rem; font-weight: 800; }
.join-form input:not([type="checkbox"]),
.join-form textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: #fbfcfb; border: 1px solid #ccd8d3; border-radius: 10px; outline: 0; transition: border-color 180ms ease, box-shadow 180ms ease; }
.join-form input:focus,
.join-form textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(8, 112, 85, 0.12); }
.consent-field { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; }
.consent-field input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--green-700); }
.consent-field span { margin: 0 !important; color: var(--muted); font-size: 0.77rem !important; font-weight: 500 !important; }
.honeypot { position: absolute; left: -9999px; }
.form-alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-size: 0.86rem; font-weight: 700; }
.form-success { color: #0b5d42; background: #dff4ea; }
.form-warning { color: #7c4a00; background: #fff0cd; }
.friends-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.friend-card { display: grid; grid-template-columns: 76px 1fr; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; }
.friend-card img,
.friend-initial { display: grid; width: 76px; height: 76px; place-items: center; object-fit: cover; color: var(--white); background: var(--green-800); border-radius: 50%; font-family: var(--display); font-size: 1.8rem; }
.friend-card h3 { margin: 3px 0 4px; font-family: var(--display); font-size: 1.15rem; }
.friend-card p { margin-bottom: 0; color: var(--muted); font-size: 0.86rem; }
.empty-state { padding: 42px; background: var(--soft); border: 1px dashed #bdcec7; border-radius: var(--radius); }
.empty-state-wide { display: flex; grid-column: 1 / -1; align-items: center; gap: 30px; }
.empty-state-wide img { width: 110px; height: 110px; object-fit: contain; }
.empty-state h2,
.empty-state h3 { margin-bottom: 8px; font-family: var(--display); }
.empty-state p { margin-bottom: 0; color: var(--muted); }
.not-found { display: grid; min-height: 76vh; place-items: center; padding: 170px 0 90px; text-align: center; }
.not-found h1 { font-family: var(--display); font-size: clamp(2.6rem, 6vw, 5rem); }
.not-found p:not(.eyebrow) { max-width: 560px; margin: 0 auto 28px; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 160px 1fr auto; gap: 18px; }
  .nav-list,
  .site-nav ul { gap: 18px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; }
  .hero-copy h1,
  .hero-copy h2,
  .hero-photo-copy h2 { font-size: clamp(2.8rem, 5.8vw, 4.4rem); }
  .intro-grid { grid-template-columns: 130px 1fr; }
  .signature-quote { grid-column: 2; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .join-grid { grid-template-columns: 1fr 320px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .header-inner { min-height: 78px; grid-template-columns: 1fr auto; }
  .brand img,
  .custom-logo { height: 58px; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav { position: fixed; inset: 78px 0 0; display: none; padding: 42px 20px; background: var(--green-950); }
  .site-nav.is-open { display: block; }
  .nav-list,
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { display: block; padding: 15px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-family: var(--display); font-size: 1.35rem; }
  .site-nav a::after { display: none; }
  .hero,
  .hero-grid,
  .hero-photo-copy { min-height: 720px; height: 720px; }
  .hero-grid { grid-template-columns: 1fr; align-items: center; }
  .hero-copy { position: relative; z-index: 4; align-self: end; padding: 120px 0 210px; }
  .hero-figure-wrap { position: absolute; inset: auto -12% 0 38%; height: 580px; opacity: 0.56; }
  .hero-slide-portrait::after { position: absolute; inset: 0; z-index: 3; background: linear-gradient(90deg, rgba(3, 43, 34, 0.94) 0%, rgba(3, 43, 34, 0.58) 64%, rgba(3, 43, 34, 0.18)); content: ""; }
  .hero-slide-warm::after { background: linear-gradient(90deg, rgba(245, 188, 53, 0.95) 0%, rgba(243, 138, 37, 0.56) 72%, transparent); }
  .hero-copy h1,
  .hero-copy h2,
  .hero-photo-copy h2 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-photo-copy { justify-content: flex-end; padding-bottom: 150px; }
  .hero-shade { background: linear-gradient(0deg, rgba(3, 43, 34, 0.98) 0%, rgba(3, 43, 34, 0.58) 68%, rgba(3, 43, 34, 0.24) 100%); }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .signature-quote { grid-column: auto; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card,
  .focus-card:first-child { min-height: 0; border-right: 1px solid rgba(255, 255, 255, 0.16); border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .focus-card h3 { margin-top: 52px; }
  .news-grid,
  .news-archive-grid { grid-template-columns: 1fr 1fr; }
  .news-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .mosaic { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 390px 250px; }
  .mosaic-large { grid-column: 1 / -1; grid-row: auto; }
  .join-grid,
  .join-page-grid { grid-template-columns: 1fr; }
  .join-logo-wrap { justify-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero-grid { min-height: 560px; grid-template-columns: 1fr; }
  .page-hero-grid > div { position: relative; z-index: 3; align-self: end; padding-bottom: 80px; }
  .page-hero-grid img { position: absolute; right: -18%; bottom: 0; width: 70%; height: 500px; opacity: 0.5; }
  .article-layout { grid-template-columns: 1fr; gap: 46px; }
  .article-aside { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6n + 1) { grid-column: auto; }
  .kawan-hero-grid { grid-template-columns: 1fr 230px; gap: 28px; }
  .friends-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  .hero,
  .hero-grid,
  .hero-photo-copy { min-height: 700px; height: 700px; }
  .hero-copy { padding-bottom: 150px; }
  .hero-figure-wrap { inset: auto -30% 0 30%; height: 520px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-controls { bottom: 24px; }
  .hero-arrows { display: none; }
  .news-grid,
  .news-archive-grid { grid-template-columns: 1fr; }
  .news-card:last-child:nth-child(odd) { grid-column: auto; }
  .mosaic { display: flex; flex-direction: column; height: auto; }
  .mosaic a { min-height: 280px; }
  .mosaic-large { min-height: 370px !important; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .join-logo-wrap { justify-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .page-hero { padding-top: 145px; }
  .page-title-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .timeline::before { left: 10px; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
  .timeline li::before { top: 38px; left: 3px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { min-height: 320px !important; }
  .kawan-hero-grid { grid-template-columns: 1fr; }
  .kawan-hero-grid img { width: 180px; justify-self: start; }
  .join-form-card { padding: 26px 20px; }
  .friends-grid { grid-template-columns: 1fr; }
  .empty-state-wide { align-items: flex-start; flex-direction: column; }
}
