:root {
  --bg: #ffffff;
  --bg-2: #f3f3f3;
  --surface: #ffffff;
  --text: #4c4c4c;
  --muted: #6a6a6a;
  --primary: #34673c;
  --primary-deep: #285030;
  --accent: #e9cb2d;
  --accent-2: #d63b2f;
  --line: rgba(47, 47, 47, 0.09);
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.page-shell {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto 28px;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 8px 16px;
  background: var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  flex: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.header-button:hover {
  background: var(--primary-deep);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding: 16px 18px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: transform 180ms ease, background 180ms ease;
}

.nav a:hover::after {
  background: var(--accent);
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px 0 14px;
}

.hero--modern {
  margin-top: 2px;
}

.hero-copy {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.panel,
.card,
.form-banner,
.footer,
.news-item,
.photo-card,
.logo-card,
.moment-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 4.1vw, 4.5rem);
  max-width: 13ch;
}

.lead {
  margin: 16px 0 0;
  max-width: 56ch;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 14px 24px rgba(47, 90, 45, 0.18);
}

.button.secondary {
  border: 1px solid rgba(63, 111, 61, 0.18);
  background: #fff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(230, 194, 26, 0.1);
  color: #6e5900;
  font-weight: 700;
  border: 1px solid rgba(230, 194, 26, 0.22);
}

.hero-media {
  display: grid;
  gap: 16px;
}

.photo-card {
  border-radius: 24px;
  overflow: hidden;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.photo-card--featured img {
  aspect-ratio: 4 / 5;
  object-position: center center;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  line-height: 1.6;
  background: #fff;
}

.logo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border-left: 6px solid var(--primary);
}

.logo-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 22px;
  flex: none;
  background: #fffef3;
  padding: 8px;
}

.logo-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

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

.section {
  padding: 28px 0 4px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  max-width: 16ch;
}

.grid-2,
.contact-grid,
.cards,
.news-grid,
.moment-grid {
  display: grid;
  gap: 18px;
}

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

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.panel,
.form-banner,
.news-item,
.moment-card {
  border-radius: var(--radius);
}

.panel,
.card,
.news-item {
  padding: 22px;
  border-radius: 22px;
}

.panel h3,
.card h3,
.form-banner h3,
.news-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.panel p,
.card p,
.form-banner p,
.news-item p,
.moment-card figcaption {
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.panel-accent {
  background: linear-gradient(135deg, rgba(63, 111, 61, 0.08), rgba(230, 194, 26, 0.08));
  color: var(--text);
}

.panel-accent p,
.panel-accent a {
  color: var(--muted);
}

.moment-card {
  overflow: hidden;
}

.moment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.moment-card--logo img {
  object-fit: contain;
  padding: 24px;
  background: #ffffff;
}

.moment-card figcaption {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 245, 0.98));
}

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

.news-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  margin-bottom: 18px;
}

.news-spotlight,
.news-lead-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.news-spotlight {
  margin: 0;
  overflow: hidden;
}

.news-spotlight img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-spotlight figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  line-height: 1.65;
  background: #fff;
}

.news-lead-card {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: #fff;
}

.news-lead-card h3 {
  font-size: 1.55rem;
  margin-bottom: 2px;
}

.news-lead-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.hero-points--compact {
  margin-top: 4px;
}

.news-item {
  display: grid;
  gap: 12px;
  align-content: start;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(230, 194, 26, 0.14);
  color: #6f5a0a;
  font-weight: 800;
}

.news-item a {
  font-weight: 800;
  color: var(--primary);
}

.form-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
}

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

.footer {
  margin-top: 26px;
  border-radius: 26px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  background: #fff;
}

.footer p {
  margin: 0;
}

code {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.95em;
}

@media (max-width: 980px) {
  .hero,
  .grid-2,
  .cards,
  .news-grid,
  .contact-grid,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .masthead,
  .nav,
  .form-banner,
  .footer {
    border-radius: 26px;
  }

  .nav,
  .footer,
  .form-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .masthead {
    flex-direction: row;
    align-items: center;
  }

  .header-actions {
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    justify-content: flex-start;
  }

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

  .news-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1240px);
    margin-top: 0;
  }

  .masthead {
    padding: 14px 4px 10px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    width: 100%;
  }

  .header-actions {
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
  }

  .header-button {
    min-height: 42px;
    padding: 0 16px;
  }

  .nav {
    gap: 16px;
    padding: 14px 14px 16px;
    top: 0;
    border-radius: 18px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding: 24px;
  }

  .logo-card {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }
}
