/* ------------- RESET & BASE ------------- */
/* CSS Reset and Normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #174153;
  background-color: #F8F6F1;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
  background: none;
  border: none;
}
ul, ol {
  list-style: none;
}

/* ------------- VARIABLES ------------- */
:root {
  --brand-primary: #174153;
  --brand-secondary: #57A273;
  --brand-accent: #F8F6F1;
  --gold: #C8AA6E;
  --rich-black: #101820;
  --white: #fff;
  --body-font: 'Open Sans', Arial, sans-serif;
  --display-font: 'Montserrat', Arial, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --shadow-md: 0 6px 32px rgba(0,0,0,0.08), 0 1.5px 8px rgba(200,170,110,0.11);
  --shadow-sm: 0 2px 8px rgba(23,65,83,0.10);
  --transition: 0.23s cubic-bezier(.45,.2,.24,1);
}

/* Fallbacks */
body {
  background: var(--brand-accent, #F8F6F1);
}

/* ------------- TYPOGRAPHY ------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: var(--brand-primary);
}
h4, h5, h6 {
  font-size: 1.125rem;
}

p, li {
  font-size: 1.063rem;
  line-height: 1.65;
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-family: var(--body-font);
}
p:last-child, ul:last-child, ol:last-child, div:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: 700;
  color: var(--brand-primary);
}
em, i {
  font-style: italic;
}

/* ------------- CONTAINER ------------- */
.container {
  width: 100%;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ------------- HEADER ------------- */
header {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(23,65,83,0.07);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
.logo img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--display-font);
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1.08rem;
  letter-spacing: .02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transform: translateY(4px) scaleX(0);
  transition: transform .21s, opacity .19s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  opacity: 1;
  transform: translateY(2px) scaleX(0.55);
}

.cta {
  font-family: var(--display-font);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 10px 30px;
  font-size: 1.06rem;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: inline-block;
  border: none;
  outline: none;
  margin-left: 20px;
  text-align: center;
}
.cta.primary {
  background: var(--brand-primary);
  color: var(--gold);
  border: 2px solid var(--brand-primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--gold);
  box-shadow: 0 5px 24px rgba(23,65,83,0.22);
}
.cta.secondary {
  background: var(--gold);
  color: var(--rich-black);
  border: 2px solid var(--gold);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-secondary);
  color: var(--white);
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 5px 24px rgba(87,162,115,0.16);
}

/* ------------- MOBILE NAVIGATION ------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  transition: background var(--transition);
  border: none;
  z-index: 1100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gold);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 41, 53, 0.93);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 20px 26px;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.68,-0.55,.27,1.55);
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover {
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 2px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--brand-primary);
}

@media (max-width: 980px) {
  header .container {
    gap: 10px;
  }
  nav.main-nav {
    gap: 18px;
  }
  .cta {
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  nav.main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }
}

/* ------------- SECTIONS & SPACING ------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
  position: relative;
}
section.hero {
  padding-top: 64px;
  padding-bottom: 60px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.text-section, .address-block, .email-block, .map-snippet {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  section, section.hero {
    padding: 24px 6px;
    margin-bottom: 46px;
    border-radius: var(--radius-sm);
  }
}

/* ------------- FLEX & CARD LAYOUTS ------------- */
/* Feature grid - 3 per row desktop, column on mobile */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  flex-basis: 280px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--brand-accent);
}
.feature-item:hover {
  box-shadow: 0 9px 36px rgba(23,65,83,0.19);
  transform: translateY(-7px) scale(1.035);
}
.feature-item img {
  width: 32px;
  height: 32px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.services-list li {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 20px 18px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  margin-bottom: 8px;
  transition: background var(--transition), box-shadow var(--transition);
}
.services-list li h3 {
  margin-bottom: 8px;
}
.services-list li:hover {
  background: var(--brand-accent);
  box-shadow: 0 5px 24px rgba(23,65,83,0.14);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid var(--brand-accent);
  transition: box-shadow var(--transition);
}
.card:hover {
  box-shadow: 0 9px 36px rgba(200,170,110,0.13);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 16px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ------------- TESTIMONIALS ------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 16px rgba(200,170,110,0.09);
  border-left: 5px solid var(--gold);
  min-width: 260px;
  max-width: 400px;
  color: var(--rich-black);
}
.testimonial-card p {
  color: var(--rich-black);
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: var(--brand-secondary);
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* ------------- CONTACT & INFO BLOCKS ------------- */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
  margin-top: 16px;
}
.contact-info-block > div {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  min-width: 185px;
  max-width: 310px;
  flex: 1 1 200px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3.5px solid var(--gold);
}
.contact-info-block h3, .contact-info-block h2 {
  margin-bottom: 7px;
  font-size: 1.13rem;
  color: var(--brand-secondary);
}
.address-block, .email-block, .map-snippet {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .contact-info-block {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info-block > div {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/* ------------- PRICE TABLES ------------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  box-shadow: none;
}
.price-table th,
.price-table td {
  background: #fff;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.price-table thead th {
  font-family: var(--display-font);
  background: var(--brand-primary);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: .025em;
}
.price-table tbody tr:hover td {
  background: var(--gold);
  color: var(--brand-primary);
  transition: background var(--transition);  
}
.price-table tbody tr td {
  border-bottom: 1.5px solid var(--brand-accent);
}

/* ------------- EVENT GALLERY & STORIES ------------- */
.event-story {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px 16px 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 4px solid var(--brand-secondary);
}
.event-story h3 {
  margin-bottom: 6px;
  color: var(--brand-secondary);
}
.event-format-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.nature-engagement {
  background: var(--brand-accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

/* ------------- CTA SECTION ------------- */
.cta-section {
  background: var(--brand-accent);
  border-radius: var(--radius-lg);
  padding: 48px 20px;
  text-align: left;
}
.cta-section .cta {
  margin-top: 14px;
}

/* ------------- FAQ ------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 28px 20px 22px;
  border-left: 4px solid var(--brand-secondary);
  margin-bottom: 8px;
}
.faq-item h2 {
  font-size: 1.27rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

/* ------------- FOOTER ------------- */
footer {
  background: var(--brand-primary);
  color: var(--gold);
  padding: 36px 0 22px 0;
  box-shadow: 0 -4px 24px rgba(23,65,83,0.09);
  font-size: .98rem;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 500;
  transition: color var(--transition);
  opacity: 0.87;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
  opacity: 1;
}
.footer-logo img {
  height: 39px;
}
.footer-brand {
  color: var(--gold);
  font-size: 1rem;
  opacity: .84;
  margin-left: 6px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
  }
  .footer-logo img {
    margin: 0 auto;
  }
}

/* ------------- BUTTONS, INTERACTIONS ------------- */
button, .cta, .mobile-menu-toggle {
  cursor: pointer;
}
button:focus-visible, .cta:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Subtle micro-interaction */
a, .cta, button {
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta:active, button:active {
  transform: scale(0.98);
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #191E23;
  color: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 26px 32px 23px 32px;
  box-shadow: 0 -2px 24px rgba(23,65,83,0.19);
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity .23s, transform .24s cubic-bezier(.38,.4,.56,1.1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  max-width: 700px;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: var(--gold);
  color: var(--brand-primary);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 9px 22px;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  box-shadow: none;
}
.cookie-btn.reject {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--white);
  border: 2px solid var(--brand-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 8px 13px 8px;
    gap: 15px;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-end;
  }
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  background: rgba(23,41,53,0.63);
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: 48px 32px 32px 32px;
  min-width: 330px;
  max-width: 94vw;
  box-shadow: 0 6px 40px rgba(23,65,83,0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  color: var(--brand-primary);
  margin-bottom: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-accent);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 1.05rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-category.essential {
  font-weight: bold;
  color: var(--brand-primary);
  background: #eae1c7;
  opacity: 1;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.cookie-modal-close:hover {
  color: var(--gold);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 24px 7px 18px 7px;
    min-width: unset;
  }
}

/* ------------- MICRO-ANIMATIONS ------------- */
.card, .feature-item, .testimonial-card, .cta, .faq-item, .services-list li, .event-story {
  transition: box-shadow .22s, transform .23s, background .21s, color .2s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .faq-item:hover, .services-list li:hover {
  box-shadow: 0 9px 36px rgba(23,65,83,0.10), 0 2.5px 14px rgba(200,170,110,0.08);
  transform: translateY(-5px) scale(1.012);
  background: #faf5eb;
}

/* ------------- FORM ELEMENTS ------------- */
input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border: 1.4px solid var(--brand-accent);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1.07rem;
  margin-bottom: 16px;
  transition: border .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}
label {
  font-family: var(--display-font);
  font-size: 1.03rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ------------- MISC ------------- */
hr {
  border: none;
  border-bottom: 1.5px solid var(--brand-accent);
  margin: 32px 0 24px 0;
}
blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin: 0 0 20px 0;
  color: var(--brand-primary);
  background: var(--brand-accent);
}

/* ------------- RESPONSIVENESS ------------- */
@media (max-width: 650px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .faq-item, .event-story, .card, .feature-item {
    padding: 12px 9px 12px 13px;
  }
}
/* Hide scrollbars on mobile menu overlay scroll */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;  /* IE 10+ */
  scrollbar-width: none;     /* Firefox */
}
