/* =========================================================================
   Oslo lietuvių bendruomenė — redesign
   Design language modeled on the Minority Rights Group visual system:
   Lora (serif display) + Inter (grotesque UI), forest-green palette,
   sharp-cornered components, hairline rules, editorial whitespace.
   ========================================================================= */

:root {
  /* palette */
  --green:        #467885;   /* primary — headings, logo, links, active nav (teal) */
  --green-dark:   #2c4f58;   /* dark band (membership / footer accents)     */
  --green-bright: #5fd0e3;   /* primary CTA fill (bright aqua)              */
  --sage:         #c7dee4;   /* secondary button fill (pale teal)          */
  --black:        #0a0a0a;
  --ink:          #111111;   /* body text                                   */
  --white:        #ffffff;
  --paper:        #f5f4f0;   /* subtle off-white section bg                 */
  --line:         rgba(0,0,0,.16);
  --line-light:   rgba(0,0,0,.10);

  /* type */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tight: 'Inter Tight', var(--sans);

  /* metrics */
  --wrap: 1360px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 92px;
  --shadow-crisp: 8px 8px 0 var(--black);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 8vw, 104px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- typography ---------- */
.display {
  font-family: var(--serif);
  color: var(--green);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-serif {
  font-family: var(--serif);
  color: var(--green);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
}
.h-sans {
  font-family: var(--tight);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.lead { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.5; max-width: 46ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent;
  color: var(--black); background: var(--sage);
  transition: transform .12s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--green-bright); }
.btn--primary:hover { background: #7ad9eb; }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--green); }
.btn--outline { background: transparent; border-color: currentColor; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--green-dark); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.arrow-btn {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--black); color: #fff; border: 0; flex: none;
  transition: background .18s ease, transform .12s ease;
}
.arrow-btn:hover { background: var(--green); transform: translateY(-2px); }

/* =========================================================================
   HEADER
   ========================================================================= */
.topbar { border-bottom: 1px solid var(--line); background: var(--white); }
.topbar__inner {
  display: flex; align-items: stretch; gap: 24px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: stretch; flex: none; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__box {
  background: var(--green); color: #fff;
  padding: 14px 18px; display: flex; flex-direction: column; justify-content: center;
  font-family: var(--tight); font-weight: 800; line-height: 1.02;
  font-size: 19px; letter-spacing: .01em; text-transform: uppercase;
  align-self: center; min-width: 150px;
}
.brand__box span { display: block; }
.brand__box .sm { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; opacity: .85; margin-top: 5px; text-transform: uppercase; }

.top-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.search {
  display: flex; align-items: stretch; border: 1px solid var(--black); height: 48px;
}
.search input {
  border: 0; outline: 0; padding: 0 14px; font: inherit; font-size: 15px; width: 190px; background: transparent;
}
.search button { width: 48px; background: var(--black); color: #fff; border: 0; display: grid; place-items: center; }
.search button:hover { background: var(--green); }
.lang {
  border: 1px solid var(--black); height: 48px; padding: 0 14px;
  display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; background: #fff; color: var(--ink);
}

/* primary nav */
.mainnav { border-bottom: 1px solid var(--line); background: var(--white); position: sticky; top: 0; z-index: 60; }
.mainnav__inner { display: flex; align-items: center; }
.mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.mainnav li { display: flex; }
.mainnav li + li a { border-left: 1px solid var(--line); }
.mainnav a {
  display: inline-flex; align-items: center; padding: 20px 30px;
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.mainnav a:hover { color: var(--green); text-decoration: none; }
.mainnav a.is-active { color: var(--green); box-shadow: inset 0 -3px 0 var(--green); }
.nav-toggle { display: none; }

/* =========================================================================
   COVER HERO (full-bleed image with logo + nav overlaid on it)
   ========================================================================= */
.cover-hero { position: relative; background: #0b0b0b; }
/* Full-bleed banner: always render at the image's own 1652:724 ratio so nothing
   is cropped — the Vilnius tower (top) and Oslo skyline (bottom) stay visible at
   every width, incl. 2K/4K. A fixed height + object-fit:cover on wide screens
   letterboxed the banner into a narrow strip and clipped exactly those edges. */
.cover-hero__bg { display: block; width: 100%; height: auto; }
.cover-hero__bar {
  position: absolute; inset: 0 0 auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding-top: clamp(16px, 2.4vw, 32px);
}
/* logo on the cover (dark green — sits over the yellow flag) */
.brand-over {
  display: flex; flex-direction: column; line-height: 1.0;
  font-family: var(--tight); font-weight: 800; text-transform: uppercase;
  font-size: clamp(17px, 2vw, 28px); letter-spacing: .01em;
  color: #fff; text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.45), 0 2px 16px rgba(0,0,0,.5);
  margin-left: clamp(29px, calc(5vw + 5px), 97px);
}
.brand-over:hover { text-decoration: none; }
.brand-over .sm { font-size: .44em; font-weight: 700; letter-spacing: .16em; margin-top: 8px; }

/* nav on the cover (white — sits over the red flag) */
.cover-hero__nav { display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; justify-content: flex-end; padding-top: 0; }
.cover-hero .mainnav { position: static; background: transparent; border: 0; box-shadow: none; display: block; }
.cover-hero .mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px 24px; flex-wrap: wrap; }
.cover-hero .mainnav li { display: inline-flex; }
.cover-hero .mainnav li + li a { border-left: 0; }
.cover-hero .mainnav a { padding: 4px 0; color: #fff; font-weight: 600; font-size: 16px; text-shadow: 0 1px 12px rgba(0,0,0,.55); box-shadow: none; }
.cover-hero .mainnav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.cover-hero .mainnav a.is-active { color: #fff; box-shadow: none; text-decoration: underline; text-underline-offset: 5px; }
.cover-hero__cta { box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* sticky nav — hidden at top, slides in on scroll (keeps the hero clean like the mockup) */
.stickynav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
  transform: translateY(-100%); transition: transform .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.stickynav.show { transform: none; }
.stickynav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 62px; }
.stickynav__brand { font-family: var(--tight); font-weight: 800; text-transform: uppercase; color: var(--green); font-size: 17px; letter-spacing: .01em; text-decoration: none; white-space: nowrap; }
.stickynav__brand:hover { text-decoration: none; }
.stickynav .mainnav { position: static; background: transparent; border: 0; box-shadow: none; display: flex; align-items: center; }
.stickynav .mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px 26px; flex-wrap: wrap; }
.stickynav .mainnav li { display: inline-flex; }
.stickynav .mainnav li + li a { border-left: 0; }
.stickynav .mainnav a { padding: 4px 0; color: var(--ink); font-weight: 600; font-size: 16px; box-shadow: none; border-top: 0; }
.stickynav .mainnav a:hover { color: var(--green); text-decoration: none; }
.stickynav .mainnav a.is-active { color: var(--green); box-shadow: none; }
.stickynav .nav-toggle { display: none; }

@media (max-width: 860px) {
  .stickynav__inner { min-height: 54px; gap: 10px; }
  .stickynav__brand { font-size: 13.5px; white-space: normal; line-height: 1.1; }
  .stickynav .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin: 0; background: var(--green-dark); color: #fff; border: 0; padding: 10px; font-size: 0; }
  .stickynav .mainnav { position: relative; }
  .stickynav .mainnav ul {
    display: none; position: absolute; right: 0; left: auto; top: calc(100% + 10px); width: auto; min-width: 230px;
    flex-direction: column; gap: 0; background: var(--green-dark); padding: 4px 18px 12px; z-index: 30;
    box-shadow: 0 14px 34px rgba(0,0,0,.4);
  }
  .stickynav .mainnav.is-open ul { display: flex; }
  .stickynav .mainnav a { color: #fff; width: 100%; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }
  .stickynav .mainnav li:first-child a { border-top: 0; }
  .stickynav .btn--primary { padding: 9px 13px; font-size: 12px; }
}

/* white title card that overlaps the bottom of the cover */
.hero__titlecard {
  background: #fff; position: relative; z-index: 3; align-self: start;
  margin-left: calc(var(--gutter) * -1);
  margin-top: clamp(-200px, -12vw, -80px);
  padding: clamp(24px, 3.2vw, 44px) clamp(34px, 4.5vw, 66px) clamp(16px, 2vw, 28px) var(--gutter);
}
.hero__titlecard .display { margin: 0; }

/* mobile: solid dark header bar above the cover (logo + hamburger + CTA) */
@media (max-width: 860px) {
  .cover-hero { display: flex; flex-direction: column; }
  .cover-hero__bar {
    position: static; order: -1; background: var(--green-dark);
    flex-direction: row; align-items: center; justify-content: space-between;
    gap: 10px; padding: 11px 16px;
  }
  .brand-over { color: #fff; font-size: 14px; margin-left: 0; text-shadow: none; }
  .brand-over .sm { display: none; }
  .cover-hero__nav { position: relative; width: auto; gap: 8px; padding-top: 0; }
  .cover-hero .mainnav ul {
    display: none; position: absolute; right: 0; left: auto; top: calc(100% + 11px);
    min-width: 230px; flex-direction: column; gap: 0;
    background: var(--green-dark); padding: 4px 18px 12px; z-index: 30;
    box-shadow: 0 14px 34px rgba(0,0,0,.4);
  }
  .cover-hero .mainnav.is-open ul { display: flex; }
  .cover-hero .mainnav a { width: 100%; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); text-shadow: none; }
  .cover-hero .mainnav li:first-child a { border-top: 0; }
  .cover-hero .nav-toggle { padding: 10px; font-size: 0; }
  .cover-hero__cta { padding: 9px 13px; font-size: 12px; box-shadow: none; }
  .hero__titlecard { margin-top: 0; padding-top: 22px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-top: 0; }
.hero__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.hero__sub { padding-top: clamp(16px, 4vw, 48px); }
.hero__sub p { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.45; margin: 0 0 22px; }
.hero__media {
  margin-top: clamp(32px, 5vw, 56px);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.hero__banner { position: relative; }
.hero__banner img { width: 100%; height: clamp(320px, 46vw, 620px); object-fit: cover; }
.hero__banner .tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--green); color: #fff; padding: 14px 22px;
  font-family: var(--serif); font-size: clamp(1.1rem,2vw,1.6rem);
}

/* card row */
.cardrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); margin-top: 2px; }
.mini { background: #fff; position: relative; overflow: hidden; }
.mini img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.mini:hover img { transform: scale(1.05); }
.mini__cap {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff; font-weight: 600; font-size: 15px;
}

/* =========================================================================
   FEATURED (About)
   ========================================================================= */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.featured__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow-crisp); }
.featured__body p { font-size: 1.12rem; }
.stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px; }
.stat b { font-family: var(--serif); color: var(--green); font-size: clamp(2.2rem,4vw,3rem); display: block; line-height: 1; }
.stat span { font-size: 14px; color: #555; font-weight: 600; }

/* section header w/ link */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.sec-head .more { font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }

/* =========================================================================
   NEWS / VOICES cards
   ========================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,36px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,36px); }
.card { display: flex; flex-direction: column; background: #fff; }
.card__img { overflow: hidden; }
.card__img img { aspect-ratio: 3/2; object-fit: cover; width: 100%; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 22px 0 0; }
.card__meta { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: flex; gap: 12px; }
.card__meta .date { color: #888; }
.card__title { font-family: var(--serif); font-size: 1.5rem; line-height: 1.18; color: var(--ink); }
.card:hover .card__title { color: var(--green); }
.card__excerpt { color: #444; font-size: 1rem; margin-top: 12px; }

/* feature card (big, first) */
.feature-lead { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px,4vw,56px); align-items: center; margin-bottom: 56px; }
.feature-lead .card__img img { aspect-ratio: 16/10; }
.feature-lead .card__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* =========================================================================
   MEMBERSHIP / DONATE band
   ========================================================================= */
.band-dark { background: var(--green-dark); color: #fff; }
.band-dark .display, .band-dark .h-serif { color: #fff; }
.membership { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,72px); align-items: center; }
.membership p { color: rgba(255,255,255,.85); font-size: 1.15rem; }
.pay-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); padding: 32px; }
.pay-card h3 { font-family: var(--tight); font-weight: 800; font-size: 1.2rem; margin-bottom: 18px; color:#fff; }
.pay-list { list-style: none; margin: 0; padding: 0; }
.pay-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); color: #fff; }
.pay-list li:first-child { border-top: 0; }
.pay-list .k { color: rgba(255,255,255,.7); }
.pay-list .v { font-weight: 700; }
.pill { display:inline-block; background: var(--green-bright); color:#0e2a31; font-weight:800; padding: 4px 12px; font-size: 14px; }

/* =========================================================================
   LINKS / RESOURCES
   ========================================================================= */
.links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border-top: 1px solid var(--line); }
.link-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 8px; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
}
.link-row:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 32px; }
.link-row:nth-child(even) { padding-left: 32px; }
.link-row:hover { color: var(--green); text-decoration: none; }
.link-row span.arr { color: var(--green); font-size: 1.4rem; }

/* content boxes */
.boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--line); }
.box { background: #fff; padding: clamp(28px,3vw,44px); display: flex; flex-direction: column; min-height: 240px; }
.box:hover { background: var(--paper); }
.box .num { font-family: var(--serif); color: var(--green); font-size: 1.1rem; }
.box h3 { font-family: var(--tight); font-weight: 800; font-size: 1.5rem; margin: 10px 0 12px; color: var(--ink); }
.box p { color: #555; font-size: 1rem; margin: 0 0 20px; }
.box .box__cta { margin-top: auto; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

/* partners */
.partners { display: flex; align-items: center; gap: clamp(24px,5vw,64px); flex-wrap: wrap; justify-content: center; }
.partners img { height: 84px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: .2s; }
.partners img:hover { filter: none; opacity: 1; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #fff; border-top: 3px solid var(--green); }
.newsletter { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,72px); align-items: center; padding-block: clamp(48px,6vw,80px); border-bottom: 1px solid var(--line); }
.newsletter .h-serif { color: var(--green); }
.nl-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nl-form input {
  border: 1px solid var(--line); padding: 15px 16px; font: inherit; font-size: 15px; background: #fff;
}
.nl-form input:focus { outline: 2px solid var(--green); border-color: var(--green); }
.nl-form .full { grid-column: 1 / -1; }
.nl-form .btn { justify-content: center; }

.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(40px,5vw,64px); }
.foot-about p { color: #555; font-size: .98rem; max-width: 34ch; }
.foot-brandbox { background: var(--green); color:#fff; display:inline-flex; flex-direction:column; padding: 12px 16px; font-family: var(--tight); font-weight: 800; text-transform: uppercase; line-height: 1.05; font-size: 16px; margin-bottom: 18px; }
.foot-col h4 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #888; margin: 0 0 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { color: var(--ink); font-weight: 500; }
.foot-col a:hover { color: var(--green); }
.foot-bottom { border-top: 1px solid var(--line); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #777; }
.foot-bottom a { color: #777; }
.social { display: flex; gap: 12px; }
.social a { width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.social a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__head { grid-template-columns: 1fr; gap: 20px; }
  .cardrow { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .feature-lead { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 76px; }
  .featured, .membership, .newsletter { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .link-row:nth-child(odd) { border-right: 0; padding-right: 8px; }
  .link-row:nth-child(even) { padding-left: 8px; }
  .boxes { grid-template-columns: 1fr; }
  .search input { width: 130px; }

  /* mobile nav */
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 10px; margin-left: auto;
    background: var(--black); color:#fff; border:0; padding: 14px 18px; font-weight: 600;
  }
  .mainnav ul {
    display: none; flex-direction: column; width: 100%;
  }
  .mainnav.is-open ul { display: flex; }
  .mainnav li + li a { border-left: 0; }
  .mainnav a { border-top: 1px solid var(--line); width: 100%; padding: 16px 0; }
  .mainnav__inner { flex-wrap: wrap; }
}
@media (max-width: 620px) {
  .cardrow { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .nl-form { grid-template-columns: 1fr; }
  .top-actions .search { display: none; }
  .hero__banner .tag { font-size: 1rem; padding: 10px 14px; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* =========================================================================
   INNER PAGES — always-on solid header (reuses the .stickynav look),
   editorial page hero, prose body, galleries and the membership form.
   ========================================================================= */

/* header pinned to the top of every sub-page (no scroll trigger) */
.stickynav--static { position: sticky; transform: none; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.stickynav--static .stickynav__inner { min-height: 70px; }
.stickynav__right { display: flex; align-items: center; gap: 12px 26px; }
.stickynav .btn--sm { padding: 11px 18px; font-size: 14px; }
@media (max-width: 860px) {
  .stickynav__right { gap: 8px; }
  .stickynav--static .stickynav__inner { min-height: 56px; }
}

/* page hero (title band on sub-pages) */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: clamp(38px, 5.5vw, 78px); }
.page-hero .display { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #777; margin-bottom: 18px; }
.crumbs a { color: var(--green); }
.crumbs span { color: #aaa; }
.page-hero__intro { margin-top: 20px; font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.5; max-width: 60ch; color: #333; }

/* prose / article body */
.prose { max-width: 780px; }
.prose > p { font-size: 1.13rem; line-height: 1.65; margin: 0 0 22px; }
.prose h2 { font-family: var(--serif); color: var(--green); font-weight: 500; font-size: clamp(1.5rem,2.6vw,2rem); margin: 40px 0 14px; }
.prose h3 { font-family: var(--tight); font-weight: 800; font-size: 1.35rem; margin: 32px 0 12px; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 22px; }
.prose li { margin-bottom: 9px; font-size: 1.08rem; line-height: 1.55; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { margin: 26px 0; box-shadow: var(--shadow-crisp); }
.prose blockquote {
  margin: 28px 0; padding: 6px 0 6px 26px; border-left: 4px solid var(--green);
  font-family: var(--serif); font-size: 1.3rem; color: var(--green-dark); font-style: italic;
}

/* two-column article layout (body + sidebar) */
.article-wrap { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(32px,5vw,68px); align-items: start; }
.article-side { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 22px; }
.side-card { border: 1px solid var(--line); padding: 26px; background: var(--paper); }
.side-card h4 { font-family: var(--tight); font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; }
.side-card p { font-size: .97rem; color: #555; margin: 0 0 14px; }
.meta-line { font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; gap: 12px; flex-wrap: wrap; }
.meta-line .date { color: #999; }
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-side { position: static; }
}

/* image gallery */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 30px 0; }
.gallery a, .gallery img { display: block; }
.gallery img { aspect-ratio: 3/2; object-fit: cover; width: 100%; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery--tall img { aspect-ratio: 3/4; }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* events listing grid (renginiai page) */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,3vw,38px); }
@media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .events-grid { grid-template-columns: 1fr; } }

/* archive list (older, external posts) */
.archive { border-top: 1px solid var(--line); margin-top: 8px; }
.archive a {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; border-bottom: 1px solid var(--line); color: var(--ink);
}
.archive a:hover { color: var(--green); text-decoration: none; }
.archive .a-title { font-family: var(--serif); font-size: 1.2rem; }
.archive .a-date { font-size: 13px; font-weight: 700; color: #999; white-space: nowrap; }

/* membership / contact form */
.form-card { background: #fff; border: 1px solid var(--line); padding: clamp(24px,3.5vw,44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; color: var(--ink); }
.field .req { color: #c0392b; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); padding: 13px 14px; font: inherit; font-size: 15px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--green); border-color: var(--green); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 4px; }
.checks label, .agree label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 15px; }
.checks input, .agree input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--green); }
.form-note { font-size: 14px; color: #777; margin-top: 6px; }
.form-status {
  display: none; margin-top: 22px; padding: 16px 20px;
  background: #e7f6ef; border: 1px solid #7fceac; color: #1c5c3d; font-weight: 600;
}
.form-status.show { display: block; }
@media (max-width: 700px) { .form-grid, .checks { grid-template-columns: 1fr; } }

/* simple content sections used across sub-pages */
.info-band { background: var(--paper); }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px,5vw,64px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.callout {
  border: 1px solid var(--line); border-left: 4px solid var(--green); background: #fff;
  padding: 22px 26px; margin: 24px 0;
}
.callout strong { color: var(--green-dark); }
.board-list { list-style: none; margin: 18px 0 0; padding: 0; }
.board-list li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; }
.board-list li:first-child { border-top: 0; }
.board-list .role { color: #777; font-size: 14px; font-weight: 600; }
.board-list .name { font-weight: 600; }
