* {
  box-sizing: border-box;
}

:root {
  --green-dark: #183d2b;
  --green: #2f6b45;
  --green-light: #e7f1e9;
  --beige: #f4efe4;
  --text: #1f2a24;
  --muted: #66756c;
  --white: #ffffff;
  --border: #d9dfd9;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.6;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-image {
  height: 60px;
  width: auto;
}

.logo-mark {
  font-size: 1.5rem;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  background: var(--green-dark);
  color: var(--white);
  border: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 1.1rem;
}

.hero {
  background: linear-gradient(120deg, rgba(24, 61, 43, 0.92), rgba(47, 107, 69, 0.82)), var(--green-dark);
  color: var(--white);
  padding: 7rem 0;
}

.hero-content {
  max-width: 760px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}

.lead,
.page-hero p {
  font-size: 1.2rem;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}

.hero .eyebrow {
  color: #cfe4d4;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button,
button {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  border: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
}

.section {
  padding: 4rem 0;
}

.page-hero {
  background: var(--green-light);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.card-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card,
.info-box,
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(24, 61, 43, 0.06);
}

.card h2,
.card h3,
.info-box h2 {
  margin-top: 0;
  color: var(--green-dark);
}

.two-column {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline-item {
  background: var(--white);
  border-left: 6px solid var(--green);
  padding: 1.5rem;
  border-radius: 12px;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.2rem;
}

.date-box {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  height: fit-content;
}

.date-box strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.date-box span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

textarea {
  min-height: 140px;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-placeholder {
  min-height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d8e6d8, #f8f3e8);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer {
  background: #1f1f1f;
  color: #f5f1e8;
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0 3rem;
}

.footer-column h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #ffffff;
}

.footer-brand p,
.footer-contact p,
.footer-links a,
.footer-bottom p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #f5f1e8;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.75;
  text-decoration: none;
}

.footer-contact a {
  color: #f5f1e8;
  text-decoration: none;
}

.footer-contact a:hover {
  opacity: 0.75;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 241, 232, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f1e8;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  border-color: #f5f1e8;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Responsiv footer */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav.open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .card-grid,
  .article-grid,
  .gallery,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 5rem 0;
  }
}
