:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --text: #275938;
  --muted: #6e7b73;
  --primary: #43b02a;
  --primary-dark: #2f8d1d;
  --soft-green: #e8f4e4;
  --soft-green-2: #dff0d8;
  --line: rgba(39, 89, 56, 0.08);
  --shadow: 0 18px 45px rgba(37, 71, 44, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39, 89, 56, 0.06);
}

.header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 700;
  color: #4d8b59;
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  background: var(--soft-green);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 32px;
  background: radial-gradient(circle at 10% 18%, rgba(163, 219, 160, 0.3), transparent 28%), radial-gradient(circle at 90% 24%, rgba(203, 234, 193, 0.5), transparent 24%), linear-gradient(180deg, #eff8ea 0%, #f8faf6 72%);
}

.hero::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(191, 226, 185, 0.32);
  filter: blur(2px);
  z-index: 0;
  width: 360px;
  height: 360px;
  left: -120px;
  top: 24px;
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 42px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 9ch;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 28ch;
}

.chooser {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(39, 89, 56, 0.06);
  max-width: 760px;
}

.chooser-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  padding: 0 18px;
}

.chooser-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--soft-green);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-size: 20px;
  flex: 0 0 auto;
}

.chooser select {
  width: 100%;
  min-height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  appearance: none;
}

.chooser-button {
  border: 0;
  min-width: 180px;
  border-radius: 999px;
  background: linear-gradient(180deg, #49bb2f 0%, #39a41f 100%);
  color: white;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chooser-button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 400px);
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.section {
  position: relative;
  padding: 42px 0 48px;
}

.section[id] {
  scroll-margin-top: 118px;
}

.cards-wrap {
  position: relative;
  display: grid;
  gap: 34px;
}

.location-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 42px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  opacity: 0;
  transform: translateY(20px);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(37, 71, 44, 0.12);
}

.location-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.location-card.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.card-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.18/0.68;
  background: #dde9d8;
}

.card-copy {
  padding: 16px 14px;
}

.card-kicker {
  margin: 0 0 8px;
  font-size: 18px;
  color: #65816c;
  font-weight: 600;
}

.card-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
}

.card-address {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  max-width: 20ch;
}

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

.card-actions-center {
  justify-content: center;
  margin-top: 22px;
}

.pill {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill.primary {
  color: white;
  background: linear-gradient(180deg, #49bb2f 0%, #39a41f 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.pill.ghost {
  color: var(--text);
  background: #eef7eb;
}

.soft-wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  z-index: -1;
  background: radial-gradient(circle at 12% 40%, rgba(174, 223, 167, 0.55), transparent 28%), radial-gradient(circle at 86% 30%, rgba(198, 233, 190, 0.62), transparent 26%), linear-gradient(180deg, rgba(238, 246, 234, 0) 0%, rgba(234, 244, 230, 0.95) 100%);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.cookie {
  padding: 26px 0 46px;
}

.cookie-inner {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(39, 89, 56, 0.06);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(37, 71, 44, 0.05);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.cookie button {
  border: 0;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  background: white;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-grid,
  .location-card,
  .location-card.reverse {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 340px;
    order: -1;
  }
  .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 400px;
  }
  .bubble-small {
    left: auto;
    right: 16px;
    bottom: -18px;
    width: 180px;
  }
  .card-copy {
    order: 1;
  }
  .card-media {
    order: 2;
  }
  .location-card.reverse .card-copy {
    order: 1;
  }
  .location-card.reverse .card-media {
    order: 2;
  }
  .card-address {
    font-size: 22px;
  }
}
@media (max-width: 720px) {
  .header-row {
    min-height: 78px;
  }
  .brand img {
    width: 118px;
  }
  .nav {
    gap: 8px;
  }
  .nav a {
    padding: 8px 10px;
    font-size: 14px;
  }
  .hero {
    padding-top: 30px;
  }
  h1 {
    font-size: 42px;
    max-width: none;
  }
  .lead {
    font-size: 18px;
  }
  .chooser {
    flex-direction: column;
    border-radius: 28px;
    padding: 10px;
  }
  .chooser-button {
    min-width: 0;
    min-height: 56px;
  }
  .hero-visual {
    min-height: 270px;
  }
  .section {
    padding: 24px 0 30px;
  }
  .section[id] {
    scroll-margin-top: 102px;
  }
  .location-card {
    padding: 16px;
    border-radius: 28px;
  }
  .card-media {
    border-radius: 24px;
  }
  .card-copy {
    padding: 8px;
  }
  .card-kicker {
    font-size: 18px;
  }
  .card-title {
    font-size: 34px;
  }
  .card-address {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .pill {
    width: 100%;
    min-height: 50px;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie button {
    width: 100%;
  }
}
.site-footer {
  background: white;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.footer-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo img {
    width: 120px;
  }
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #4d8b59;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fade-card {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.fade-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.campus-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 40px;
  background: radial-gradient(circle at 14% 18%, rgba(163, 219, 160, 0.28), transparent 28%), radial-gradient(circle at 88% 24%, rgba(203, 234, 193, 0.5), transparent 24%), linear-gradient(180deg, #eff8ea 0%, #f7faf5 100%);
}

.campus-hero-grid,
.info-grid,
.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.campus-copy h1,
.section-heading h2,
.info-panel h2,
.contact-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.campus-copy .lead {
  max-width: 56ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.hero-badges span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(37, 71, 44, 0.08);
  font-weight: 700;
  color: var(--text);
}

.campus-visual {
  position: relative;
}

.visual-frame {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: white;
}

.visual-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(39, 89, 56, 0.08);
  box-shadow: 0 18px 38px rgba(37, 71, 44, 0.12);
}

.visual-note strong,
.contact-city {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
}

.visual-note span {
  color: var(--muted);
  line-height: 1.45;
}

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

.section-heading h2 {
  max-width: 21ch;
}

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

.news-card,
.info-panel,
.timeline-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.news-card {
  overflow: hidden;
}

.news-art {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.news-art-dino {
  background: radial-gradient(circle at 20% 20%, rgba(255, 244, 175, 0.9), transparent 22%), linear-gradient(135deg, #b7dd8f 0%, #69b64e 100%);
}

.news-art-radio {
  background: radial-gradient(circle at 75% 24%, rgba(255, 255, 255, 0.72), transparent 20%), linear-gradient(135deg, #a0d5cb 0%, #4a9696 100%);
}

.news-art-music {
  background: radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.65), transparent 20%), linear-gradient(135deg, #f8d58c 0%, #f39a5b 100%);
}

.news-art-theater {
  background: radial-gradient(circle at 82% 18%, rgba(255, 241, 179, 0.7), transparent 18%), linear-gradient(135deg, #f1b6a2 0%, #d97268 100%);
}

.recruitment-frame {
  background: linear-gradient(135deg, #f7fbf4 0%, #e3f2dc 100%);
}

.recruitment-art {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.recruitment-art-hero {
  background: radial-gradient(circle at 22% 24%, rgba(255, 247, 194, 0.92), transparent 18%), radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.75), transparent 18%), linear-gradient(135deg, #8bcf74 0%, #4fae63 52%, #2f8d5d 100%);
}

.recruitment-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.recruitment-card-alt {
  grid-template-columns: 1.1fr 0.9fr;
}

.recruitment-card-art {
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
}

.recruitment-card-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.recruitment-art-form {
  background: radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.82), transparent 16%), radial-gradient(circle at 72% 74%, rgba(255, 242, 189, 0.75), transparent 20%), linear-gradient(135deg, #b0d8ea 0%, #6eaecb 50%, #4c7f99 100%);
}

.recruitment-art-city {
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.8), transparent 16%), radial-gradient(circle at 30% 78%, rgba(255, 225, 170, 0.78), transparent 18%), linear-gradient(135deg, #f1c27d 0%, #de8f67 52%, #c46257 100%);
}

.recruitment-card-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 10px 6px;
}

.recruitment-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.recruitment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.news-content,
.info-panel,
.contact-panel {
  padding: 26px;
}

.news-content h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
}

.news-content p,
.info-panel p,
.timeline-item p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 700;
}

.news-meta a {
  color: var(--primary-dark);
}

.info-panel {
  height: 100%;
}

.info-highlight {
  background: linear-gradient(180deg, #f5fbf2 0%, #ecf7e8 100%);
}

.info-logo {
  width: min(100%, 280px);
  margin: 0 auto 24px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.timeline-card {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fbfdf9;
}

.timeline-item strong {
  font-size: 18px;
  color: var(--text);
}

.account-box {
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: #eff8ea;
  color: var(--primary-dark);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-panel {
  display: grid;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "address phone map" "email hours map";
  gap: 18px;
}

.contact-card {
  padding: 20px;
  border-radius: 24px;
  background: #fbfdf9;
}

.contact-card:nth-child(1) {
  grid-area: address;
}

.contact-card:nth-child(2) {
  grid-area: phone;
}

.contact-card:nth-child(3) {
  grid-area: email;
}

.contact-card:nth-child(4) {
  grid-area: hours;
}

.contact-map {
  grid-area: map;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: white;
  min-height: 360px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #4d8b59;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1024px) {
  .campus-hero-grid,
  .info-grid,
  .fees-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "address" "phone" "email" "hours" "map";
  }
  .campus-copy {
    display: contents;
  }
  .campus-copy .eyebrow {
    order: 1;
  }
  .campus-copy h1 {
    order: 2;
  }
  .campus-visual {
    order: 3;
  }
  .campus-copy .lead {
    order: 4;
  }
  .campus-copy .hero-badges {
    order: 5;
  }
  .campus-copy .card-actions {
    order: 6;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-heading h2 {
    max-width: none;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .recruitment-card,
  .recruitment-card-alt {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .nav-scroll {
    display: none;
  }
  .campus-hero {
    padding-top: 28px;
  }
  .visual-frame {
    border-radius: 24px;
  }
  .visual-frame img {
    min-height: 280px;
  }
  .recruitment-art {
    min-height: 260px;
  }
  .visual-note,
  .news-content,
  .info-panel,
  .contact-panel {
    padding: 20px;
  }
  .recruitment-card {
    padding: 16px;
    border-radius: 28px;
  }
  .recruitment-card-art {
    border-radius: 18px;
    min-height: 220px;
  }
  .hero-badges span,
  .timeline-item,
  .contact-map,
  .contact-card {
    border-radius: 18px;
  }
  .news-content h3 {
    font-size: 24px;
  }
  .account-box {
    font-size: 18px;
    word-break: break-word;
  }
  .recruitment-actions .pill {
    width: 100%;
  }
}

.news-grid-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-art-image {
  background-size: cover;
  background-position: center;
}

.news-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--primary-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.news-full-content {
  display: none;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.news-full-copy {
  color: var(--muted);
  line-height: 1.75;
  white-space: normal;
}

.news-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.news-close {
  width: auto;
}

.news-card.is-expanded {
  grid-column: 1/-1;
}

.news-card.is-expanded .news-full-content {
  display: block;
}

.news-card.is-expanded .news-content {
  padding-bottom: 28px;
}

@media (min-width: 1025px) {
  .news-card.is-expanded {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }
  .news-card.is-expanded .news-art {
    min-height: 100%;
  }
}
.news-extra-block {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.news-extra-block strong {
  color: var(--text);
}

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

.news-gallery-item:not([hidden]) {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.news-gallery-item img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.news-download-list {
  display: grid;
  gap: 10px;
}

.news-download-item:not([hidden]) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #edf6ea;
  color: var(--primary-dark);
  font-weight: 700;
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 700px) {
  .news-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-gallery-item img {
    height: 110px;
  }
}
.news-card.is-expanded [data-news-toggle] {
  display: none;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 23, 0.78);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  height: min(88vh, 900px);
  margin: 6vh auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
}

.gallery-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
}

.gallery-lightbox-nav {
  justify-self: center;
}

@media (max-width: 700px) {
  .gallery-lightbox-dialog {
    width: min(94vw, 1200px);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
  }
  .gallery-lightbox-close,
  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .gallery-lightbox-close {
    top: -6px;
    right: -2px;
  }
}
.news-slider {
  display: grid;
  gap: 24px;
}

.news-slider-viewport {
  overflow: clip;
  border-radius: 36px;
}

.news-slider-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.45s ease;
  will-change: transform;
}

.news-slider-page {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 14px;
}

.news-slider-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 0 14px 6px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.news-slider-actions[hidden] {
  display: none;
}

.news-slider-actions [data-news-prev][hidden],
.news-slider-actions [data-news-next][hidden] {
  display: none !important;
}

.news-slider.has-prev .news-slider-actions {
  justify-content: space-between;
}

.news-slider-actions [data-news-next] {
  margin-left: auto;
}

.news-slider.has-prev .news-slider-actions [data-news-next] {
  margin-left: 0;
}

@media (max-width: 720px) {
  .news-slider-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 0 14px 6px;
  }
  .news-slider-actions .pill {
    width: 100%;
  }
}
.chooser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 12px;
  max-width: 760px;
}

.chooser-field {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.chooser-label {
  margin: 0 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8b72;
}

.chooser-trigger {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(39, 89, 56, 0.08);
  border-radius: 28px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 244, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.chooser-trigger-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.chooser-trigger-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.chooser-trigger-copy strong {
  font-size: 20px;
  line-height: 1.05;
  color: var(--text);
}

.chooser-trigger-copy small {
  color: var(--muted);
  font-size: 14px;
}

.chooser-chevron {
  font-size: 20px;
  color: var(--primary-dark);
  transition: transform 0.22s ease;
}

.chooser.is-open .chooser-chevron {
  transform: rotate(180deg);
}

.chooser-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(39, 89, 56, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 46px rgba(37, 71, 44, 0.12);
  z-index: 12;
}

.chooser-option {
  border: 0;
  width: 100%;
  padding: 14px 16px;
  border-radius: 22px;
  background: #f7fbf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.chooser-option-copy {
  display: grid;
  gap: 2px;
}

.chooser-option strong {
  color: var(--text);
  font-size: 18px;
}

.chooser-option small {
  color: var(--muted);
  font-size: 14px;
}

.chooser-option.is-selected {
  background: linear-gradient(180deg, #eef7eb 0%, #e3f1de 100%);
  box-shadow: inset 0 0 0 1px rgba(67, 176, 42, 0.16);
}

.chooser-option:hover {
  transform: translateY(-1px);
  background: #eef7eb;
}

.chooser-button {
  min-height: 72px;
  padding: 0 26px;
  align-self: stretch;
}

.news-card {
  transform-origin: top center;
  transition: transform 0.32s ease, box-shadow 0.32s ease, opacity 0.28s ease, filter 0.28s ease;
}

.news-content {
  transition: padding 0.32s ease;
}

.news-full-content {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.45s ease, opacity 0.28s ease, margin 0.28s ease, padding 0.28s ease, border-color 0.28s ease;
}

.news-card.is-expanded {
  box-shadow: 0 28px 60px rgba(37, 71, 44, 0.14);
  animation: newsExpandedCardIn 0.34s ease both;
}

.news-card.is-expanded .news-full-content {
  max-height: 2400px;
  opacity: 1;
  margin-top: 22px;
  padding-top: 22px;
  border-top-color: var(--line);
}

.news-slider-page.has-expanded .news-grid {
  grid-template-columns: 1fr;
}

.news-slider-page.has-expanded .news-card:not(.is-expanded) {
  display: none;
}

@keyframes newsExpandedCardIn {
  from {
    opacity: 0.82;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (min-width: 1025px) {
  .news-card.is-expanded {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }
  .news-card.is-expanded .news-art {
    min-height: 100%;
  }
}
@media (max-width: 720px) {
  .chooser {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 12px;
  }
  .chooser-trigger {
    min-height: 68px;
    padding: 14px 16px;
  }
  .chooser-trigger-copy strong {
    font-size: 18px;
  }
  .chooser-menu {
    position: static;
    margin-top: 2px;
  }
  .chooser-button {
    min-width: 0;
    min-height: 56px;
  }
}
/* 2026-03 UX refinements */
.news-slider-viewport {
  overflow: hidden;
}

.chooser {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 241, 0.94) 100%);
  border: 1px solid rgba(39, 89, 56, 0.08);
  backdrop-filter: blur(14px);
}

.chooser-trigger,
.chooser-button,
.chooser-option {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.chooser-trigger:hover,
.chooser.is-open .chooser-trigger {
  transform: translateY(-1px);
  border-color: rgba(67, 176, 42, 0.18);
  box-shadow: 0 18px 34px rgba(37, 71, 44, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.chooser-trigger:focus-visible,
.chooser-option:focus-visible,
.chooser-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(67, 176, 42, 0.16);
}

.chooser-menu {
  transform-origin: top center;
  animation: chooserMenuIn 0.24s ease both;
}

.chooser-option::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #dbead6;
  box-shadow: inset 0 0 0 1px rgba(39, 89, 56, 0.12);
}

.chooser-option.is-selected::after {
  background: linear-gradient(180deg, #49bb2f 0%, #39a41f 100%);
  box-shadow: 0 0 0 4px rgba(67, 176, 42, 0.12);
}

@keyframes chooserMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.news-grid {
  align-items: start;
}

.news-card {
  position: relative;
  transform-origin: top center;
  transition: transform 0.34s cubic-bezier(0.2, 1, 0.22, 1), box-shadow 0.34s ease, opacity 0.26s ease, filter 0.26s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.news-card:hover {
  transform: translateY(-2px);
}

.news-card.is-expanded:hover {
  transform: none;
}

.news-full-content {
  transition: max-height 0.55s cubic-bezier(0.2, 1, 0.22, 1), opacity 0.32s ease, margin-top 0.32s ease, padding-top 0.32s ease, border-color 0.32s ease;
}

.news-card.is-expanded {
  order: -1;
  grid-column: 1/-1;
  box-shadow: 0 32px 64px rgba(37, 71, 44, 0.16);
  animation: newsExpandedCardIn 0.38s cubic-bezier(0.2, 1, 0.22, 1) both;
}

.news-card.is-expanded .news-content {
  padding: 30px;
}

.news-card.is-expanded .news-full-content {
  max-height: 2600px;
}

.news-slider-page.has-expanded .news-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.news-slider-page.has-expanded .news-card:not(.is-expanded) {
  display: none;
}

.news-actions {
  margin-top: 24px;
}

@media (min-width: 1025px) {
  .news-card.is-expanded {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }
  .news-card.is-expanded .news-art {
    min-height: 100%;
  }
}
@media (max-width: 720px) {
  .chooser-button {
    width: 100%;
  }
  .news-card:hover {
    transform: none;
  }
  .news-card.is-expanded .news-content {
    padding: 24px;
  }
}
/* 2026-03 chooser and slider fixes */
.hero {
  overflow: visible;
  z-index: 3;
}

.hero-grid,
.chooser,
.chooser-field {
  position: relative;
  z-index: 3;
}

.section {
  z-index: 1;
}

.chooser {
  grid-template-columns: minmax(0, 1fr) minmax(156px, 184px);
  gap: 10px;
}

.chooser-menu[hidden] {
  display: none !important;
}

.chooser-menu {
  top: calc(100% + 8px);
  z-index: 50;
}

.chooser-button {
  min-height: 64px;
  min-width: 0;
  padding: 0 20px;
  font-size: 18px;
}

@media (max-width: 720px) {
  .hero {
    overflow: hidden;
  }
  .chooser {
    grid-template-columns: 1fr;
  }
  .chooser-menu {
    z-index: auto;
  }
}
/* 2026-03 chooser polish */
.chooser {
  grid-template-columns: minmax(0, 1fr) minmax(136px, 148px);
  align-items: end;
  gap: 12px;
  padding: 14px;
  border-radius: 38px;
}

.chooser-field {
  gap: 0;
  padding-top: 30px;
  min-width: 0;
}

.chooser-label {
  position: absolute;
  top: 2px;
  left: 18px;
  margin: 0;
  padding: 0 12px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(237, 246, 234, 0.92);
  box-shadow: 0 10px 18px rgba(37, 71, 44, 0.08);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.chooser-trigger {
  min-height: 66px;
  padding: 12px 16px 12px 18px;
  border-radius: 26px;
}

.chooser-trigger-main,
.chooser-trigger-copy {
  min-width: 0;
}

.chooser-trigger-copy strong {
  font-size: clamp(17px, 1.7vw, 18px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.chooser-trigger-copy small {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.chooser-button {
  min-width: 136px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 26px;
  align-self: end;
  justify-self: end;
  font-size: 16px;
}

@media (max-width: 860px) {
  .chooser {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }
  .chooser-field {
    padding-top: 28px;
  }
  .chooser-label {
    top: 0;
    left: 14px;
  }
  .chooser-menu {
    position: static;
    margin-top: 8px;
    z-index: auto;
  }
  .chooser-button {
    min-width: 0;
    justify-self: end;
    align-self: auto;
  }
}
@media (max-width: 520px) {
  .chooser {
    border-radius: 30px;
  }
  .chooser-field {
    padding-top: 26px;
  }
  .chooser-label {
    left: 12px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .chooser-trigger {
    min-height: 64px;
    padding: 12px 14px;
  }
  .chooser-trigger-main {
    gap: 12px;
  }
  .chooser-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .chooser-trigger-copy strong {
    font-size: 16px;
  }
  .chooser-trigger-copy small {
    font-size: 12px;
  }
  .chooser-button {
    width: 100%;
    justify-self: stretch;
    min-height: 50px;
    font-size: 15px;
  }
}
/* 2026-03 privacy and cookie updates */
.footer-info a {
  color: var(--text);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-info a:hover {
  color: var(--primary-dark);
}

.cookie {
  position: fixed;
  inset: auto 0 18px 0;
  z-index: 80;
  padding: 0;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie[hidden] {
  display: none !important;
}

.cookie.is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

.cookie-inner {
  pointer-events: auto;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(37, 71, 44, 0.12);
}

.cookie-copy {
  max-width: 72ch;
}

.cookie-copy a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie [data-cookie-dismiss] {
  min-width: 150px;
  background: linear-gradient(180deg, #49bb2f 0%, #39a41f 100%);
  color: #fff;
}

.legal-hero {
  padding: 42px 0 54px;
}

.legal-shell {
  display: grid;
  gap: 24px;
}

.legal-heading {
  align-items: center;
}

.legal-heading h1 {
  max-width: none;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-note {
  display: grid;
  gap: 10px;
}

.legal-note strong {
  color: var(--text);
  font-size: 18px;
}

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cookie {
    inset: auto 0 12px 0;
  }
  .cookie-inner {
    gap: 14px;
    padding: 18px;
  }
  .cookie-copy {
    max-width: none;
  }
  .cookie [data-cookie-dismiss] {
    width: 100%;
    min-width: 0;
  }
  .legal-hero {
    padding: 28px 0 36px;
  }
  .legal-card {
    padding: 22px;
    border-radius: 26px;
  }
}
/* 2026-03 privacy placement and news polish */
.contact-legal {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact-legal .pill {
  min-width: 0;
}

.news-excerpt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-lightbox-dialog {
  width: min(94vw, 1240px);
  height: min(90vh, 920px);
}

.gallery-lightbox-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  justify-self: center;
  align-self: center;
}

@media (max-width: 700px) {
  .gallery-lightbox-image {
    max-height: calc(100vh - 120px);
  }
}
/* 2026-03 lightbox fit refinement */
.gallery-lightbox {
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox-dialog {
  width: auto;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  height: auto;
  margin: 0;
  grid-template-columns: auto minmax(0, auto) auto;
}

.gallery-lightbox-image {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: calc(100vw - 220px) !important;
  max-height: calc(100vh - 120px) !important;
  object-fit: contain;
  justify-self: center;
  align-self: center;
}

@media (max-width: 700px) {
  .gallery-lightbox {
    padding: 12px;
  }
  .gallery-lightbox-dialog {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }
  .gallery-lightbox-image {
    width: auto !important;
    height: auto !important;
    max-width: calc(100vw - 120px) !important;
    max-height: calc(100vh - 96px) !important;
  }
}
.news-asset-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-asset-nav {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf5;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  min-height: 42px;
  padding: 0 16px;
  cursor: pointer;
}

.news-asset-status {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 700px) {
  .news-asset-pagination {
    flex-wrap: wrap;
  }
  .news-asset-status {
    width: 100%;
    text-align: center;
    order: -1;
  }
}

/*# sourceMappingURL=main.css.map */
