@charset "UTF-8";
/* Generated from /src/scss/site.scss. Do not edit this file directly. */
/* Shared shell for multi-page static site (landing, instructions, explainers). */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=IBM+Plex+Mono:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400&display=swap");
/* Shared light field for header + hero (same color = one continuous band) */
:root {
  --color-bg-main: #f4f3f2;
  --color-bg-alt: #f1ece7;
  --site-header-hero-bg: var(--color-bg-main);
  --site-header-height: 6rem;
  --header-height: 6rem;
  --menu-top-offset: 8.25rem;
  --page-side-padding: 1.25rem;
}

/* Project header: compact horizontal strip — logo, title, menu only */
.site-header {
  margin: 0;
  padding: 0.75rem 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--site-header-hero-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1100;
}

.site-header--wide .project-header__inner {
  max-width: 90rem;
}

.project-header__inner {
  margin: 0 auto;
  padding: 0 var(--page-side-padding);
  width: 100%;
  max-width: 42rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 2vw, 0.75rem);
}

.project-header__logo {
  order: 3;
  flex: 0 1 auto;
  min-width: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  color: #1a1a1a;
}

.project-header__logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.project-header__logo:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.4);
  outline-offset: 3px;
}

.project-header__logo-mark {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.project-header__logo-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.65rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.88;
}

.project-header__logo-img {
  display: block;
  height: clamp(1.2rem, 4vw, 2.25rem);
  width: auto;
  max-width: 100%;
}

.project-header__title-link {
  order: 2;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.project-header__title {
  margin: 0 auto;
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  max-width: 100%;
}

.project-header__title-logo {
  display: block;
  height: clamp(1.8rem, 5vw, 2.5rem);
  width: auto;
  max-width: 100%;
}

@media (min-width: 30rem) {
  .project-header__title {
    max-width: none;
  }
}
.project-header__menu-btn {
  order: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.25rem, 7vw, 2.75rem);
  height: clamp(2.25rem, 7vw, 2.75rem);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #2a2a2a;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.project-header__close-btn {
  order: 1;
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: clamp(2.25rem, 7vw, 2.75rem);
  height: clamp(2.25rem, 7vw, 2.75rem);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #2a2a2a;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.project-header__close-btn:hover {
  background-color: #1a1a1a;
}

.project-header__close-btn:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.45);
  outline-offset: 3px;
}

.project-header__close-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.project-header__menu-btn:hover {
  background-color: #1a1a1a;
}

.project-header__menu-btn:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.45);
  outline-offset: 3px;
}

.project-header__menu-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* Page hero — below shared header; page-specific intro (not header chrome) */
/* Same background as .site-header; only bottom edge separates from white main */
/* -------------------------------------------------------------------------- */
.page-hero {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--site-header-hero-bg);
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero--wide .page-hero__inner {
  max-width: 90rem;
}

.page-hero__inner {
  margin: 0 auto;
  padding: 2.75rem var(--page-side-padding) 3.25rem;
  max-width: 42rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.page-hero__content {
  min-width: 0;
}

.page-hero__title {
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
}

.page-hero__text {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

.page-hero__media {
  min-width: 0;
  width: 100%;
}

.page-hero__media-placeholder {
  width: 100%;
  min-height: 120px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(51, 51, 51, 0.22);
  box-sizing: border-box;
}

.hero__tagline {
  margin: 7rem 0 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  color: #333;
  max-width: 40ch;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero__tag {
  position: absolute;
  right: -2.1rem;
  bottom: -1rem;
  transform: rotate(16deg);
  transform-origin: center;
}

.hero__tag img {
  width: clamp(8rem, 16vw, 11rem);
  height: auto;
  border-radius: 0;
}

@media (max-width: 39.99rem) {
  .page-hero--historical .hero__tag {
    right: -0.5rem;
  }
}
@media (max-width: 39.99rem) {
  .page-hero--preparations .hero__tag {
    right: clamp(0.25rem, 3vw, 1rem);
    bottom: clamp(-0.25rem, 1.5vw, 0.5rem);
  }
  .page-hero--preparations .hero__tag img {
    width: clamp(7rem, 24vw, 9rem);
  }
}
@media (min-width: 40rem) {
  .page-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
  .page-hero__content {
    flex: 1 1 0;
  }
  .page-hero__media {
    flex: 0 0 38%;
    max-width: 17rem;
    width: auto;
  }
  .hero__tag {
    right: -3rem;
    bottom: -1.15rem;
  }
  .page-hero__media-placeholder {
    min-height: 140px;
  }
  .page-hero--historical .page-hero__inner,
  .page-hero--preparations .page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    justify-content: normal;
    gap: 2.5rem;
  }
  .page-hero--historical .page-hero__content,
  .page-hero--preparations .page-hero__content {
    width: 100%;
    max-width: 37rem;
    justify-self: start;
  }
  .page-hero--historical .page-hero__media,
  .page-hero--preparations .page-hero__media {
    width: 100%;
    max-width: 25rem;
    justify-self: start;
  }
}
/* Optional page-specific tuning (structure only; keep minimal) */
.page-hero--submit .page-hero__inner {
  align-items: center;
}

.page-hero--submit .page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero--submit .page-hero__icon {
  display: block;
  width: clamp(3.25rem, 8vw, 4.5rem);
  height: auto;
  flex-shrink: 0;
  margin-block-end: 1.25rem;
}

.page-hero--submit .page-hero__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
}

.page-hero--submit .page-hero__text {
  text-align: center;
}

@media (min-width: 40rem) {
  .page-hero--submit .page-hero__inner {
    flex-direction: column;
    align-items: center;
  }
  .page-hero--submit .page-hero__content {
    flex: 0 1 auto;
    width: 100%;
    max-width: 42rem;
  }
}
.page-hero--landing .page-hero__inner {
  display: block;
}

.landing-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.landing-hero__title-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.landing-hero__title {
  margin: 0;
  text-align: center;
  max-width: 40ch;
}

.landing-hero__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.landing-hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.landing-hero__image--horizontal {
  display: none;
}

.landing-hero__image--vertical {
  display: block;
}

.landing-hero__tag {
  position: absolute;
  right: clamp(0.5rem, 2.2vw, 1.4rem);
  bottom: clamp(0.5rem, 2vw, 1.2rem);
  transform: rotate(14deg);
  transform-origin: center;
  pointer-events: none;
}

.landing-hero__tag img {
  display: block;
  width: clamp(6.5rem, 22vw, 9rem);
  height: auto;
  border-radius: 0;
}

@media (min-width: 56rem) {
  .page-hero--landing .page-hero__inner {
    padding-bottom: 5.5rem;
  }
  .landing-hero {
    align-items: center;
    gap: 1.75rem;
  }
  .landing-hero__title {
    text-align: center;
  }
  .landing-hero__media {
    max-width: 75%;
  }
  .landing-hero__image--horizontal {
    display: block;
  }
  .landing-hero__image--vertical {
    display: none;
  }
  .landing-hero__tag {
    right: clamp(0.85rem, 2vw, 1.9rem);
    bottom: clamp(0.75rem, 1.8vw, 1.5rem);
  }
  .landing-hero__tag img {
    width: clamp(7.5rem, 14vw, 11rem);
  }
}
.site-page {
  margin: 0 auto;
  padding: 0.75rem var(--page-side-padding) 2rem;
  max-width: 42rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #333;
  box-sizing: border-box;
}

/* Wider reading column for instruction-style pages with two-column sections */
.site-page--wide {
  max-width: 90rem;
}

.site-page__lead {
  margin: 0 0 2rem;
  font-size: 18px;
  line-height: 28px;
}

/* -------------------------------------------------------------------------- */
/* Two-column page sections: title left, content right; stack on small screens */
/* -------------------------------------------------------------------------- */
.page-section {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-section__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem 2rem;
}

.page-section__title {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #333;
}

.page-section__content {
  min-width: 0;
}

.page-section__intro {
  margin: 0 0 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
}

.page-section__intro:last-child {
  margin-bottom: 0;
}

@media (min-width: 40rem) {
  .page-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.25rem 1.25rem;
  }
  .page-section__title {
    max-width: 22rem;
    width: 100%;
    justify-self: start;
  }
  .page-section__content {
    max-width: 30rem;
    width: 100%;
    justify-self: start;
  }
}
/* Checklist (mono italic helper lines + circular check affordance) */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
}

.checklist__mark {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.delete-icon {
  width: 16px;
  height: 16px;
  display: block;
}

/* Numbered step list (instructions) */
.steps-list {
  margin: 0;
  padding-left: 1.35rem;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

.steps-list li + li {
  margin-top: 0.75rem;
}

.steps-list__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 14px;
  line-height: 22px;
  opacity: 0.92;
}

/* Generic pill button / link (e.g. permission form) */
.button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(51, 51, 51, 0.18);
  background-color: #b3c8cb;
  color: #333;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  min-height: 2.75rem;
}

.button-pill:hover {
  filter: brightness(0.97);
}

.button-pill:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.35);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/* Contact block (reusable; same two-column idea as page sections) */
/* -------------------------------------------------------------------------- */
.contact-block {
  padding: 1.75rem 0 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-block__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem 2rem;
}

.contact-block__title {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #333;
}

.contact-block__main {
  min-width: 0;
}

.contact-block__intro {
  margin: 0 0 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
}

.contact-block__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.contact-block__avatar,
.landing-contact-inline__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-block__avatar img,
.landing-contact-inline__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-block__details {
  min-width: 0;
}

.contact-block__details p {
  margin: 0;
}

.contact-block__name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #333;
}

.contact-block__email {
  margin-top: 0.2rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

.contact-block__email a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-block__email a:hover {
  text-decoration-thickness: 2px;
}

.contact-block__email a:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.35);
  outline-offset: 2px;
}

@media (min-width: 40rem) {
  .contact-block__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.25rem 2.5rem;
  }
  .contact-block__title {
    max-width: 22rem;
    width: 100%;
    justify-self: start;
  }
  .contact-block__main {
    max-width: 30rem;
    width: 100%;
    min-width: 0;
    justify-self: start;
  }
}
.landing-contact-inline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.landing-contact-inline__intro {
  margin: 0;
  flex: 0 1 16rem;
  max-width: 16rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #333;
}

.landing-contact-inline__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex: 0 1 auto;
  min-width: 0;
}

.landing-contact-inline__details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering with avatar */
}

.landing-contact-inline__name {
  margin: 0 0 0.18rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
}

.landing-contact-inline__email {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.landing-contact-inline__email a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 39.99rem) {
  .landing-contact-inline {
    flex-direction: column;
    gap: 0.75rem;
  }
  .landing-contact-inline__intro {
    flex: none;
    max-width: none;
  }
}
/* -------------------------------------------------------------------------- */
/* Landing page — Piedalies CTA stack, Krātuvē feature, stats/map placeholders */
/* -------------------------------------------------------------------------- */
.page-section__inner--piedalies {
  align-items: stretch;
}

.page-section__inner--piedalies .landing-piedalies__left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-width: 0;
}

.page-section__inner--piedalies .page-section__title {
  flex: none;
  max-width: none;
  width: 100%;
  margin: 0;
}

@media (min-width: 40rem) {
  .page-section__inner--piedalies {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 2rem;
  }
  .page-section__inner--piedalies .landing-piedalies__left {
    width: 100%;
    max-width: 22rem;
    justify-self: start;
  }
  .page-section__inner--piedalies .landing-piedalies__text {
    width: 100%;
    max-width: 30rem;
    min-width: 0;
    justify-self: start;
  }
}
.landing-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Shared CTA pill buttons (reusable component; landing classes kept as aliases) */
.cta-pill,
.landing-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  max-width: 20.9375rem;
  height: 3.75rem;
  padding: 0 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  box-sizing: border-box;
  text-decoration: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  min-height: 3.75rem;
}

.cta-pill:hover,
.landing-cta:hover {
  filter: brightness(0.98);
}

.cta-pill:focus-visible,
.landing-cta:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.35);
  outline-offset: 2px;
}

.cta-pill__label,
.landing-cta__label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.landing-cta__main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.cta-pill__icon,
.landing-cta__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
}

.cta-pill__arrow,
.landing-cta__arrow {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
}

.landing-cta__icon--left {
  width: 1.45rem;
  height: 1.45rem;
}

.landing-cta__icon--right {
  width: 1.4rem;
  height: 1.4rem;
}

.landing-cta__icon--submit {
  width: 2.35rem;
  height: 2.35rem;
}

.cta-pill--submit,
.landing-cta--salmon {
  background-color: #ff7b7b;
}

.cta-pill--what,
.landing-cta--gray {
  background-color: #b1b7b5;
}

.cta-pill--how,
.landing-cta--teal {
  background-color: #93b0b5;
}

.cta-pill--explore,
.landing-cta--tan {
  background-color: #b8a78c;
}

.landing-piedalies__text > p {
  margin: 0 0 1rem;
}

.landing-piedalies__text > p:last-of-type {
  margin-bottom: 0;
}

.landing-kratuve {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--color-bg-alt);
}

.landing-kratuve__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--page-side-padding);
  box-sizing: border-box;
}

.page-section--landing-kratuve {
  padding: 2rem 0;
  border-top: none;
}

.landing-kratuve__title {
  margin: 0;
}

.landing-kratuve__left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.landing-kratuve__story {
  margin: 0 auto;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  text-align: center;
}

.landing-kratuve__story .page-section__intro {
  margin: 0;
  max-width: 30rem;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: #333;
}

.landing-kratuve__media {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 39.99rem) {
  .landing-kratuve__media {
    justify-content: center;
  }
}
.landing-kratuve__media-image {
  display: block;
  width: 100%;
  max-width: 27.5rem;
  height: auto;
  border-radius: 8px;
}

.success-banner {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, -0.5rem);
  width: calc(100% - 2rem);
  max-width: 90rem;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.success-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.success-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #d7e7bf;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 0.9rem 1.25rem;
}

.success-banner__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.success-banner__message {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.35;
  font-style: italic;
}

.success-banner__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.success-banner__close img {
  width: 1rem;
  height: 1rem;
}

.success-banner__close:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.45);
  outline-offset: 2px;
}

@media (min-width: 40rem) {
  .page-section--landing-kratuve {
    padding: 2.25rem 0;
  }
  .page-section--landing-kratuve .page-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.25rem 1.25rem;
  }
  .page-section--landing-kratuve .landing-kratuve__left {
    max-width: none;
    width: 100%;
  }
  .page-section--landing-kratuve .page-section__content {
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .page-section--landing-kratuve .landing-kratuve__story {
    margin-left: auto;
    margin-right: auto;
  }
  .page-section--landing-kratuve .landing-kratuve__media {
    margin-top: clamp(0.75rem, 1.8vw, 1.5rem);
    justify-content: flex-start;
    width: 100%;
  }
}
.landing-kratuve__year {
  margin: 0 0 0.55rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.landing-kratuve__person {
  margin: 0 0 1.1rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: #333;
  text-align: center;
}

.landing-kratuve__person strong {
  font-weight: 700;
  color: #222;
}

.landing-kratuve__person em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
}

.landing-stats-map {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 40rem) {
  .landing-stats-map {
    display: grid;
    grid-template-columns: minmax(10rem, 38%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.5rem;
  }
  .landing-stats-map__stats {
    width: 100%;
    min-width: 0;
  }
  .landing-stats-map__map {
    width: 100%;
    min-width: 0;
  }
}
.landing-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.landing-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.landing-stat__value {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: #8b6914;
}

.landing-stat__label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.landing-map-placeholder {
  width: 100%;
}

.landing-map-placeholder__visual {
  width: 100%;
  min-height: 10rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8e0d4 0%, #c9b89a 50%, #a89478 100%);
  opacity: 0.85;
  box-sizing: border-box;
}

.landing-map-placeholder__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.landing-map-placeholder__legend {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 0.65rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
}

.landing-map-placeholder__scale {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.landing-map-placeholder__gradient {
  display: inline-block;
  width: 8rem;
  max-width: 100%;
  height: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(to right, #f5f0e6, #8b6914);
}

.landing-map-placeholder__abroad-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #8b6914;
}

.page-section--dalibnieki .landing-dalibnieki__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

@media (min-width: 40rem) {
  .page-section--dalibnieki .landing-dalibnieki__left {
    max-width: none;
    width: 100%;
  }
  .page-section--dalibnieki .page-section__content {
    max-width: none;
  }
  .page-section--dalibnieki .landing-stats {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .page-section--dalibnieki .landing-map-placeholder {
    margin-left: 0;
    max-width: 34.375rem;
    width: 100%;
  }
  .page-section--dalibnieki .landing-map-placeholder__image {
    aspect-ratio: 550/333;
  }
}
.success-banner {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, -0.5rem);
  width: calc(100% - 2rem);
  max-width: 90rem;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.success-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.success-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #d7e7bf;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  padding: 0.9rem 1.25rem;
}

.success-banner__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.success-banner__message {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.35;
  font-style: italic;
}

.success-banner__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.success-banner__close img {
  width: 1rem;
  height: 1rem;
}

.success-banner__close:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.45);
  outline-offset: 2px;
}

@media (max-width: 39.99rem) {
  .success-banner {
    top: 1rem;
    width: calc(100% - 1rem);
  }
  .success-banner__inner {
    padding: 0.7rem 0.85rem;
    gap: 0.55rem;
  }
  .success-banner__message {
    font-size: 0.83rem;
    line-height: 1.3;
  }
}
/* -------------------------------------------------------------------------- */
/* Full-screen menu overlay */
/* -------------------------------------------------------------------------- */
body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .site-header {
  background-color: #fff;
}

body.is-menu-open .project-header__menu-btn {
  display: none;
}

body.is-menu-open .project-header__close-btn {
  display: inline-flex;
}

.site-menu {
  position: fixed;
  top: var(--menu-top-offset);
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - var(--menu-top-offset));
  z-index: 1000;
  background: rgba(244, 243, 242, 0.96);
  display: none;
  overflow: visible;
}

.site-menu.is-open {
  display: block;
}

.site-menu__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--page-side-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.site-menu__panel {
  padding: 3rem 0.75rem 11.275rem;
}

.site-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
}

.site-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.site-menu__link {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1.625rem, 3.8vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-decoration: none;
}

.site-menu__link--external {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-menu__link-icon {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.site-menu__link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-menu__link:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.45);
  outline-offset: 3px;
}

@media (max-width: 39.99rem) {
  .site-menu {
    overflow-y: auto;
  }
  .site-menu__panel {
    padding: 3rem 1rem 5.625rem;
  }
  .site-menu__nav {
    gap: 1rem;
  }
  .site-menu__list {
    gap: 1rem;
  }
  .site-menu__link {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }
}
/* -------------------------------------------------------------------------- */
/* Site footer */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-main);
  margin-top: 3rem;
  font-family: "IBM Plex Sans", sans-serif;
  box-sizing: border-box;
}

.site-footer__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 2rem var(--page-side-padding);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: none;
}

.site-footer__group + .site-footer__group {
  margin-top: 0.75rem;
}

.site-footer__logos {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
}

.site-footer__logo-placeholder {
  border: 1px solid #ccc;
  background: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #555;
}

.site-footer__text {
  font-size: 0.9rem;
  color: #333;
}

.site-footer__text p {
  margin: 0 0 0.35rem;
}

.site-footer__text p:last-child {
  margin-bottom: 0;
}

.site-footer a,
.site-footer a:visited {
  text-decoration: none;
  color: inherit;
}

.site-footer a:hover {
  color: #555555;
  text-decoration: none;
}

.site-footer a:active {
  color: #555555;
}

.site-footer__text--small {
  font-size: 0.8rem;
  color: #555;
}

@media (min-width: 48rem) {
  .site-footer__inner {
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .site-footer__group {
    flex: 1 1 0;
    max-width: 28rem;
  }
  .site-footer__group + .site-footer__group {
    margin-top: 0;
  }
  .site-footer__group--left {
    max-width: 22rem;
  }
  .site-footer__group--right {
    max-width: 28rem;
  }
  .site-footer__logos {
    flex-wrap: wrap;
  }
}

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