:root {
  --primary: #99b6a0;
  --primary-dark: #1f4732;
  --accent: #264d39;
  --bg: #f4f8f5;
  --surface: #ffffff;
  --surface-strong: #e3efe7;
  --text: #142019;
  --text-soft: #2c3f34;
  --border: #c2d6c9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #f8fbf9;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-block;
  padding: 0.25rem 0;
  font-weight: 600;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-items: center;
  background-color: #173224;
  color: #f4fff7;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 28, 20, 0.75), rgba(19, 45, 33, 0.42));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.65s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding: 3.2rem 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
  color: var(--text);
}

.hero h1 {
  color: #f4fff7;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.hero p {
  color: #e4f7eb;
}

.hero-text-blur {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  overflow: hidden;
}

.hero-text-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(10, 24, 18, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.hero-form {
  background: rgba(245, 255, 247, 0.94);
  color: var(--text);
}

.hero-form .small-note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #000000 !important;
}

.hero-form .small-note a,
.hero-form .small-note a:visited,
.hero-form .small-note a:hover,
.hero-form .small-note a:active {
  color: #000000 !important;
}

.small-note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #000;
}

.small-note a {
  color: #000;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #88a896;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  margin-bottom: 0.8rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.button.primary,
button.primary {
  background: var(--primary-dark);
  color: #f5fff8;
}

.button.secondary,
button.secondary {
  background: #edf6f0;
  border: 1px solid var(--border);
  color: var(--text);
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-strong {
  background: var(--surface-strong);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--accent);
}

.icon-chip i {
  font-size: 1.25rem;
}

.event-list,
.faq-list,
.check-list {
  margin: 0;
  padding-left: 1.1rem;
}

.event-list li,
.faq-list li,
.check-list li {
  margin-bottom: 0.6rem;
}

.contact-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.7rem 0;
  font-size: 0.93rem;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
}

.site-footer {
  padding: 2rem 0;
  background: #162a20;
  color: #e4f1e8;
}

.site-footer a {
  color: #d5f6de;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  background: #113021;
  color: #ecfff2;
  border-top: 1px solid #6c987c;
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 12, 9, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  width: min(540px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem;
  margin-top: 0.6rem;
}

.switch {
  width: 42px;
  height: 24px;
}

.page-title {
  padding: 2.2rem 0 1.1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.editorial-text {
  margin: 0;
  font-size: 1rem;
}

.notice {
  background: #fef6e8;
  border-left: 4px solid #ac7f3d;
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

@media (max-width: 920px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #f8fbf9;
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 0.8rem 4%;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.4rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 62vh;
  }

  .button,
  button {
    width: 100%;
  }
}
