/* -----------------------------------
   CSS RESET & NORMALIZATION
----------------------------------- */
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, 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F9F7F0;
  color: #23281A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #3E6B52;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #B2A060;
  outline: none;
}
ul, ol {
  margin-left: 28px;
  margin-bottom: 24px;
  color: #3A3F2B;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(116, 102, 43, 0.10);
}
th, td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid #EFE9DC;
  font-size: 16px;
}
th {
  background: #F6F0E7;
  color: #3E6B52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}

/* -----------------------------------
   BRAND VARIABLE ROOTS
----------------------------------- */
:root {
  --primary: #3E6B52;
  --secondary: #B3D3C2;
  --accent: #F9F7F0;
  --gold: #B2A060;
  --deep-green: #23281A;
  --mid-green: #5A8063;
  --shadow-color: rgba(176,168,136,0.11);
}

/* -----------------------------------
   TYPOGRAPHY
----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23281A;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
p, .subheadline, .tagline {
  color: #3A3F2B;
  font-size: 1rem;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--mid-green);
  margin-bottom: 24px;
  font-weight: 500;
}
.tagline {
  font-style: italic;
  font-size: 1.01rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
}
strong {
  font-weight: 600;
  color: var(--primary);
}

/* -----------------------------------
   LAYOUT CONTAINERS & UTILITIES
----------------------------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding-top: 10px;
  padding-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--shadow-color);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(176,168,136,0.19);
  transform: translateY(-2px) scale(1.012);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow-color);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 1px solid #F2ECD9;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #23281A;
  flex: 1;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Features Grid & Preview */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  flex: 1 1 220px;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--shadow-color);
  padding: 30px 24px 22px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  border: 1px solid #EFE9DC;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}
.feature h3 {
  color: var(--primary);
  margin-bottom: 11px;
  font-size: 1.16rem;
}
.feature:hover {
  box-shadow: 0 3px 14px rgba(176,168,136,0.16);
  transform: translateY(-3px) scale(1.02);
}
.services-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 6px;
}
.services-preview > div {
  flex: 1 1 270px;
  background: #F5F3EB;
  border-radius: 10px;
  box-shadow: 0 1px 7px var(--shadow-color);
  padding: 22px 18px;
  min-width: 220px;
  margin-bottom: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #E6DFCE;
}
.services-preview > div h3 {
  font-size: 1.11rem;
  color: var(--primary);
  margin-bottom: 4px;
}

/* Service Cards (services page) */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow-color);
  padding: 32px 28px 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #EFE9DC;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
  position: relative;
}
.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.service-card h2 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card .price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.04rem;
  margin-top: 13px;
  letter-spacing: 0.01em;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(176,168,136,0.18);
  transform: translateY(-4px) scale(1.016);
}

/* Team profiles */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.profile {
  flex: 1 1 230px;
  min-width: 200px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #EFE9DC;
  box-shadow: 0 1px 8px var(--shadow-color);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.profile h3 {
  color: var(--primary);
  font-size: 1.12rem;
}
.profile:hover {
  box-shadow: 0 4px 14px rgba(176,168,136,0.15);
  transform: translateY(-2px) scale(1.011);
}

/* Events */
.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.event-card {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F2ECD9;
  box-shadow: 0 1px 10px var(--shadow-color);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.event-card:hover {
  box-shadow: 0 8px 26px rgba(176,168,136,0.18);
  transform: translateY(-3px);
}
.event-card h3 {
  font-size: 1.12rem;
}
.event-card span {
  font-size: 0.97rem;
  color: var(--mid-green);
  margin-top: 4px;
}
.event-highlight {
  background: #F6F0E7;
  border: 1.5px solid #E3D6B8;
  border-radius: 10px;
  padding: 26px 22px;
  margin-bottom: 22px;
  box-shadow: 0 1px 6px var(--shadow-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-highlight h2 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.18rem;
}

/* Timetables & Pricing Tables */
.timetable, .pricing-table {
  margin-bottom: 32px;
  font-size: 1rem;
}
.timetable th, .pricing-table th {
  background: #F9F7F0;
  color: var(--gold);
  font-size: 1.06rem;
}
.timetable td, .pricing-table td {
  color: var(--primary);
}
.pricing-highlight {
  color: var(--gold);
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 18px;
}

/* Contact block */
.contact-details {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 9px var(--shadow-color);
  border: 1px solid #EFE9DC;
  padding: 28px 20px 18px 20px;
  margin-bottom: 20px;
  margin-right: 20px;
}
.map-block {
  flex: 1 1 220px;
  background: #F9F7F0;
  border-radius: 11px;
  padding: 20px 16px 18px 16px;
  min-width: 180px;
}
.map-block h3 {
  margin-bottom: 8px;
}

/* CTA buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border-radius: 28px;
  border: 0;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px var(--shadow-color);
  cursor: pointer;
  transition: background 0.19s, color 0.16s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  margin-top: 9px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold);
  color: #23281A;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 18px rgba(176,168,136,0.19);
}

/* -----------------------------------
   HEADER & NAVIGATION (DESKTOP)
----------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 10px var(--shadow-color);
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 12px;
  min-height: 64px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.19s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 20px;
  padding: 4px 9px;
  border-radius: 10px;
  transition: background 0.15s, color 0.18s;
  z-index: 2111;
}
.mobile-menu-toggle:focus {
  background: #EEE7D2;
}

/* -----------------------------------
   MOBILE MENU
----------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.60, 0.05, 0.25, 0.98);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 35px rgba(34,43,25,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.4rem;
  margin: 21px 19px 10px 0;
  padding: 6px 11px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.12s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EEE7D2;
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  width: 100%;
  padding: 15px 32px 20px 32px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid #F4EDD8;
  width: 100%;
  transition: color 0.21s, background 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--gold);
}

/* Hide desktop nav/show mobile on mobile breakpoints */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
  background: #23281A;
  color: #fff;
  padding: 0;
  border-top: 4px solid var(--primary);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 25px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.14s, color 0.15s;
  font-size: 1rem;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.brand-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.brand-credits img {
  height: 34px;
  width: auto;
}
.brand-credits .tagline {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.98rem;
}
.brand-credits .copyright {
  color: #B3D3C2;
  font-size: 0.96rem;
  margin-top: 2px;
}

/* -----------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 24px var(--shadow-color);
  border: 1.5px solid #EFE9DC;
  padding: 20px 32px 20px 32px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.27,0.84,0.67,1.98);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #3E6B52;
  font-size: 1.02rem;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  margin-right: 12px;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.19s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1.5px 10px var(--shadow-color);
  border: 1.5px solid var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--gold);
  color: #23281A;
}
.cookie-banner .reject {
  background: #F6F0E7;
  color: var(--primary);
  border: 1.5px solid #EFE9DC;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #EDE4C6;
  color: var(--gold);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  border: 1.5px solid #EFE9DC;
  box-shadow: none;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FCFAF5;
  color: var(--primary);
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3300;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(62,107,82,0.26);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  width: 100%;
  max-width: 395px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 28px var(--shadow-color);
  border: 1.5px solid #EFE9DC;
  padding: 30px 28px 22px 28px;
  margin-bottom: 0;
  animation: slideInModal 0.42s cubic-bezier(.35,1.36,.36,1) both;
}
@keyframes slideInModal {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(0); }
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  border-radius: 12px;
  background: #E6DFCE;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.11s;
  border: 1.5px solid #CEC7B2;
}
.cookie-toggle.enabled {
  background: var(--primary);
  border-color: var(--gold);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 1.5px;
  transition: left 0.17s;
  box-shadow: 0 1px 4px rgba(122,104,55,0.13);
}
.cookie-toggle.enabled::before {
  left: 22px;
  background: var(--gold);
}
.cookie-category .desc {
  color: #5A8063;
  font-size: 0.97rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal button {
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
  background: var(--primary);
  color: #fff;
}
.cookie-modal button.save {
  background: var(--gold);
  color: #23281A;
}
.cookie-modal button.cancel {
  background: #F5F3EB;
  color: var(--primary);
}

/* -----------------------------------
   RESPONSIVE STYLES
----------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
  }
  .footer-nav, .main-nav, .events-list, .team-grid, .features-grid, .services-grid, .services-preview {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .events-list, .features-grid, .services-grid, .team-grid, .services-preview {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .feature, .service-card, .profile, .event-card {
    min-width: unset;
    width: 100%;
  }
  .map-block, .contact-details {
    margin-right: 0;
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 97%;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.09rem; }
  .brand-credits img {
    height: 28px;
  }
  header img {
    height: 38px;
    margin-right: 14px;
  }
  .section {
    padding: 27px 7px;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 99vw;
  }
  .main-nav { gap: 12px; }
  .content-wrapper {
    gap: 13px;
    padding-right: 0;
    padding-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .features-grid, .services-grid, .events-list, .team-grid, .services-preview {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card, .card, .profile, .feature, .service-card {
    padding: 17px 12px;
  }
  .cookie-banner {
    left: 2vw; right: 2vw; min-width: 0; padding: 13px 11px 13px 18px;
  }
  .cookie-modal {
    max-width: 95vw;
    padding: 18px 7px 13px 12px;
  }
}
@media (max-width: 500px) {
  .footer-nav, .brand-credits {
    align-items: flex-start !important;
    gap: 11px !important;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-banner {
    left: 3vw; right: 3vw; padding: 8px 7px 12px 10px;
  }
}

/* -----------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
----------------------------------- */
.btn-primary, .service-card, .feature, .testimonial-card, .card, .mobile-menu, .mobile-nav a, .footer-nav a, .main-nav a, .event-card {
  transition-property: box-shadow, background, color, transform, border-color;
  transition-duration: 0.15s, 0.17s, 0.19s, 0.17s, 0.18s;
}

/* Focus Visible for Keyboard Navigation */
a:focus, button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* -----------------------------------
   FORMS (for future use)
----------------------------------- */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.2px solid #EFE9DC;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* -----------------------------------
   SCROLLBAR (Modern Browsers)
----------------------------------- */
body::-webkit-scrollbar { width: 10px; background: #F6F0E7; }
body::-webkit-scrollbar-thumb { background: #CEC7B2; border-radius: 5px; }

/* -----------------------------------
   MISCELLANEOUS DETAILS
----------------------------------- */
hr {
  border: none;
  height: 1.2px;
  background: #EFE9DC;
  border-radius: 2px;
  margin: 30px 0;
}
blockquote {
  padding-left: 16px;
  border-left: 3.5px solid var(--gold);
  font-style: italic;
  color: var(--mid-green);
  margin-bottom: 22px;
}

/* Ensure no accidental overlapping */
.card, .service-card, .feature, .testimonial-card, .event-card, .profile {
  z-index: 1;
}

/* Spacing enforcement between cards/sections */
.card + .card,
.service-card + .service-card,
.profile + .profile,
.feature + .feature,
.event-card + .event-card,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}
.section + .section {
  margin-top: 20px;
}

/* Hide overflow for modals/menus */
.mobile-menu.open, .cookie-modal-overlay.open {
  overflow-y: auto;
}
