:root {
  --green-950: #071d12;
  --green-900: #12351f;
  --green-800: #1e492c;
  --green-700: #2f6235;
  --leaf: #76a71d;
  --lime: #9bd126;
  --gold: #e0a11d;
  --gold-soft: #f4d779;
  --burgundy: #9a2030;
  --cream: #fff7e7;
  --paper: #fffaf0;
  --mist: #eff5df;
  --ink: #14321f;
  --muted: #65735e;
  --line: rgba(30, 73, 44, .16);
  --shadow: 0 24px 80px rgba(8, 31, 18, .18);
  --shadow-soft: 0 16px 48px rgba(19, 54, 31, .11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .95), rgba(239, 245, 223, .96)),
    url("assets/field-bg.png") center top / 1400px auto fixed;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background:
    repeating-linear-gradient(90deg, rgba(224, 161, 29, .08) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(18, 53, 31, .05) 0 1px, transparent 1px 42px);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 86%, transparent 100%);
}

a {
  color: inherit;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  color: var(--green-900);
  background:
    linear-gradient(140deg, rgba(255, 250, 240, .98), rgba(235, 244, 208, .98)),
    url("assets/field-bg.png") center / cover;
  transition: opacity .7s ease, visibility .7s ease;
}

.preloader-mark {
  width: 138px;
  height: 100px;
  display: grid;
  place-items: center;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader img {
  width: 138px;
  filter: drop-shadow(0 18px 26px rgba(18, 53, 31, .18));
}

.preloader span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left center;
}

.grain-cursor {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 76px;
  height: 76px;
  pointer-events: none;
  opacity: .12;
  background: url("assets/logo-mark.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 20px rgba(11, 38, 24, .2));
  animation: floatMark 8s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 60;
  width: min(1190px, calc(100% - 28px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(244, 215, 121, .5);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .84);
  box-shadow: 0 18px 54px rgba(7, 29, 18, .18);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background .28s ease, box-shadow .28s ease, min-height .28s ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(255, 250, 240, .94);
  box-shadow: 0 12px 42px rgba(7, 29, 18, .16);
}

.brand-link {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-950);
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(18, 53, 31, .12));
}

.brand-link strong,
.brand-link em {
  display: block;
  line-height: 1.02;
}

.brand-link strong {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-link em {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

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

.site-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #284d31;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color .24s ease, background .24s ease, transform .24s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-950);
  background: rgba(155, 209, 38, .16);
  transform: translateY(-1px);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--green-900);
  transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  align-items: end;
  gap: 30px;
  padding: 148px max(22px, calc((100vw - 1180px) / 2)) 82px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-bg {
  z-index: -4;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(1.12) contrast(1.05);
  transform: translate3d(calc(var(--hero-x, 0) * -10px), calc(var(--hero-y, 0) * -8px), 0) scale(1.08);
  transition: transform .2s ease-out;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 29, 18, .95) 0%, rgba(7, 29, 18, .76) 42%, rgba(18, 53, 31, .32) 68%, rgba(255, 250, 240, .18) 100%),
    radial-gradient(circle at 76% 18%, rgba(224, 161, 29, .34), transparent 26rem),
    linear-gradient(180deg, rgba(7, 29, 18, .1), rgba(7, 29, 18, .36));
}

.hero-graphic {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  border: 1px solid rgba(244, 215, 121, .38);
  opacity: .9;
}

.hero-graphic-a {
  width: 520px;
  height: 520px;
  right: -170px;
  top: 110px;
  border-radius: 50%;
  border-left-color: transparent;
  animation: slowSpin 24s linear infinite;
}

.hero-graphic-b {
  width: 58vw;
  height: 260px;
  left: -18vw;
  bottom: -120px;
  border-radius: 50%;
  border-top-color: rgba(155, 209, 38, .55);
  transform: rotate(-8deg);
  animation: waveLift 7s ease-in-out infinite;
}

.grain-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.grain-speck {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(244, 215, 121, .72);
  box-shadow: 0 0 14px rgba(244, 215, 121, .5);
  animation: grainFloat var(--duration, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-content,
.hero-panel,
.hero-stats {
  position: relative;
  z-index: 2;
}

.live-pill,
.eyebrow {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(244, 215, 121, .42);
  border-radius: var(--radius);
  color: #fff7e7;
  background: rgba(154, 32, 48, .82);
  box-shadow: 0 12px 28px rgba(154, 32, 48, .2);
}

.live-pill span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(244, 215, 121, .7);
  animation: livePulse 1.8s ease-out infinite;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #fff8e7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .93;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, .92);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.button {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .34) 42%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

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

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  color: #fff8e7;
  background: linear-gradient(135deg, var(--burgundy), #bf3445);
  box-shadow: 0 14px 30px rgba(154, 32, 48, .28);
}

.button.glass,
.button.ghost {
  color: #fff8e7;
  border: 1px solid rgba(255, 248, 231, .5);
  background: rgba(255, 248, 231, .12);
  backdrop-filter: blur(8px);
}

.button.ghost.dark {
  color: var(--green-900);
  border: 1px solid rgba(30, 73, 44, .24);
  background: #fffaf0;
  backdrop-filter: none;
}

.hero-panel {
  align-self: stretch;
  min-height: 510px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .52);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 250, 240, .96), rgba(238, 245, 217, .9)),
    linear-gradient(135deg, rgba(244, 215, 121, .24), transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -78px;
  top: -70px;
  border: 1px solid rgba(224, 161, 29, .42);
  border-radius: 50%;
}

.hero-logo-stage {
  position: relative;
  min-height: 176px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.hero-logo-stage::before {
  content: "";
  position: absolute;
  inset: 20px 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 209, 38, .14), rgba(224, 161, 29, .14));
  filter: blur(2px);
}

.hero-logo-stage img {
  position: relative;
  width: min(260px, 84%);
  filter: drop-shadow(0 16px 22px rgba(18, 53, 31, .16));
  animation: logoFloat 5s ease-in-out infinite;
}

.anniversary-badge {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin: -14px auto 20px;
  border: 5px solid var(--gold);
  border-radius: 50%;
  color: #fff8e7;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .14), transparent 26%),
    var(--burgundy);
  box-shadow: 0 14px 28px rgba(154, 32, 48, .22);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.anniversary-badge strong,
.anniversary-badge span {
  display: block;
}

.anniversary-badge span {
  margin-top: -28px;
  font-size: 13px;
}

.hero-facts,
.requisites {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-facts div,
.requisites div {
  padding: 12px;
  border: 1px solid rgba(30, 73, 44, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .48);
}

dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--green-900);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.hero-stats div {
  min-height: 118px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .4);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .68);
  box-shadow: 0 18px 45px rgba(7, 29, 18, .18);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.hero-stats span {
  color: rgba(255, 248, 231, .86);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(244, 215, 121, .38);
  border-bottom: 1px solid rgba(30, 73, 44, .14);
  color: #fff8e7;
  background: linear-gradient(90deg, var(--green-950), var(--green-800), var(--burgundy));
}

.marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 13px 0;
  animation: marqueeMove 26s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marquee span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.section {
  position: relative;
  padding: 96px max(22px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.identity-copy h2,
.production-copy h2,
.feed-header h2,
.map-copy h2,
.contact-card h2,
.history-panel h2 {
  margin: 8px 0 14px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.section-heading p,
.identity-copy p,
.production-copy p,
.feed-header p,
.history-panel p,
.map-copy p,
.source-card p {
  color: #586652;
  font-size: 17px;
  line-height: 1.65;
}

.identity {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .98), rgba(240, 246, 221, .92)),
    url("assets/field-bg.png") center / cover;
}

.identity-logo-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(224, 161, 29, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .86);
  box-shadow: var(--shadow-soft);
}

.identity-logo-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% -12%;
  height: 48%;
  background: linear-gradient(135deg, var(--green-950), var(--leaf));
  clip-path: polygon(0 40%, 100% 4%, 100% 100%, 0 100%);
}

.logo-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 215, 121, .36), transparent 68%);
  animation: glowBeat 4s ease-in-out infinite;
}

.identity-logo-card img {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  filter: drop-shadow(0 20px 26px rgba(18, 53, 31, .18));
}

.identity-seal {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  color: #fff8e7;
  background: var(--burgundy);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 28px rgba(154, 32, 48, .22);
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.identity-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(30, 73, 44, .16);
  border-radius: 99px;
  color: var(--green-900);
  background: rgba(255, 250, 240, .78);
  font-size: 13px;
  font-weight: 950;
}

.leadership {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(7, 29, 18, .96), rgba(18, 53, 31, .9)),
    url("assets/field-bg.png") center bottom / cover;
}

.leader-card {
  position: relative;
  min-height: 440px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .28);
  border-radius: var(--radius);
  color: #fff8e7;
  background:
    linear-gradient(150deg, rgba(255, 248, 231, .1), rgba(255, 248, 231, .04)),
    rgba(7, 29, 18, .42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .2);
}

.leader-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  bottom: -140px;
  border: 1px solid rgba(244, 215, 121, .28);
  border-radius: 50%;
}

.leader-card h2 {
  max-width: 620px;
  margin: 10px 0 16px;
  color: #fff8e7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.leader-card p {
  max-width: 640px;
  color: rgba(255, 248, 231, .78);
  font-size: 18px;
  line-height: 1.62;
}

.leader-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 0;
}

.leader-card dl div {
  min-height: 110px;
  padding: 14px;
  border: 1px solid rgba(244, 215, 121, .22);
  border-radius: var(--radius);
  background: rgba(255, 248, 231, .08);
}

.leader-card dt {
  color: rgba(244, 215, 121, .82);
}

.leader-card dd {
  color: #fff8e7;
}

.leadership-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .34);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .2);
}

.leadership-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 29, 18, .12), rgba(7, 29, 18, .08) 38%, rgba(7, 29, 18, .55)),
    repeating-linear-gradient(115deg, rgba(224, 161, 29, .16) 0 1px, transparent 1px 28px);
  mix-blend-mode: multiply;
}

.leadership-visual::after {
  content: "Новая Жизнь";
  position: absolute;
  right: 22px;
  top: 24px;
  z-index: 2;
  color: rgba(18, 53, 31, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  line-height: .9;
}

.leadership-visual > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: right bottom;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.3s ease;
}

.leadership-visual:hover > img {
  transform: scale(1.1);
}

.leadership-logo {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  width: 184px;
  padding: 16px;
  border: 1px solid rgba(244, 215, 121, .32);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .9);
  box-shadow: var(--shadow-soft);
}

.leadership-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(244, 215, 121, .34);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .78);
  backdrop-filter: blur(10px);
}

.leadership-note strong,
.leadership-note span {
  display: block;
}

.leadership-note strong {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 22px;
}

.leadership-note span {
  color: rgba(255, 248, 231, .82);
  font-weight: 850;
}

.fact-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 36px;
  padding-bottom: 36px;
  background: linear-gradient(90deg, #fffaf0, #edf4dc);
}

.showcase-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .74)),
    url("assets/field-bg.png") center / 760px auto;
  box-shadow: var(--shadow-soft);
}

.showcase-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -44px;
  bottom: -44px;
  border: 1px solid rgba(224, 161, 29, .28);
  border-radius: 50%;
}

.showcase-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 99px;
  color: #fff8e7;
  background: var(--green-800);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.showcase-card p {
  margin-bottom: 0;
  color: #586652;
  line-height: 1.55;
}

.showcase-card.accent {
  color: #fff8e7;
  background:
    linear-gradient(135deg, rgba(18, 53, 31, .9), rgba(154, 32, 48, .84)),
    url("assets/field-bg.png") center / cover;
}

.showcase-card.accent span {
  color: var(--green-900);
  background: var(--gold-soft);
}

.showcase-card.accent strong,
.showcase-card.accent p {
  color: #fff8e7;
}

.work {
  background: linear-gradient(180deg, #fffaf0, #edf4dc);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.direction-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .96), rgba(240, 246, 221, .86)),
    url("assets/field-bg.png") center / 900px auto;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.direction-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--burgundy));
}

.direction-card:hover {
  border-color: rgba(224, 161, 29, .42);
  box-shadow: 0 26px 70px rgba(19, 54, 31, .18);
}

.card-number {
  display: inline-flex;
  min-width: 44px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 99px;
  color: #fff8e7;
  background: var(--green-900);
  font-size: 12px;
  font-weight: 950;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(154, 32, 48, .18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 36%, rgba(244, 215, 121, .7), transparent 34%),
    rgba(255, 250, 240, .7);
  position: relative;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  background: var(--burgundy);
}

.wheat-icon::before {
  width: 4px;
  height: 36px;
  left: 27px;
  top: 11px;
  border-radius: 4px;
  transform: rotate(-12deg);
}

.wheat-icon::after {
  width: 28px;
  height: 28px;
  left: 16px;
  top: 12px;
  background: conic-gradient(from 20deg, transparent 0 18%, var(--burgundy) 18% 29%, transparent 29% 44%, var(--burgundy) 44% 56%, transparent 56% 70%, var(--burgundy) 70% 82%, transparent 82%);
  border-radius: 50%;
}

.pulse-icon::before {
  width: 30px;
  height: 18px;
  left: 14px;
  top: 21px;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.pulse-icon::after {
  width: 24px;
  height: 14px;
  right: 11px;
  bottom: 13px;
  border-radius: 50%;
  transform: rotate(24deg);
  opacity: .78;
}

.machine-icon::before {
  width: 31px;
  height: 20px;
  left: 13px;
  top: 20px;
  border-radius: 4px;
}

.machine-icon::after {
  width: 34px;
  height: 11px;
  left: 12px;
  top: 34px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--burgundy) 0 26%, transparent 26% 36%, var(--burgundy) 36% 64%, transparent 64% 74%, var(--burgundy) 74%);
}

.people-icon::before {
  width: 14px;
  height: 14px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
  box-shadow: 16px 0 0 var(--burgundy), 8px 18px 0 6px var(--burgundy);
}

.people-icon::after {
  display: none;
}

.direction-card h3 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 23px;
  line-height: 1.1;
}

.direction-card p {
  color: #586652;
  line-height: 1.58;
}

.season-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(224, 161, 29, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .78);
  box-shadow: var(--shadow-soft);
}

.track-line {
  position: absolute;
  top: 42px;
  left: 44px;
  right: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--leaf), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left center;
}

.season-track.visible .track-line {
  animation: drawLine 1.2s ease .25s forwards;
}

.season-track article {
  position: relative;
  z-index: 1;
  min-height: 142px;
  padding: 46px 14px 14px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .56);
}

.season-track article span {
  position: absolute;
  top: 10px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff8e7;
  background: var(--burgundy);
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 0 0 5px rgba(255, 250, 240, .96);
}

.season-track h3 {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 18px;
}

.season-track p {
  margin-bottom: 0;
  color: #65735e;
  line-height: 1.45;
}

.production {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, .95fr);
  gap: 30px;
  align-items: center;
  background: var(--green-950);
  color: #fff8e7;
}

.production::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 29, 18, .12), rgba(7, 29, 18, .88)),
    repeating-linear-gradient(110deg, rgba(244, 215, 121, .08) 0 1px, transparent 1px 34px);
}

.production-visual,
.production-copy {
  position: relative;
  z-index: 1;
}

.production-visual {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .32);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .2);
}

.production-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: left bottom;
  transform: scale(1.04);
  transition: transform 1.4s ease;
}

.production-visual.visible img,
.production-visual:hover img {
  transform: scale(1.1);
}

.production-meter {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-width: 150px;
  padding: 16px;
  border: 1px solid rgba(244, 215, 121, .4);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .78);
  backdrop-filter: blur(10px);
}

.production-meter span,
.production-meter strong {
  display: block;
}

.production-meter span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.production-meter strong {
  font-size: 38px;
  line-height: 1;
}

.production-copy h2 {
  color: #fff8e7;
}

.production-copy p {
  color: rgba(255, 248, 231, .78);
}

.meter-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.meter-list article {
  padding: 18px;
  border: 1px solid rgba(244, 215, 121, .24);
  border-radius: var(--radius);
  background: rgba(255, 248, 231, .08);
}

.meter-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-weight: 950;
}

.meter-row b {
  color: var(--gold-soft);
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 248, 231, .16);
}

.meter span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  transform: scaleX(0);
  transform-origin: left center;
}

.visible .meter span,
.meter-list.visible .meter span {
  animation: fillMeter 1.2s ease .2s forwards;
}

.history {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(18, 53, 31, .96), rgba(42, 84, 35, .91)),
    url("assets/field-bg.png") center / cover;
}

.history-panel {
  align-self: start;
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid rgba(244, 215, 121, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .93);
  box-shadow: var(--shadow-soft);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--lime), var(--burgundy));
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 58px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .92);
  box-shadow: var(--shadow-soft);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 30px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff8e7;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(244, 215, 121, .6);
}

.timeline-item.visible::before {
  animation: pointPulse 2.2s ease infinite;
}

.timeline-item time {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 950;
}

.timeline-item h3 {
  margin: 14px 0 10px;
  color: var(--green-900);
  font-size: 22px;
}

.timeline-item p {
  margin-bottom: 0;
  color: #586652;
  line-height: 1.58;
}

.gallery {
  background: linear-gradient(180deg, #fffaf0, #f1f6e3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 1.2s ease;
}

.gallery-card:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.08);
}

.crop-a img {
  object-position: left top;
}

.crop-b img {
  object-position: left bottom;
}

.crop-c img {
  object-position: right bottom;
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(244, 215, 121, .28);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .82);
  backdrop-filter: blur(8px);
}

.gallery-card b,
.gallery-card span {
  display: block;
}

.gallery-card b {
  font-size: 18px;
}

.gallery-card span {
  color: rgba(255, 248, 231, .78);
  font-size: 13px;
  font-weight: 800;
}

.feed-section {
  background:
    linear-gradient(180deg, #f9f4e6, #edf4dc),
    url("assets/field-bg.png") center / cover;
}

.feed-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.feed-header > div {
  max-width: 760px;
}

.admin-open {
  flex: 0 0 auto;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.story-button {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: var(--radius);
  color: #fff8e7;
  background:
    linear-gradient(180deg, rgba(7, 29, 18, .08), rgba(7, 29, 18, .78)),
    url("assets/field-bg.png") center / cover;
  cursor: pointer;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.story-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.story-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(154, 32, 48, .74);
}

.feed-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.search-box {
  flex: 1;
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(30, 73, 44, .22);
  border-radius: var(--radius);
  background: #fffdf7;
  color: var(--green-900);
  font-size: 15px;
  outline: none;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 161, 29, .16);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(30, 73, 44, .16);
  border-radius: 99px;
  background: #fffaf0;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.chip.active {
  color: #fff8e7;
  background: var(--green-800);
}

.admin-panel {
  display: none;
  margin: 18px 0 28px;
  padding: 22px;
  border: 1px solid rgba(30, 73, 44, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 250, 240, .96), rgba(239, 245, 223, .92)),
    url("assets/field-bg.png") right bottom / 560px auto;
  box-shadow: var(--shadow-soft);
}

.admin-panel.active {
  display: block;
  animation: liftIn .38s ease both;
}

.admin-login.hidden,
.post-form {
  display: none;
}

.admin-login h3 {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 24px;
}

.admin-login p {
  color: #586652;
  line-height: 1.55;
}

.post-form.active {
  display: grid;
  gap: 14px;
}

.login-row {
  display: flex;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.post-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.image-preview {
  min-height: 124px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(30, 73, 44, .24);
  border-radius: var(--radius);
  color: #6b7964;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .78), rgba(239, 245, 223, .7)),
    url("assets/field-bg.png") center / cover;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.media-workbench {
  display: grid;
  gap: 12px;
}

.image-preview.has-image {
  min-height: 220px;
  border-style: solid;
}

.image-preview.has-video {
  min-height: 280px;
  border-style: solid;
}

.image-preview img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}

.image-preview canvas {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #fffaf0;
  cursor: crosshair;
}

.media-tools {
  display: none;
  gap: 10px;
}

.media-tools.image-active,
.media-tools.video-active {
  display: grid;
}

.tool-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
}

.media-tools.image-active .image-tools,
.media-tools.video-active .video-tools {
  display: flex;
}

.compact-control {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: 99px;
  background: #fffaf0;
  text-transform: none !important;
}

.compact-control input {
  width: auto;
  min-height: auto;
  padding: 0;
}

.compact-control input[type="number"] {
  width: 76px;
  min-height: 32px;
  padding: 0 8px;
}

.mini-button.active {
  color: #fff8e7;
  background: var(--burgundy);
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(30, 73, 44, .13);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .78);
}

.editor-toolbar select,
.editor-toolbar input[type="color"] {
  width: auto;
  min-height: 36px;
}

.rich-editor {
  min-height: 180px;
  padding: 14px;
  border: 1px solid rgba(30, 73, 44, .2);
  border-radius: var(--radius);
  background: #fffdf7;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.6;
  text-transform: none;
  outline: none;
}

.rich-editor:empty::before {
  content: attr(data-placeholder);
  color: #7b8873;
}

.rich-editor:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 161, 29, .16);
}

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  text-transform: none !important;
}

.checkbox-line input {
  width: 20px;
  min-height: 20px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.import-label input {
  display: none;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .13);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .96);
  box-shadow: var(--shadow-soft);
  animation: liftIn .45s ease both;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.post-card:focus-visible {
  outline: 4px solid rgba(224, 161, 29, .38);
  outline-offset: 4px;
}

.post-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 430px;
}

.post-card:hover {
  border-color: rgba(224, 161, 29, .38);
  box-shadow: 0 26px 70px rgba(19, 54, 31, .16);
  transform: translateY(-5px);
}

.post-card.pinned {
  border-color: rgba(154, 32, 48, .42);
}

.post-card.hidden-post {
  opacity: .62;
}

.hidden-label {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  padding: 6px 9px;
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(7, 29, 18, .86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.post-card.pinned::before {
  content: "Закреплено";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(154, 32, 48, .92);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.post-media {
  height: 218px;
  background:
    linear-gradient(135deg, rgba(7, 29, 18, .1), rgba(7, 29, 18, .42)),
    url("assets/field-bg.png") center / cover;
}

.post-card.featured .post-media {
  height: 100%;
  min-height: 430px;
}

.category-jubilee .post-media {
  background-position: left top;
}

.category-field .post-media {
  background-position: left bottom;
}

.category-machine .post-media {
  background-position: 72% 68%;
}

.category-people .post-media {
  background-position: 22% 46%;
}

.category-notice .post-media {
  background-position: right bottom;
}

.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-player {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 29, 18, .2), rgba(7, 29, 18, .7)),
    url("assets/field-bg.png") center / cover;
}

.custom-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: #fff8e7;
  background: linear-gradient(180deg, rgba(7, 29, 18, .04), rgba(7, 29, 18, .48));
  opacity: 1;
  transition: opacity .2s ease;
}

.custom-player.playing .player-layer {
  opacity: .88;
}

.player-play {
  align-self: center;
  margin: auto;
  min-width: 104px;
  min-height: 44px;
  border: 1px solid rgba(244, 215, 121, .42);
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(154, 32, 48, .9);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(7, 29, 18, .24);
}

.player-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(244, 215, 121, .26);
  border-radius: var(--radius);
  background: rgba(7, 29, 18, .74);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.player-bottom input {
  min-height: auto;
  padding: 0;
  accent-color: var(--gold);
}

.player-bottom button {
  border: 0;
  color: #fff8e7;
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.editor-player {
  min-height: 280px;
}

.post-content {
  padding: 18px;
}

.post-card.featured .post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.post-category {
  padding: 5px 8px;
  border-radius: 99px;
  color: #fff8e7;
  background: var(--green-800);
}

.post-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.post-card.featured h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
}

.post-card p {
  color: #52614d;
  line-height: 1.58;
}

.post-card.featured p {
  font-size: 18px;
  line-height: 1.68;
}

.post-actions {
  display: none;
  gap: 8px;
  padding: 0 18px 18px;
}

.post-card.featured .post-actions {
  position: absolute;
  right: 18px;
  bottom: 0;
}

.admin-active .post-actions {
  display: flex;
}

.admin-submissions {
  display: none;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(30, 73, 44, .14);
}

.admin-active .admin-submissions {
  display: block;
}

.admin-submissions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-submissions-head h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 24px;
}

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

.submission-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
}

.submission-card span,
.submission-card time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.submission-card strong,
.submission-card a {
  display: block;
  color: var(--green-900);
  font-weight: 950;
}

.submission-card p {
  margin: 0;
  color: #52614d;
  line-height: 1.45;
}

.mini-button {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(30, 73, 44, .16);
  border-radius: var(--radius);
  background: #fff8e8;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.mini-button.danger {
  color: var(--burgundy);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed rgba(30, 73, 44, .24);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .74);
  color: #586652;
  font-weight: 850;
  text-align: center;
}

.action-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(7, 29, 18, .96), rgba(18, 53, 31, .9)),
    url("assets/field-bg.png") center / cover;
}

.action-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .28);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(255, 248, 231, .08);
  box-shadow: 0 24px 76px rgba(0, 0, 0, .18);
}

.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background:
    linear-gradient(180deg, rgba(7, 29, 18, .02), rgba(7, 29, 18, .62)),
    url("assets/field-bg.png") center / cover;
  transition: transform 1s ease, opacity .35s ease;
}

.action-card:hover::before {
  opacity: .58;
  transform: scale(1.06);
}

.action-card > * {
  position: relative;
  z-index: 1;
}

.action-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 99px;
  color: var(--green-950);
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.action-card h2 {
  margin: auto 0 0;
  color: #fff8e7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1;
}

.action-card p {
  color: rgba(255, 248, 231, .82);
  font-size: 17px;
  line-height: 1.55;
}

.action-card .button {
  align-self: flex-start;
}

.action-card.accent {
  background:
    linear-gradient(135deg, rgba(154, 32, 48, .78), rgba(18, 53, 31, .86)),
    url("assets/field-bg.png") center / cover;
}

.request-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .96), rgba(239, 245, 223, .94)),
    url("assets/field-bg.png") center / cover;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.request-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(30, 73, 44, .13);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .9);
  box-shadow: var(--shadow-soft);
}

.request-form::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -96px;
  top: -96px;
  border: 1px solid rgba(224, 161, 29, .24);
  border-radius: 50%;
}

.request-form.accent {
  color: #fff8e7;
  background:
    linear-gradient(135deg, rgba(18, 53, 31, .94), rgba(154, 32, 48, .82)),
    url("assets/field-bg.png") center / cover;
}

.request-form > * {
  position: relative;
  z-index: 1;
}

.form-badge {
  width: max-content;
  padding: 7px 10px;
  border-radius: 99px;
  color: #fff8e7;
  background: var(--burgundy);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.request-form.accent .form-badge {
  color: var(--green-950);
  background: var(--gold-soft);
}

.request-form h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.request-form.accent h3 {
  color: #fff8e7;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.request-form.accent label {
  color: rgba(255, 248, 231, .86);
}

.consent-line {
  color: inherit !important;
}

.privacy-note {
  max-width: 880px;
  margin: 18px 0 0;
  color: #586652;
  font-size: 14px;
  line-height: 1.55;
}

.map-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
  background: linear-gradient(180deg, #fffaf0, #eef5de);
}

.route-card {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(30, 73, 44, .13);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .78);
  box-shadow: var(--shadow-soft);
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  margin-bottom: 8px;
  color: var(--burgundy);
}

.route-card span {
  color: #52614d;
  line-height: 1.5;
}

.map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.map-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: 99px;
  color: var(--green-900);
  background: rgba(255, 250, 240, .78);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 472px;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffaf0, #eaf3d5);
  box-shadow: var(--shadow);
}

.map-visual-fallback {
  position: relative;
  height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(224, 161, 29, .36), transparent 18%),
    linear-gradient(135deg, rgba(255, 250, 240, .88), rgba(231, 242, 197, .96)),
    url("assets/field-bg.png") center / cover;
}

.map-visual-fallback::before,
.map-visual-fallback::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.map-visual-fallback::before {
  inset: 34px -70px auto auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(154, 32, 48, .16);
  border-left-color: transparent;
  transform: rotate(-18deg);
}

.map-visual-fallback::after {
  left: -80px;
  bottom: -110px;
  width: 410px;
  height: 230px;
  background: rgba(18, 53, 31, .14);
  transform: rotate(-11deg);
  filter: blur(.2px);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background:
    linear-gradient(90deg, rgba(18, 53, 31, .18) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(224, 161, 29, .2) 1px, transparent 1px) 0 0 / 56px 56px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, .08), #000 26%, #000 74%, rgba(0, 0, 0, .1));
}

.map-road {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 250, 240, .9);
  box-shadow:
    inset 0 0 0 1px rgba(30, 73, 44, .12),
    0 10px 24px rgba(18, 53, 31, .11);
}

.road-a {
  left: -8%;
  top: 42%;
  width: 118%;
  transform: rotate(-11deg);
}

.road-b {
  left: 44%;
  top: -4%;
  width: 72%;
  transform: rotate(61deg);
}

.road-c {
  left: -16%;
  bottom: 18%;
  width: 62%;
  transform: rotate(24deg);
}

.map-field {
  position: absolute;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: 18px;
  background:
    repeating-linear-gradient(90deg, rgba(18, 53, 31, .08) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, rgba(155, 209, 38, .28), rgba(224, 161, 29, .2));
  box-shadow: inset 0 0 40px rgba(255, 250, 240, .28);
}

.field-a {
  left: 8%;
  top: 13%;
  width: 34%;
  height: 28%;
  transform: rotate(-9deg);
}

.field-b {
  right: 9%;
  bottom: 15%;
  width: 38%;
  height: 34%;
  transform: rotate(8deg);
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  width: min(350px, calc(100% - 44px));
  padding: 16px 18px 16px 74px;
  border: 1px solid rgba(244, 215, 121, .7);
  border-radius: var(--radius);
  color: var(--green-950);
  background: rgba(255, 250, 240, .94);
  box-shadow: 0 22px 54px rgba(7, 29, 18, .2);
  transform: translate(-50%, -50%);
  animation: mapMarkerFloat 5s ease-in-out infinite;
}

.map-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow:
    0 0 0 10px rgba(154, 32, 48, .16),
    0 0 0 22px rgba(154, 32, 48, .08);
  transform: translateX(-50%);
}

.map-marker img {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 46px;
  height: 38px;
  object-fit: contain;
  transform: translateY(-50%);
}

.map-marker strong,
.map-marker span {
  display: block;
}

.map-marker strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.map-marker span {
  margin-top: 5px;
  color: #596653;
  font-size: 12px;
  font-weight: 850;
}

.map-coordinates {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(30, 73, 44, .14);
  border-radius: 99px;
  color: var(--green-900);
  background: rgba(255, 250, 240, .82);
  font-size: 12px;
  font-weight: 950;
}

.map-frame iframe {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  opacity: 0;
  filter: saturate(.95) contrast(.98);
  transition: opacity .55s ease;
}

.map-frame.map-loaded iframe {
  opacity: .92;
}

.map-frame a {
  position: relative;
  z-index: 3;
  display: block;
  padding: 14px 18px;
  color: var(--green-900);
  font-weight: 950;
  text-decoration: none;
}

.contacts {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .9), rgba(239, 245, 223, .9)),
    url("assets/field-bg.png") center / cover;
}

.contact-card,
.source-card {
  padding: 28px;
  border: 1px solid rgba(30, 73, 44, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .9);
  box-shadow: var(--shadow-soft);
}

.source-card h3 {
  margin-top: 0;
  color: var(--green-900);
  font-size: 24px;
}

.source-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.source-card a {
  color: var(--green-900);
  font-weight: 950;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, .6fr);
  align-items: center;
  gap: 24px;
  padding: 34px max(22px, calc((100vw - 1180px) / 2));
  color: #fff8e7;
  background:
    linear-gradient(90deg, var(--green-950), #102f1c),
    url("assets/field-bg.png") center bottom / cover;
  font-weight: 850;
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

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

.footer-brand img {
  width: 76px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .92);
}

.footer-brand strong,
.footer-brand span,
.footer-note span {
  display: block;
}

.footer-brand strong {
  font-size: 12px;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(244, 215, 121, .24);
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(255, 248, 231, .06);
}

.footer-links button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(244, 215, 121, .24);
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(255, 248, 231, .06);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.footer-note {
  justify-self: end;
  color: rgba(255, 248, 231, .76);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  max-width: min(440px, calc(100vw - 36px));
  padding: 13px 16px;
  border: 1px solid rgba(244, 215, 121, .42);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .92);
  box-shadow: 0 18px 48px rgba(7, 29, 18, .24);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-dock {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.quick-dock a {
  min-width: 104px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(244, 215, 121, .32);
  border-radius: 99px;
  color: #fff8e7;
  background: rgba(7, 29, 18, .72);
  box-shadow: 0 12px 34px rgba(7, 29, 18, .18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.quick-dock a:hover {
  background: rgba(154, 32, 48, .86);
  transform: translateX(-3px);
}

.post-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  padding: 24px;
}

.post-modal.active {
  display: grid;
  place-items: center;
  animation: liftIn .24s ease both;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 18, .72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 121, .34);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 32px 120px rgba(0, 0, 0, .34);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(30, 73, 44, .18);
  border-radius: 99px;
  color: var(--green-900);
  background: rgba(255, 250, 240, .9);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.modal-media {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(7, 29, 18, .12), rgba(7, 29, 18, .5)),
    url("assets/field-bg.png") center / cover;
}

.modal-media.has-image {
  background: #102f1c;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-meta span {
  padding: 6px 9px;
  border-radius: 99px;
  color: #fff8e7;
  background: var(--green-800);
}

.modal-content h2 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.modal-content p {
  margin-bottom: 0;
  color: #52614d;
  font-size: 19px;
  line-height: 1.72;
}

.modal-content p + p,
.modal-content ul {
  margin-top: 12px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  padding: 24px;
}

.legal-modal.active {
  display: grid;
  place-items: center;
  animation: liftIn .24s ease both;
}

.legal-card {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(244, 215, 121, .34);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .97), rgba(239, 245, 223, .94)),
    url("assets/field-bg.png") center / cover;
  box-shadow: 0 32px 120px rgba(0, 0, 0, .34);
}

.legal-card h2 {
  margin: 10px 0 18px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.legal-body {
  display: grid;
  gap: 12px;
  color: #52614d;
  font-size: 17px;
  line-height: 1.68;
}

.legal-body p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 92;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(244, 215, 121, .34);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(7, 29, 18, .94);
  box-shadow: 0 24px 74px rgba(7, 29, 18, .26);
  backdrop-filter: blur(14px);
}

.cookie-banner.active {
  display: grid;
}

.cookie-banner strong,
.cookie-banner span {
  display: block;
}

.cookie-banner strong {
  margin-bottom: 4px;
  color: var(--gold-soft);
}

.cookie-banner span {
  color: rgba(255, 248, 231, .82);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  transition: opacity .78s ease, transform .78s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt-card.reveal.visible {
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--tilt-y-pos, 0));
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.04);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 215, 121, .7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(244, 215, 121, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 215, 121, 0);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes waveLift {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}

@keyframes grainFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: .22;
  }
  45% {
    opacity: .85;
  }
  50% {
    transform: translate3d(var(--move-x, 28px), var(--move-y, -34px), 0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes glowBeat {
  0%,
  100% {
    transform: scale(.94);
    opacity: .62;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes fillMeter {
  to {
    transform: scaleX(1);
  }
}

@keyframes pointPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 215, 121, .48);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(244, 215, 121, 0);
  }
}

@keyframes mapMarkerFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .direction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 92px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(244, 215, 121, .38);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, .97);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 130px;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card dl,
  .fact-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .identity,
  .leadership,
  .production,
  .history,
  .action-band,
  .request-grid,
  .map-section,
  .contacts,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .history-panel {
    position: static;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card.featured {
    grid-template-columns: 1fr;
  }

  .post-card.featured .post-media {
    height: 300px;
    min-height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .modal-card {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-media {
    min-height: 300px;
  }

  .modal-content {
    padding: 30px;
  }

  .submission-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }

  .season-track {
    grid-template-columns: 1fr;
  }

  .track-line {
    left: 35px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: center top;
  }

  .season-track.visible .track-line {
    animation-name: drawLineY;
  }

  .season-track article {
    min-height: auto;
    padding: 16px 16px 16px 58px;
  }

  .season-track article span {
    left: 18px;
    top: 15px;
  }

  @keyframes drawLineY {
    to {
      transform: scaleY(1);
    }
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    left: 14px;
    right: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 62px;
    gap: 8px;
    padding-left: 12px;
    padding-right: 58px;
    transform: none;
  }

  .brand-link {
    flex: 1 1 auto;
  }

  .brand-link span {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
  }

  .brand-link strong {
    font-size: 8px;
  }

  .brand-link em {
    font-size: 15px;
  }

  .nav-toggle {
    position: absolute;
    top: 9px;
    right: 10px;
    z-index: 3;
  }

  .hero,
  .section {
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow-x: hidden;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 44px;
  }

  .hero-bg {
    object-position: 34% center;
  }

  .hero-content,
  .hero-panel,
  .hero-lead,
  h1 {
    max-width: calc(100vw - 36px);
  }

  .live-pill {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.35;
  }

  h1 {
    font-size: 36px;
    line-height: 1;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .feed-header,
  .feed-toolbar,
  .login-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .direction-grid,
  .post-grid,
  .form-grid,
  .leader-card dl,
  .fact-showcase,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 102px;
  }

  .hero-logo-stage {
    min-height: 142px;
  }

  .anniversary-badge {
    width: 94px;
    height: 94px;
    font-size: 22px;
  }

  .identity-logo-card,
  .leadership-visual,
  .production-visual {
    min-height: 330px;
  }

  .leadership-visual > img,
  .production-visual img {
    min-height: 330px;
  }

  .leader-card {
    min-height: auto;
    padding: 24px;
  }

  .leadership-logo {
    width: 148px;
    left: 18px;
    top: 18px;
  }

  .leadership-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .direction-card {
    min-height: auto;
  }

  .post-card.featured {
    grid-column: span 1;
  }

  .post-card.featured .post-content {
    padding: 20px;
  }

  .post-card.featured h3 {
    font-size: 30px;
  }

  .post-card.featured p {
    font-size: 16px;
  }

  .gallery-card {
    min-height: 270px;
  }

  .map-frame {
    min-height: 380px;
  }

  .map-frame iframe {
    height: 328px;
  }

  .site-footer {
    flex-direction: column;
  }

  .quick-dock {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 16px;
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }

  .quick-dock a {
    min-width: 0;
    min-height: 38px;
    padding: 0 8px;
    font-size: 10px;
  }

  .post-modal {
    padding: 14px;
  }

  .legal-modal {
    padding: 14px;
  }

  .legal-card {
    max-height: calc(100vh - 28px);
    padding: 24px;
  }

  .modal-card {
    max-height: calc(100vh - 28px);
  }

  .modal-media {
    min-height: 230px;
  }

  .modal-content {
    padding: 22px;
  }

  .modal-content h2 {
    font-size: 32px;
  }

  .modal-content p {
    font-size: 16px;
  }

  .request-form {
    padding: 20px;
  }

  .cookie-banner {
    bottom: 68px;
  }

  .cookie-actions .button {
    width: auto;
    flex: 1 1 130px;
  }
}

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