* {
  box-sizing: border-box;
}

:root {
  --accent: #fb8e0c;
  --bg: #fffdf9;
  --bg-alt: #fff4e8;
  --text: #1f1f1f;
  --muted: #555555;
  --card: #ffffff;
  --max: 1180px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid #e7d8c7;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.brand img {
  width: auto;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #444;
  color: var(--text);
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: #2a2a2a;
  font-size: 0.98rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.hero {
  min-height: 74vh;
  background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.66)),
    url("../image/picture.jpg") center/cover no-repeat;
  display: grid;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin: 0 0 14px;
  color: #ffffff;
}

.hero p {
  max-width: 760px;
  font-size: 1.08rem;
  color: #f0f0f0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #1a1308;
}

.btn-secondary {
  border-color: #d3bfa8;
  color: #2a2a2a;
  background: #fff;
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}

.grid-2 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid #ead6bf;
  border-radius: 14px;
  padding: 20px;
}

.icon {
  color: var(--accent);
  font-size: 1.5rem;
}

ul.clean {
  margin: 0;
  padding-left: 20px;
}

.events-list article {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid #ecd8c2;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff4e7 100%);
  box-shadow: 0 10px 24px rgba(88, 54, 15, 0.08);
  margin-bottom: 14px;
}

.events-list article:last-child {
  margin-bottom: 0;
}

.events-list article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(251, 142, 12, 0.2);
}

.events-list h3 {
  margin: 0 0 6px;
  color: #1f1f1f;
}

.events-list p {
  margin: 0 0 12px;
  color: #3c3c3c;
}

.events-list {
  border-left: 3px dashed #efcda7;
  padding-left: 14px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #dec7ad;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: #fff1e3;
  color: var(--text);
  text-align: left;
  padding: 12px 14px;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  padding: 12px 14px 16px;
  background: #fff;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 6px;
  background: #ffffff;
  border: 1px solid #d9c4ae;
  color: var(--text);
  border-radius: 9px;
  padding: 10px 11px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-map iframe {
  width: 100%;
  border-radius: 14px;
}

.disclaimer {
  border-left: 4px solid var(--accent);
  padding: 12px 15px;
  background: #ffe8cf;
}

.site-footer {
  border-top: 1px solid #e7d6c3;
  padding: 28px 0;
  background: #fff3e6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff7ee;
  border: 1px solid #e2c9ae;
  border-radius: 12px;
  padding: 14px;
  z-index: 80;
  max-width: 760px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-settings {
  margin-top: 10px;
  border-top: 1px solid #e2c9ae;
  padding-top: 10px;
}

.cookie-settings label {
  display: block;
  margin-bottom: 6px;
}

.hidden {
  display: none !important;
}

@media (max-width: 960px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fffaf3;
    border-bottom: 1px solid #e6d4c0;
    padding: 12px 4%;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    min-height: 62vh;
  }

  .events-list {
    border-left: 0;
    padding-left: 0;
  }

  .events-list article {
    padding: 16px;
  }

  .events-list article::before {
    display: none;
  }
}

@media (max-width: 320px) {
  .container {
    width: 95%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 10px;
  }
}
