@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --primary: #cfcd33;
  --primary-dark: #a8a628;
  --primary-light: #e8e67a;
  --accent: #3d4a24;
  --accent-light: #5a6b38;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --brown: #3a3226;
  --brown-light: #5c4f3f;
  --white: #ffffff;
  --bg-alt: #eef2e4;
  --bg-dark: #2a3318;
  --bg-forest: #1e2612;
  --shadow: 0 2px 12px rgba(58, 50, 38, 0.12);
  --shadow-lg: 0 8px 32px rgba(58, 50, 38, 0.18);
  --radius: 10px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.editorial-notice {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--primary-dark);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: var(--brown-light);
}

.editorial-notice strong {
  color: var(--accent);
}

.transparency-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.transparency-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.transparency-box ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 12px;
}

.transparency-box ul li {
  display: list-item;
  margin-bottom: 8px;
  color: var(--brown-light);
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.nav-desktop {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-desktop a {
  color: var(--brown);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--accent);
  font-size: 1.6rem;
}

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--primary-light);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.nav-mobile.open {
  display: block;
  max-height: 600px;
  padding: 12px 0;
}

.nav-mobile a {
  display: block;
  padding: 12px 24px;
  color: var(--brown);
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-mobile a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../image/picture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 51, 24, 0.78) 0%, rgba(58, 50, 38, 0.55) 50%, rgba(30, 38, 18, 0.72) 100%);
  z-index: 1;
}

.hero-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 820px;
}

.hero-overlay-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-overlay-content p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--cream);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(207, 205, 51, 0.9);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-overlay-content .hero-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 51, 24, 0.82) 0%, rgba(58, 50, 38, 0.6) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 760px;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  color: var(--cream);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--accent);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--cream);
}

.btn i {
  font-size: 1.1rem;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--primary-light);
}

.section-dark p,
.section-dark li {
  color: var(--cream);
}

.section-cream {
  background: var(--cream-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--brown-light);
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.section-dark .section-subtitle {
  color: var(--cream);
  opacity: 0.9;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-3 .card h3 {
  color: #000;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.content-block p {
  margin-bottom: 16px;
  color: var(--brown-light);
}

.section-dark .content-block p {
  color: var(--cream);
}

.content-block ul,
.content-block ol {
  margin: 16px 0;
  padding-left: 0;
}

.content-block ul li,
.content-block ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--brown-light);
}

.section-dark .content-block ul li,
.section-dark .content-block ol li {
  color: var(--cream);
}

.content-block ul li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.content-block ol {
  counter-reset: ol-counter;
}

.content-block ol li {
  counter-increment: ol-counter;
}

.content-block ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 51, 24, 0.88);
}

.parallax-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--brown-light);
  font-size: 0.95rem;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon-list-item i {
  font-size: 1.6rem;
  color: var(--primary-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.icon-list-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.icon-list-item p {
  color: var(--brown-light);
  font-size: 0.93rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 24px;
}

.calendar-header {
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  padding: 10px 4px;
  font-size: 0.85rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 48px;
}

.calendar-day.empty {
  background: transparent;
  box-shadow: none;
}

.calendar-day.has-walk::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.calendar-day.short::after {
  background: #6baf4a;
}

.calendar-day.medium::after {
  background: var(--primary);
}

.calendar-day.long::after {
  background: #c45c26;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--brown-light);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend-dot.short { background: #6baf4a; }
.legend-dot.medium { background: var(--primary); }
.legend-dot.long { background: #c45c26; }

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.timeline-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--brown-light);
}

.section-dark .timeline-item h4,
.section-dark .timeline-item p {
  color: #fff;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-box i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--brown-light);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  gap: 12px;
}

.faq-question i {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 18px;
  color: var(--brown-light);
}

.section-dark .faq-answer p {
  color: var(--cream);
}

.events-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.events-table th {
  background: var(--accent);
  color: var(--cream);
  font-weight: 600;
}

.events-table td {
  color: var(--brown-light);
}

.events-table tr:last-child td {
  border-bottom: none;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-short { background: #d4edca; color: #2d5016; }
.badge-medium { background: #f0efb8; color: #5a5820; }
.badge-long { background: #f5dcc8; color: #7a3a12; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.safety-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.safety-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.safety-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.safety-card p {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group > label {
  display: block;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 0.93rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--brown);
  background: var(--cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check label {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--brown-light);
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--bg-forest);
  color: var(--cream);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: var(--primary-light);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-contact {
  margin-top: 16px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 8px;
  opacity: 0.95;
}

.footer-contact a {
  color: var(--primary-light);
}

.footer-contact i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-notice {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 20px;
  line-height: 1.55;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.success-content {
  max-width: 560px;
}

.success-content i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.success-content h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.success-content p {
  color: var(--brown-light);
  margin-bottom: 28px;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.policy-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.policy-content p,
.policy-content li {
  color: var(--brown-light);
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 24px;
  list-style: disc;
}

.policy-content ul li {
  display: list-item;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-forest);
  color: var(--cream);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-inner > p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.95;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-cookie-settings {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-cookie-save {
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 12px;
}

.cookie-settings-panel {
  display: none;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 12px;
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 16px;
}

.cookie-toggle-row label {
  font-size: 0.88rem;
  opacity: 0.85;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.numbered-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.numbered-block {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding-top: 48px;
}

.numbered-block .num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.numbered-blocks .numbered-block h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}

.numbered-block p {
  color: var(--brown-light);
  font-size: 0.93rem;
}

.quote-block {
  background: var(--accent);
  color: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}

.quote-block i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid,
  .safety-grid,
  .numbered-blocks,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 56px 0;
  }

  .hero-fullscreen,
  .page-hero,
  .parallax-section {
    background-attachment: scroll;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day {
    font-size: 0.75rem;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 16px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }

  .map-wrap iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .header-inner {
    padding: 8px 12px;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 0.82rem;
  }

  .nav-mobile a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .section {
    padding: 40px 0;
  }

  .card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-grid {
    gap: 24px;
  }
}
