/* -------------------------------------------
   CSS RESET & NORMALIZE
--------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html { height: 100%; }
body {
  min-height: 100vh;
  background: #F4F1EB;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23402B;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
  height: auto;
}
a {
  color: #23402B;
  text-decoration: none;
  transition: color 0.18s ease, border 0.18s;
}
a:focus {
  outline: 2px dashed #A8926C;
  outline-offset: 3px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}

/* -------------------------------------------
   FONTS (Vintage/Retro Style)
--------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #23402B;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 1px 2px 0 #A8926C33;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, .text-section > ul, .text-section > ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #23402B;
}
strong, b { font-weight: 600; color: #23402B; }

/**** Vintage/retro accents for titles ****/
h1, h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
h1:after, h2:after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: #A8926C;
  border-radius: 1.5px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* -------------------------------------------
   GENERIC CONTAINER & LAYOUT STRUCTURE
--------------------------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
  }
}

/**** Section spacings ****/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/**** Card container (for galleries/features/benefits) ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 #23402B14;
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  flex: 1 1 270px;
  min-width: 270px;
  transition: box-shadow 0.22s, transform 0.16s;
  border: 2px solid #A8926C;
}
.card:hover {
  box-shadow: 0 7px 24px #23402B26;
  transform: translateY(-3px) scale(1.02);
}

/**** Content grid (e.g., for features/services/pricing) ****/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/**** Text-image section alignment ****/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/**** Testimonial cards (special style for contrast) ****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAF7F1;
  border-radius: 18px;
  box-shadow: 0 4px 16px #23402B1c;
  margin-bottom: 20px;
  border-left: 5px solid #A8926C;
  transition: box-shadow 0.17s;
  color: #23402B;
  max-width: 500px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 25px #23402B22;
  background: #FFF;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #23402B;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.95;
}
.testimonial-footer span:first-child {
  font-size: 1.3em;
  color: #A8926C;
  font-family: 'Merriweather', serif;
  letter-spacing: 2px;
}

/**** Feature item ****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** Section-specific wrappers ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 24px;
  justify-content: space-between;
}
.feature-grid li {
  background: #FFF;
  border-radius: 16px;
  border: 2px solid #A8926C33;
  box-shadow: 0 2px 12px #23402B12;
  flex: 1 1 270px;
  min-width: 240px;
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  text-align: center;
  position: relative;
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  filter: sepia(0.7) hue-rotate(-30deg) saturate(0.8);
}
.feature-grid li h3 {
  font-size: 1.15rem;
  color: #23402B;
  margin-bottom: 10px;
  font-family: 'Merriweather', serif;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 6px 20px #23402B1b;
  transform: translateY(-2px) scale(1.01);
  border-color: #A8926C;
}

/**** Service cards ****/
.service-card {
  background: #F4F1EB;
  border-radius: 14px;
  border: 2px solid #A8926C26;
  box-shadow: 0 2px 10px #23402B12;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  padding: 28px 24px;
  transition: box-shadow 0.18s, border 0.18s;
}
.service-card h3 {
  color: #23402B;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
}
.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: #A8926C;
  border-bottom: 1.5px dashed #A8926C;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.96rem;
  transition: color 0.18s, border-bottom 0.18s;
}
.service-card a:hover,
.service-card a:focus {
  color: #23402B;
  border-bottom: 1.5px solid #23402B;
}
.service-card:hover {
  box-shadow: 0 8px 24px #23402B23;
  border-color: #A8926C66;
}

/**** Highlight boxes (gallery) ****/
.highlight-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.highlight-box {
  background: #FFF;
  border: 2px dashed #A8926C33;
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  box-shadow: 0 2px 8px #23402B10;
  font-family: 'Open Sans', Arial, sans-serif;
}
.highlight-box h3 {
  font-size: 1rem;
  color: #A8926C;
  margin-bottom: 11px;
  font-family: 'Merriweather', serif;
}

/**** Pricing table ****/
table {
  width: 100%;
  background: #FFF;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 10px #23402B13;
  border: 2px solid #A8926C17;
}
thead {
  background: #A8926C22;
}
th, td {
  padding: 12px 10px;
  text-align: left;
}
th {
  font-size: 1.05em;
  font-family: 'Merriweather', serif;
  color: #23402B;
  letter-spacing: 0.02em;
  font-weight: 700;
}
tbody tr {
  border-bottom: 1px solid #A8926C15;
}
tbody tr:nth-child(even) {
  background: #F4F1EB;
}

/**** About/Legal content blocks ****/
.text-section {
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/**** CTA Section ****/
.cta {
  background: #23402B;
  color: #FFF;
  border-radius: 18px;
  box-shadow: 0 8px 40px #23402B25;
  padding: 36px 18px;
  margin-bottom: 60px;
  min-height: 200px;
}
.cta h2 {
  color: #FFF;
  margin-bottom: 18px;
  text-shadow: none;
}
.cta p {
  color: #F4F1EB;
  font-size: 1.15rem;
}

/**** Map placeholder ****/
.map-placeholder {
  width: 100%;
  min-height: 180px;
  background: repeating-linear-gradient(135deg, #E5DFD1 0 6px, #FFF 6px 16px);
  border: 3px dashed #A8926C80;
  border-radius: 10px;
  margin: 14px 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------*/
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 3px 16px #23402B0f;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 70px;
  padding: 10px 20px 10px 10px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Merriweather', serif;
  font-size: 1.02rem;
}
header nav a {
  color: #23402B;
  font-weight: 600;
  opacity: 0.93;
  position: relative;
  padding: 5px 2px;
  transition: color 0.18s, border 0.18s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a.active {
  color: #A8926C;
  border-bottom: 2px solid #A8926C;
}
header img[alt="WildRevier Münster"] {
  height: 52px;
  width: auto;
  margin-right: 10px;
}
.cta-btn {
  display: inline-block;
  background: #A8926C;
  color: #23402B;
  border: none;
  border-radius: 30px;
  padding: 13px 34px 13px 34px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 2px 12px #23402B18;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #23402B;
  color: #FFF;
  box-shadow: 0 4px 20px #A8926C44;
  transform: scale(1.045);
}

/* Burger for mobile */
.mobile-menu-toggle {
  display: none;
  background: #A8926C;
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s;
  margin-left: 10px;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23402B;
  color: #FFF;
  box-shadow: 0 2px 10px #A8926C22;
}

/* -------------------------------------------
   MOBILE NAVIGATION OVERLAY
--------------------------------------------*/
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: #23402BBC;
    z-index: 1005;
    align-items: flex-start;
    justify-content: flex-end;
    transition: background 0.28s;
    pointer-events: all;
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-menu[aria-hidden="true"] {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s, transform 0.34s;
  }
  .mobile-nav {
    background: #F4F1EB;
    width: 89vw;
    max-width: 375px;
    height: 100vh;
    box-shadow: -4px 0 32px #23402B44;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 32px 28px 28px 32px;
    transform: translateX(0);
    animation: slideInMenu 0.5s cubic-bezier(.77,.01,.57,1.02);
  }
  @keyframes slideInMenu {
    from { transform: translateX(100%); }
    to   { transform: translateX(0);   }
  }
  .mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 32px;
    background: #A8926C;
    color: #FFF!important;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1010;
    box-shadow: 0 1px 8px #23402B11;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #23402B;
    color: #FFF!important;
  }
  .mobile-nav a {
    font-family: 'Merriweather', serif;
    color: #23402B;
    font-size: 1.13rem;
    font-weight: 700;
    padding: 15px 0 15px 0;
    border-bottom: 1.5px solid #A8926C23;
    transition: background 0.16s, color 0.16s;
    letter-spacing: 0.02em;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #A8926C;
    background: #E8E0D4;
    border-radius: 7px;
  }
}

/* -------------------------------------------
   HERO & SPECIAL SECTIONS
--------------------------------------------*/
.hero {
  background: #23402B url('../assets/hero-bg.jpg') top center/cover no-repeat;
  color: #FFF;
  min-height: 340px;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 10px 40px #23402B2c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #FFF;
  text-shadow: 0 3px 18px #23402B28;
  margin-bottom: 14px;
}
.hero .tagline {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #A8926C;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-shadow: none;
}
.hero .cta-btn {
  background: #A8926C;
  color: #23402B;
}
.hero .cta-btn:hover {
  background: #FFF;
  color: #23402B;
}

/* -------------------------------------------
   FOOTER
--------------------------------------------*/
footer {
  width: 100%;
  background: #23402B;
  color: #F4F1EB;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -6px 40px #23402B18;
  padding: 48px 0 30px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 10px 0 4px 0;
}
footer nav a {
  color: #A8926C;
  border-bottom: 1.5px dotted #A8926C88;
  font-size: 0.98rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #F4F1EB;
  border-bottom: 1.5px solid #F4F1EB;
}
footer img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
footer p {
  color: #F4F1EB;
  opacity: 0.97;
  font-size: 0.95rem;
  text-align: center;
}

/* -------------------------------------------
   FORMS & TABLES (for completeness)
--------------------------------------------*/
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #FFF;
  border-radius: 8px;
  border: 2px solid #A8926C50;
  padding: 10px 12px;
  margin-bottom: 14px;
  width: 100%;
  color: #23402B;
  outline: none;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #23402B;
  box-shadow: 0 2px 8px #A8926C33;
}
label {
  font-family: 'Merriweather', serif;
  margin-bottom: 5px;
  display: block;
  color: #23402B;
  font-weight: 700;
}
button {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  background: #A8926C;
  color: #23402B;
  border: none;
  border-radius: 8px;
  padding: 11px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.13s;
  margin-top: 5px;
}
button:hover, button:focus {
  background: #23402B;
  color: #FFF;
  box-shadow: 0 3px 14px #A8926C44;
}

/* -------------------------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------------------------*/
@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .card, .service-card, .highlight-box {
    min-width: 180px;
    padding: 18px 12px;
  }
}
@media (max-width: 900px) {
  .content-grid, .card-container, .feature-grid, .highlight-boxes {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid li, .service-card,
  .highlight-box, .card {
    min-width: 90vw;
  }
  .cta {
    margin: 30px 0 40px 0;
    padding: 26px 6px;
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .card, .service-card, .highlight-box {
    padding: 10px 2px;
  }
}

/* -------------------------------------------
   COOKIE BANNER & MODAL
--------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #A8926C;
  color: #23402B;
  padding: 18px 20px 18px 20px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -3px 22px #23402B28;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1030;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  animation: slideUpBanner 0.6s cubic-bezier(.17,.37,.42,.98);
}
@keyframes slideUpBanner {
  from {
    opacity: 0;
    transform: translateY(100%);
  }to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner p {
  margin-bottom: 8px;
  color: #23402B;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 3px;
}
.cookie-btn {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  background: #FFF;
  color: #23402B;
  border: 2px solid #23402B;
  border-radius: 24px;
  padding: 9px 26px;
  margin-right: 4px;
  margin-bottom: 3px;
  cursor: pointer;
  box-shadow: 0 1px 6px #23402B18;
  font-size: 1rem;
  transition: background 0.21s, color 0.15s, border 0.15s;
}
.cookie-btn.accept {
  background: #23402B;
  color: #FFF;
  border: 2px solid #A8926C;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A8926C;
  color: #23402B;
}
.cookie-btn.settings {
  background: #A8926C;
  color: #23402B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23402B;
  color: #FFF;
}
.cookie-btn.reject {
  background: #FFF0;
  color: #23402B;
  border: 2px solid #23402B44;
}
.cookie-btn.reject:hover {
  background: #FFF;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    border-radius: 8px 8px 0 0;
    padding: 14px 6px 14px 8px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-btn {
    width: 95%;
    font-size: 1rem;
    margin-top: 5px;
  }
}

/**** Cookie pref modal popup ****/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23402BCC;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
.cookie-modal-overlay.show {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 22px;
  padding: 42px 30px 30px 30px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 14px 48px #23402B33;
  color: #23402B;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: scaleInModal 0.35s cubic-bezier(.62,.04,.53,.94);
}
@keyframes scaleInModal {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Merriweather', serif;
  color: #23402B;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F1EB;
  padding: 14px 18px;
  border-radius: 13px;
  margin-bottom: 16px;
}
.cookie-modal-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #23402B;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #A8926C;
  width: 18px;
  height: 18px;
}
.cookie-modal-category input[disabled], .cookie-modal-category label.disabled {
  opacity: 0.55;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 15px;
  background: #A8926C;
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #23402B;
  color: #FFF;
}
@media (max-width: 470px) {
  .cookie-modal {
    padding: 20px 4vw 18px 4vw;
    min-width: unset;
  }
  .cookie-modal-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/**** Scrollbar (vintage thin) ****/
body::-webkit-scrollbar {
  width: 10px;
  background: #F4F1EB;
}
body::-webkit-scrollbar-thumb {
  background: #A8926C;
  border-radius: 12px;
  border: 2px solid #F4F1EB;
}

/* -------------------------------------------
   MISCELLANEOUS
--------------------------------------------*/
::selection {
  background: #A8926C44;
}
hr {
  border: none;
  border-bottom: 2px dashed #A8926C33;
  margin: 20px 0 24px;
}

/**** Decorative Patterns/Retro Borders ****/
.section, .cta, .card, .service-card, .testimonial-card, .highlight-box, .pricing, .about, .team, .why-us, .content-wrapper, .confirmation, .thanks {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  background: url('../assets/retro-dot.svg') no-repeat center center/contain;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  background: url('../assets/retro-stripes.svg') no-repeat center center/contain;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

/**** Utility Classes ****/
.d-flex { display: flex!important; }
.d-inline-flex { display: inline-flex!important; }
.center-x { justify-content: center!important; }
.center-y { align-items: center!important; }
.flex-col { flex-direction: column!important; }
.gap-20 { gap: 20px!important; }
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }

/**** Thank you & confirmation pages ****/
.confirmation, .thanks {
  min-height: 400px;
  padding: 40px 0 30px 0;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 3px 20px #23402B11;
}
.confirmation .cta-btn, .thanks .cta-btn {
  margin-top: 28px;
}

/**** Accessibility: Focus Styles ****/
.cta-btn:focus, .cookie-btn:focus, .service-card a:focus, .mobile-nav a:focus, button:focus {
  outline: 2px solid #A8926C;
  outline-offset: 2px;
}

/**** Hide visually (for accessible menu states) ****/
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
