/* ==========================================================================
   Kelk sėdynę: pradinis puslapis, renginių kalendorius ir renginio puslapis.
   Žaismingas prekės ženklo stilius: kreminis fonas, miško žalia, ruda, smėlio.
   Antraštės Anton (įprastomis raidėmis), tekstas DM Sans. Abu iš fonts.css.
   Judesį valdo kelksedyne.js su Motion (motion.dev); be JS viskas matosi.
   ========================================================================== */

:root {
  --cream: #F8F1D8;
  --cream-2: #F2E8C8;
  --paper: #FDFAEE;
  --green: #486A31;
  --green-d: #2C4419;
  --green-l: #7A9B5C;
  --tan: #A57C52;
  --sand: #F1C27D;
  --ink: #1E2A16;
  --pink: #DE3C86;
  --err: #9B2C12;
  --display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
  --text: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --wrap: 1240px;
  --pad: clamp(18px, 4.5vw, 52px);
  --head: 78px;
  --r: 22px;
  --shadow: 5px 5px 0 var(--green-d);
  --ease: cubic-bezier(.23, 1, .32, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 4px; text-decoration-thickness: 2px; }
p { margin: 0 0 1em; }
figure { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .005em;
  color: var(--green-d);
  text-wrap: balance;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); position: relative; }

[id] { scroll-margin-top: calc(var(--head) + 16px); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 80;
  background: var(--green-d); color: var(--cream); padding: 10px 16px; border-radius: 99px; text-decoration: none;
}
.skip:focus { top: 12px; }

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

/* ---------- Mygtukai ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 28px;
  font-family: var(--text); font-size: 17px; font-weight: 700; line-height: 1.1;
  color: var(--cream); background: var(--green);
  border: 2px solid var(--green-d); border-radius: 999px;
  box-shadow: 0 5px 0 var(--green-d);
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s ease;
}
.btn:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--green-d); }
.btn-ghost { background: var(--paper); color: var(--green-d); }
.btn-sand { background: var(--sand); color: var(--green-d); }
.btn-pink { background: var(--pink); color: #fff; border-color: #100A0E; box-shadow: 0 5px 0 #100A0E; }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 15px; box-shadow: 0 4px 0 var(--green-d); }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--green-d); }
  .btn:not(.btn-ghost):not(.btn-sand):not(.btn-pink):hover { background: var(--green-d); }
  .btn-pink:hover { box-shadow: 0 7px 0 #100A0E; }
}

/* ---------- Lipdukai ir figūros ---------- */

.sticker {
  display: inline-block;
  padding: 7px 16px;
  font-size: 15px; font-weight: 700; line-height: 1.3;
  color: var(--green-d); background: var(--sand);
  border: 2px solid var(--green-d); border-radius: 999px;
  transform: rotate(-3deg);
  text-decoration: none;
}
.sticker-green { background: var(--green); color: var(--cream); }

.fig { position: absolute; pointer-events: none; z-index: 1; }
.fig img { width: 100%; }

/* ---------- Antraštė ---------- */

.site-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--cream);
  border-bottom: 2px solid var(--green-d);
}
.admin-bar .site-head { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-head { top: 0; } }

.head-row { display: flex; align-items: center; gap: 28px; height: var(--head); }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 58px; }
.brand span { font-family: var(--display); font-size: 27px; line-height: 1; color: var(--green-d); letter-spacing: .01em; }

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  padding: 8px 16px; border-radius: 999px;
  font-size: 16px; font-weight: 600; color: var(--green-d); text-decoration: none;
  transition: background-color .15s ease;
}
@media (hover: hover) { .nav a:hover { background: var(--cream-2); } }

.nav-m { display: none; }

@media (max-width: 860px) {
  :root { --head: 66px; }
  .nav, .head-cta { display: none; }
  .brand img { width: 48px; }
  .brand span { font-size: 24px; }
  .nav-m { display: block; margin-left: auto; }
  .nav-m summary {
    list-style: none; cursor: pointer;
    padding: 9px 18px; border: 2px solid var(--green-d); border-radius: 999px;
    font-weight: 700; font-size: 15px; color: var(--green-d); background: var(--paper);
  }
  .nav-m summary::-webkit-details-marker { display: none; }
  .nav-m[open] summary { background: var(--green-d); color: var(--cream); }
  .nav-m nav {
    position: absolute; left: 0; right: 0; top: var(--head);
    background: var(--cream); border-bottom: 2px solid var(--green-d);
    padding: 8px var(--pad) 22px; display: flex; flex-direction: column;
  }
  .nav-m nav a:not(.btn) {
    padding: 14px 0; border-bottom: 1px solid rgba(44, 68, 25, .2);
    font-family: var(--display); font-size: 26px; color: var(--green-d); text-decoration: none;
  }
  .nav-m nav .btn { margin-top: 18px; }
}

/* ---------- Hero ---------- */

.hero { position: relative; padding: clamp(36px, 6vw, 84px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.hero-copy { position: relative; z-index: 2; padding-top: 10px; }
.hero-copy .sticker { margin-bottom: 22px; }

.hero-title { font-size: clamp(58px, 7.4vw, 108px); line-height: .98; color: var(--green-d); }
.hero-title > span { display: inline-block; }

.hl { position: relative; color: var(--tan); z-index: 0; }
.hl::after {
  content: ""; position: absolute; z-index: -1;
  left: -3%; right: -3%; bottom: .06em; height: .3em;
  background: var(--sand); border-radius: 8px; transform: rotate(-1.5deg);
}

.hero .lead { max-width: 30ch; margin: 26px 0 30px; }
.lead { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.5; color: var(--ink); }

.btns { display: flex; flex-wrap: wrap; gap: 14px 16px; }

.fig-agenda { width: clamp(150px, 15vw, 220px); margin: 30px 0 0 auto; }
.fig-agenda img { width: 100%; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .fig-agenda { width: 140px; margin-top: 22px; }
  .hero .lead { max-width: 32ch; }
}

/* ---------- Renginiai kaip bilietai ---------- */

.agenda-title { font-size: clamp(34px, 3.4vw, 46px); margin-bottom: 20px; }

.agenda { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }

.agenda-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px 12px 12px;
  background: var(--paper);
  border: 2px solid var(--green-d);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.agenda li:nth-child(odd) .agenda-row { --tilt: -.7deg; }
.agenda li:nth-child(even) .agenda-row { --tilt: .6deg; }

.ar-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 92px; padding: 8px 4px;
  background: var(--sand); border: 2px solid var(--green-d); border-radius: 16px;
  text-align: center; line-height: 1.1; color: var(--green-d);
}
.ar-date b { font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 1; }
.ar-date.is-range b { font-size: 28px; }
.ar-date span { font-size: 13px; font-weight: 700; }

.ar-title { display: block; font-size: 27px; line-height: 1.05; color: var(--green-d); }
.ar-meta { display: block; margin-top: 6px; font-size: 15px; color: rgba(30, 42, 22, .78); }

.ar-state {
  padding: 9px 16px; border-radius: 999px;
  font-size: 15px; font-weight: 700; white-space: nowrap;
  background: var(--green); color: var(--cream); border: 2px solid var(--green-d);
}
.is-full .ar-state, .is-closed .ar-state, .is-past .ar-state { background: var(--cream-2); color: var(--green-d); }
.is-info .ar-state { background: var(--paper); color: var(--green-d); }

@media (hover: hover) {
  .agenda-row:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 7px 8px 0 var(--green-d); }
}

.agenda-empty {
  padding: 22px 24px; background: var(--paper);
  border: 2px dashed var(--green-d); border-radius: var(--r);
}
.agenda-empty p { margin: 0; max-width: 44ch; }

.more-link { display: inline-block; margin-top: 20px; font-weight: 700; color: var(--green-d); }

@media (max-width: 560px) {
  .agenda-row { grid-template-columns: 74px minmax(0, 1fr); column-gap: 14px; row-gap: 10px; padding: 10px 14px 14px 10px; }
  .ar-date { min-height: 80px; }
  .ar-date b { font-size: 38px; }
  .ar-date.is-range b { font-size: 24px; }
  .ar-title { font-size: 24px; }
  .ar-state { grid-column: 2; justify-self: start; }
}

/* ---------- Nuotraukos kaip polaroidai ---------- */

.photos { position: relative; padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); background: var(--green); overflow: hidden; }

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  max-width: 1040px; margin: 0 auto; padding: 0 var(--pad);
  position: relative; z-index: 2;
}

.pol-in {
  background: var(--paper);
  padding: 10px 10px 40px;
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--green-d);
  transform: rotate(var(--r, 0deg));
  transition: transform .3s var(--ease);
}
.pol-in img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 3px; }
.pol:nth-child(2) { margin-top: 36px; }
@media (hover: hover) { .pol-in:hover { transform: rotate(0deg) scale(1.02); } }

.ig-tag { position: absolute; z-index: 3; right: calc(var(--pad) + 2%); bottom: clamp(18px, 3vw, 34px); transform: rotate(3deg); background: var(--sand); color: var(--green-d); }
.fig-photos { width: clamp(140px, 15vw, 230px); left: 1.5%; bottom: 6px; z-index: 3; }
.fig-photos img { filter: brightness(0) invert(93%) sepia(18%) saturate(350%) hue-rotate(2deg); }

@media (max-width: 760px) {
  .photo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pol:nth-child(2) { margin-top: 26px; }
  .pol:nth-child(3) { grid-column: 1 / -1; width: 62%; justify-self: center; margin-top: -6px; }
  .fig-photos { width: 110px; left: auto; right: 4%; bottom: auto; top: 8px; }
  .ig-tag { position: relative; right: auto; bottom: auto; display: table; margin: 30px auto 0; }
}

/* ---------- Bėganti juosta ---------- */

.marquee {
  overflow: hidden;
  background: var(--sand);
  border-top: 2px solid var(--green-d);
  border-bottom: 2px solid var(--green-d);
  padding: 14px 0;
}
.mq { display: flex; gap: 36px; width: max-content; }
.mq-track { display: flex; gap: 36px; flex: none; animation: mq-roll 38s linear infinite; }
.mq-track span {
  display: inline-flex; align-items: center; gap: 36px;
  font-family: var(--display); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.1; color: var(--green-d); white-space: nowrap;
}
.mq-track span::after { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--green); flex: none; }
@keyframes mq-roll { to { transform: translateX(calc(-100% - 36px)); } }

/* ---------- Sekcijos ---------- */

.sec { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.sec h2 { font-size: clamp(42px, 5.6vw, 78px); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}
.about-grid h2 { max-width: 11ch; }
.about-text p { max-width: 58ch; }
.about-text a { color: var(--green); font-weight: 700; }
.fig-about { width: clamp(160px, 18vw, 260px); margin-top: clamp(24px, 4vw, 48px); }
.fig-about img { width: 100%; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .fig-about { width: 150px; margin: 18px 0 0 auto; }
}

/* ---------- Ką darom ---------- */

.acts-sec { background: var(--cream-2); border-top: 2px solid var(--green-d); border-bottom: 2px solid var(--green-d); }

.acts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(30px, 4vw, 52px);
}

.act-in {
  position: relative; height: 100%;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 34px) clamp(26px, 3vw, 36px);
  border: 2px solid var(--green-d); border-radius: var(--r);
  box-shadow: 6px 6px 0 var(--green-d);
  transform: rotate(var(--r, 0deg));
  background: var(--paper);
  transition: transform .3s var(--ease);
}
.act-in img { width: 118px; height: 96px; object-fit: contain; object-position: left bottom; margin-bottom: 14px; }
.act-in h3 { font-size: clamp(30px, 3vw, 42px); margin-bottom: 10px; }
.act-in p { margin: 0; max-width: 42ch; }
.act-in .sticker { position: absolute; top: -16px; right: 18px; transform: rotate(4deg); font-size: 14px; }

.act:nth-child(1) .act-in { --r: -1.2deg; background: var(--green); color: var(--cream); }
.act:nth-child(1) .act-in h3 { color: var(--cream); }
.act:nth-child(1) .act-in img { filter: brightness(0) invert(94%) sepia(12%) saturate(300%) hue-rotate(5deg); }
.act:nth-child(2) .act-in { --r: .9deg; }
.act:nth-child(3) .act-in { --r: .7deg; background: var(--sand); }
.act:nth-child(4) .act-in { --r: -.8deg; background: var(--tan); color: var(--paper); }
.act:nth-child(4) .act-in h3 { color: var(--paper); }
.act:nth-child(4) .act-in img { filter: brightness(0) invert(96%) sepia(8%) saturate(200%); }

@media (hover: hover) { .act-in:hover { transform: rotate(0deg) translateY(-3px); } }

@media (max-width: 760px) {
  .acts { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .act-in img { width: 96px; height: 78px; }
}

/* ---------- PASIKLYSK juosta ---------- */

.pk-band { background: #100A0E; color: #F1EDD2; padding: clamp(72px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.pk-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.pk-band h2 { color: var(--pink); font-size: clamp(52px, 7vw, 104px); }
.pk-band h2 span { color: #F1EDD2; }
.pk-meta { font-weight: 700; color: #6ED659; margin: 12px 0 18px; }
.pk-band p { color: rgba(241, 237, 210, .86); }

.quotes { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 14px; }
.quotes li {
  position: relative; max-width: 44ch;
  padding: 14px 18px; border-radius: 18px 18px 18px 4px;
  background: #F1EDD2; color: #100A0E; font-size: 17px; line-height: 1.45;
}
.quotes li:nth-child(2) { margin-left: clamp(0px, 4vw, 48px); border-radius: 18px 18px 4px 18px; background: #6ED659; }

.pk-photos { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.pk-photos .pol-in { box-shadow: 6px 6px 0 var(--pink); }
.pk-photos .pol:nth-child(2) { margin-top: 48px; }

@media (max-width: 900px) {
  .pk-grid { grid-template-columns: minmax(0, 1fr); }
  .pk-photos { max-width: 460px; }
}

/* ---------- Instagram ---------- */

.ig-sec { overflow: hidden; }
.ig-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px 28px; margin-bottom: clamp(28px, 4vw, 44px); }
.ig-head p { margin: 10px 0 0; max-width: 40ch; }

.ig-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
.ig-grid a {
  display: block; overflow: hidden;
  border: 2px solid var(--green-d); border-radius: 16px; box-shadow: 4px 4px 0 var(--green-d);
  background: var(--paper);
  transform: rotate(var(--r, 0deg));
  transition: transform .25s var(--ease);
}
.ig-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (hover: hover) { .ig-grid a:hover { transform: translateY(-4px) rotate(calc(var(--r, 0deg) * -1)); } }
.ig-live { margin-top: 8px; }

@media (max-width: 760px) {
  .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Poraštė ---------- */

.parade { position: relative; height: clamp(90px, 11vw, 150px); margin-top: clamp(24px, 4vw, 48px); max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.parade .fig { bottom: -4px; }

.site-foot { background: var(--green-d); color: var(--cream); padding: clamp(52px, 6vw, 76px) 0 28px; border-top: 2px solid var(--green-d); }
.foot-big { font-family: var(--display); font-size: clamp(54px, 9vw, 132px); line-height: .98; color: var(--sand); margin: 0 0 clamp(28px, 4vw, 48px); }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; font-size: 16px; }
.foot-about p { color: rgba(248, 241, 216, .82); max-width: 36ch; margin: 0; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.site-foot a { color: var(--cream); text-decoration: none; font-weight: 600; }
.foot-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(248, 241, 216, .22);
  font-size: 14px; color: rgba(248, 241, 216, .7);
}
.foot-legal a { font-weight: 400; color: rgba(248, 241, 216, .7); }
@media (hover: hover) { .site-foot a:hover { text-decoration: underline; } }

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
}

/* ---------- Renginių kalendorius ---------- */

.page-head { position: relative; padding: clamp(40px, 6vw, 84px) 0 clamp(30px, 4vw, 48px); overflow: hidden; }
.page-head h1 { font-size: clamp(60px, 8.6vw, 124px); }
.page-head p { max-width: 46ch; font-size: clamp(18px, 1.5vw, 21px); margin: 18px 0 0; }
.page-head .fig { width: clamp(110px, 14vw, 200px); right: var(--pad); bottom: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; position: relative; z-index: 2; }
.chip {
  padding: 8px 18px; border: 2px solid var(--green-d); border-radius: 999px;
  font-size: 15px; font-weight: 700; text-decoration: none; color: var(--green-d); background: var(--paper);
}
.chip.on { background: var(--green-d); color: var(--cream); }

.month {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  padding: clamp(30px, 4vw, 52px) 0;
  border-top: 2px dashed rgba(44, 68, 25, .35);
}
.month h2 { font-size: clamp(38px, 4vw, 58px); color: var(--tan); }

.ev-archive { padding-bottom: clamp(72px, 9vw, 128px); }

@media (max-width: 760px) {
  .month { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .page-head .fig { width: 96px; top: 20px; bottom: auto; }
}

/* ---------- Renginio puslapis ---------- */

.ev-page { padding: clamp(24px, 3vw, 44px) 0 0; }
.ev-page > .wrap { padding-bottom: clamp(72px, 9vw, 120px); }

.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 15px; font-weight: 600; color: var(--green); }
.crumbs a { color: var(--green-d); }

.ev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-areas: "head side" "body side";
  column-gap: clamp(32px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 32px);
}
.ev-head { grid-area: head; }
.ev-body { grid-area: body; }
.ev-head h1 { font-size: clamp(54px, 7vw, 104px); }

.facts {
  margin: 28px 0 34px; padding: 6px 22px;
  background: var(--paper); border: 2px solid var(--green-d); border-radius: var(--r); box-shadow: var(--shadow);
}
.facts div { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 18px; padding: 14px 0; }
.facts div + div { border-top: 2px dashed rgba(44, 68, 25, .25); }
.facts dt { font-size: 15px; font-weight: 700; color: var(--tan); padding-top: 3px; }
.facts dd { margin: 0; font-size: 19px; line-height: 1.45; font-weight: 500; }
.facts a { color: var(--green); font-weight: 700; }

.ev-img { margin: 0 0 32px; }
.ev-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 2px solid var(--green-d); border-radius: var(--r); box-shadow: var(--shadow); }

.prose { font-size: 19px; }
.prose p { max-width: 62ch; }
.prose a { color: var(--green); font-weight: 700; }
.prose h2 { font-size: 40px; margin: 1.2em 0 .4em; }
.prose h3 { font-size: 30px; margin: 1.2em 0 .4em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1em; }

.ev-side {
  grid-area: side;
  position: sticky; top: calc(var(--head) + 24px);
  padding: clamp(24px, 3vw, 34px);
  background: var(--sand);
  border: 2px solid var(--green-d); border-radius: var(--r);
  box-shadow: 7px 7px 0 var(--green-d);
}
.ev-side h2 { font-size: 44px; margin-bottom: 6px; }
.side-note p { color: var(--ink); }
.side-note .btn { width: 100%; }

.ev-more { background: var(--cream-2); border-top: 2px solid var(--green-d); }
.ev-more .agenda-title { margin-bottom: 24px; }

@media (max-width: 900px) {
  .ev-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "side" "body"; }
  .ev-side { position: static; margin: 0 0 40px; }
}

/* ---------- Registracijos forma ---------- */

.form-price { font-size: 20px; font-weight: 700; margin: 0; color: var(--green-d); }
.form-left { display: inline-block; margin: 10px 0 0; }

.fld { display: block; margin: 18px 0 0; }
.fld > span, .fld legend { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--green-d); }
.fld em { font-style: normal; font-weight: 500; color: rgba(30, 42, 22, .7); }
.fld input[type=text], .fld input[type=email], .fld input[type=tel] {
  width: 100%; height: 54px; padding: 0 16px;
  border: 2px solid var(--green-d); border-radius: 14px;
  background: var(--paper); color: var(--ink);
  font: inherit; font-size: 17px;
}
.fld input:focus { outline: 3px solid var(--green); outline-offset: 1px; }
fieldset.fld { border: 0; padding: 0; min-width: 0; }
.opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 17px; font-weight: 500; cursor: pointer; }
.chk { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; font-size: 15px; line-height: 1.45; cursor: pointer; }
.chk a { color: var(--green-d); font-weight: 700; }
.opt input, .chk input { width: 22px; height: 22px; flex: none; margin: 0; accent-color: var(--green); }
.reg-form .btn { width: 100%; }
.form-note { font-size: 14px; margin: 16px 0 0; color: rgba(30, 42, 22, .82); }
.form-err { background: #F8D9CC; border: 2px solid var(--err); border-radius: 14px; color: var(--err); padding: 12px 14px; font-size: 15px; font-weight: 600; margin: 16px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Patvirtinimas ---------- */

.confirm > p { margin: 0 0 12px; }
.pay { margin: 16px 0 20px; padding: 4px 16px; background: var(--paper); border: 2px solid var(--green-d); border-radius: 16px; }
.pay div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 12px; padding: 12px 0; align-items: center; }
.pay div + div { border-top: 2px dashed rgba(44, 68, 25, .25); }
.pay dt { font-size: 14px; font-weight: 700; color: var(--tan); }
.pay dd { margin: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 17px; font-weight: 500; overflow-wrap: anywhere; }
.copy {
  flex: none; font: inherit; font-size: 13px; font-weight: 700; padding: 6px 12px;
  color: var(--green-d); background: var(--cream); border: 2px solid var(--green-d); border-radius: 999px; cursor: pointer;
}
.copy.done { background: var(--green); color: var(--cream); }
.confirm .btn { width: 100%; margin-top: 12px; }

@media (max-width: 560px) {
  .pay div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}

/* ---------- Judesys ---------- */

/* Pradinis paslėpimas tik kai JS veikia; jei Motion neužsikrauna, po 1,8 s viskas atsiranda pats. */
.js [data-intro], .js .hero .agenda > li { opacity: 0; animation: kr-show 0s 1.8s forwards; }
@keyframes kr-show { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mq-track { animation: none; }
  .js [data-intro], .js .hero .agenda > li { opacity: 1; animation: none; }
  .btn, .agenda-row, .pol-in, .act-in, .ig-grid a { transition: none; }
}

/* ---------- Naujienos ---------- */

.news-sec { background: var(--cream-2); border-top: 2px solid var(--green-d); }
.news-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 14px 28px; margin-bottom: clamp(26px, 4vw, 44px); }
.news-head .more-link { margin-top: 0; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 32px); }
.news-card a {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); color: var(--ink); text-decoration: none;
  border: 2px solid var(--green-d); border-radius: var(--r); box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .25s var(--ease);
}
.news-card:nth-child(odd) a { --tilt: -.5deg; }
.news-card:nth-child(even) a { --tilt: .5deg; }
.news-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: 2px solid var(--green-d); }
.news-date {
  align-self: flex-start; margin: 18px 20px 0; padding: 4px 12px;
  background: var(--sand); border: 2px solid var(--green-d); border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--green-d);
}
.news-card h2, .news-card h3 { font-size: clamp(26px, 2.4vw, 32px); margin: 12px 20px 8px; }
.news-card p { margin: 0 20px 22px; font-size: 16px; color: rgba(30, 42, 22, .85); }
@media (hover: hover) { .news-card a:hover { transform: rotate(0deg) translateY(-4px); } }

@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: minmax(0, 1fr); } }

.news-archive { padding-bottom: clamp(72px, 9vw, 128px); }

.pagination { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 2px solid var(--green-d); border-radius: 999px; background: var(--paper);
  font-weight: 700; color: var(--green-d); text-decoration: none;
}
.pagination .page-numbers.current { background: var(--green-d); color: var(--cream); }

/* ---------- Vienas įrašas ---------- */

.post-page { padding: clamp(24px, 3vw, 44px) 0 0; }
.post-wrap { max-width: 900px; padding-bottom: clamp(64px, 8vw, 110px); }
.post-head { margin: 22px 0 30px; }
.post-head .sticker { margin: 0 0 18px; }
.post-head h1 { font-size: clamp(46px, 6.4vw, 92px); }
.post-head .lead { margin: 18px 0 0; max-width: 40ch; }
.post-img { margin: 0 0 36px; }
.post-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 2px solid var(--green-d); border-radius: var(--r); box-shadow: var(--shadow); }

.post-body img { border-radius: 14px; }
.post-body figure { margin: 28px 0; }
.post-body figcaption { font-size: 14px; color: rgba(30, 42, 22, .72); margin-top: 8px; }
.post-body blockquote {
  margin: 28px 0; padding: 18px 22px;
  background: var(--sand); border: 2px solid var(--green-d); border-radius: 18px 18px 18px 4px;
  font-size: 20px;
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body iframe, .post-body video { max-width: 100%; }
.post-body .wp-block-button__link { border-radius: 999px; background: var(--green); color: var(--cream); font-weight: 700; }
