@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --gold: #C7954F;
  --gold-dark: #8B5E34;
  --cream: #F5F0E6;
  --cream-dark: #E8DFD0;
  --forest: #2D4A3E;
  --forest-light: #3D6354;
  --text-dark: #1E2B24;
  --text-light: #F5F0E6;
  --accent: #A67C3D;
  --shadow: rgba(45, 74, 62, 0.15);
  --radius: 4px 20px 4px 20px;
  --radius-alt: 20px 4px 20px 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: 1.2rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer {
  background: var(--forest);
  color: var(--text-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.editorial-bar {
  background: linear-gradient(90deg, rgba(199, 149, 79, 0.15), rgba(45, 74, 62, 0.08));
  border-bottom: 1px solid rgba(199, 149, 79, 0.35);
  padding: 14px 0;
}

.editorial-bar p {
  text-align: center;
  font-size: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark);
}

.editorial-bar a {
  font-weight: 600;
  text-decoration: underline;
}

.trust-panel {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}

.trust-panel h3 {
  margin-bottom: 12px;
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.trust-list li::before {
  content: '\eb7b';
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.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;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--forest);
  font-size: 1.4rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px 24px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--gold);
  color: var(--gold-dark);
}

.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.hero-image {
  border-radius: var(--radius-alt);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 8px 8px 0 var(--forest);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn:hover {
  background: var(--gold-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-light);
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: var(--forest);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--gold);
}

.section-cream {
  background: var(--cream-dark);
}

.section-gold {
  background: linear-gradient(160deg, #D4AE72 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--text-dark);
}

.section-gold h2,
.section-gold h3 {
  color: var(--forest);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 700px;
  margin: 12px auto 0;
}

.section-header .icon-accent {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-dark .icon-accent {
  color: var(--cream);
}

.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-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.section-dark .card {
  background: var(--forest-light);
  border-color: var(--gold);
  color: var(--text-light);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--gold);
}

.card-icon {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-dark .card-icon {
  color: var(--gold);
}

.card h3 {
  margin-bottom: 10px;
}

.card-image {
  border-radius: var(--radius-alt);
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
}

.card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 6px 6px 0 var(--forest);
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid rgba(199, 149, 79, 0.3);
}

.info-list li::before {
  content: '\ea4e';
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-size: 1.2rem;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  padding: 20px 20px 20px 70px;
  position: relative;
  margin-bottom: 16px;
  background: var(--cream);
  border-radius: var(--radius-alt);
  border-left: 4px solid var(--gold);
}

.section-dark .numbered-steps li {
  background: var(--forest-light);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.tag-list li {
  background: var(--gold);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-dark .tag-list li {
  background: var(--gold-dark);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
}

.section-dark .timeline-item {
  background: var(--forest-light);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.faq-list {
  list-style: none;
}

.faq-item {
  margin-bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 50px 18px 20px;
  background: var(--cream-dark);
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  position: relative;
}

.section-dark .faq-question {
  background: var(--forest-light);
  color: var(--gold);
}

.faq-question::after {
  content: '\ea4e';
  font-family: 'remixicon';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 20px;
  background: var(--cream);
}

.section-dark .faq-answer {
  background: var(--forest);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 16px 20px 20px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.events-table th,
.events-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(199, 149, 79, 0.4);
}

.events-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(45, 74, 62, 0.5);
}

.events-table tr:hover td {
  background: rgba(199, 149, 79, 0.1);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(199, 149, 79, 0.15), rgba(45, 74, 62, 0.08));
  border: 2px solid var(--gold);
  border-radius: var(--radius-alt);
  padding: 28px;
  margin: 24px 0;
}

.section-dark .highlight-box {
  background: rgba(199, 149, 79, 0.1);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.section-dark .stat-item {
  background: var(--forest-light);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 4px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--forest);
}

.section-dark .form-group label {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text-dark);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.contact-info-card {
  padding: 28px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.contact-info-card h3 {
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-info-item i {
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-top: 2px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  display: block;
}

.site-footer {
  background: var(--forest);
  color: var(--text-light);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-grid a {
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 149, 79, 0.3);
  font-size: 0.9rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.policy-content h2 {
  margin: 32px 0 12px;
}

.policy-content h3 {
  margin: 24px 0 10px;
}

.policy-content p,
.policy-content li {
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest);
  color: var(--text-light);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.92rem;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  background: var(--gold-dark);
}

.cookie-btn-reject {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
  font-weight: 600;
}

.cookie-btn-reject:hover {
  background: #e8dfd0;
  color: var(--forest);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.cookie-btn-settings:hover {
  background: rgba(199, 149, 79, 0.15);
  color: var(--gold);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--cream);
  color: var(--text-dark);
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-alt);
  padding: 32px;
  border: 3px solid var(--gold);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: var(--forest);
}

.cookie-category p {
  font-size: 0.9rem;
}

.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: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.success-page {
  text-align: center;
  padding: 100px 20px;
  min-height: 60vh;
}

.success-page i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.success-page h1 {
  margin-bottom: 16px;
}

.success-page p {
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.deco-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--cream-dark);
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
  }

  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-image {
    order: -1;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 12px;
  }

  .header-inner {
    padding: 10px 12px;
  }

  .logo-link img {
    height: 36px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .section {
    padding: 48px 0;
  }

  .card {
    padding: 18px;
  }

  .cookie-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}
