/* ========================================================================
   CSS RESET & BASE TYPOGRAPHY: Elegant Classic Style for Sammlerforum Münster
   ======================================================================== */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F9F6ED;
  color: #26323C;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s;
}
ul, ol {
  padding-left: 1.25em;
}
li {
  margin-bottom: 0.5em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}
a {
  color: #20465A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #8A6C18;
  text-decoration: none;
  outline: none;
}
*:focus {
  outline: 2px solid #AE9342;
  outline-offset: 2px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------------------
   TYPOGRAPHY: Hierarchy and Scales
   ------------------------------------------------------------------------ */
h1, .hero h1 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #20465A;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #20465A;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #26323C;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-family: "Merriweather", Georgia, serif;
  color: #26323C;
  margin-bottom: 10px;
  font-size: 1rem;
}
p, .value-list li, .confirmation-message {
  color: #333D48;
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #26323C;
  margin-bottom: 28px;
  max-width: 680px;
}
.value-list {
  list-style-type: disc;
  font-size: 1rem;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 600;
  color: #20465A;
}
em {
  font-style: italic;
}

/* ------------------------------------------------------------------------
   CONTAINER & SECTION STYLES
   ------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(32, 70, 90, 0.05);
}
/* Remove bg for hero/about where needed, handled below */

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 36px;
    align-items: flex-start;
  }
}
/* Alignment for flexible content (used in about, contact, hero, etc) */
.text-section {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ------------------------------------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------------------------------------ */
header {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 2px 10px rgba(32,70,90,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 10px 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  padding: 0 20px 10px 20px;
}
.main-nav a {
  color: #20465A;
  font-family: "Merriweather", Georgia, serif;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #8A6C18;
  border-bottom: 2px solid #AE9342;
}
.cta.primary {
  display: inline-block;
  background: #20465A;
  color: #fff;
  border-radius: 28px;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 600;
  padding: 12px 32px;
  margin-left: 20px;
  margin-right: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(32,70,90,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #8A6C18;
  color: #fff;
  box-shadow: 0 3px 18px rgba(174,147,66,0.10);
  transform: translateY(-1.5px) scale(1.04);
}
.cta.secondary {
  display: inline-block;
  background: #fff;
  color: #20465A;
  border: 2px solid #AE9342;
  border-radius: 26px;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 500;
  padding: 10px 24px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.19s, border-color 0.18s;
  cursor: pointer;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #AE9342;
  color: #fff;
  border-color: #AE9342;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #20465A;
  margin-right: 10px;
  margin-left: auto;
  cursor: pointer;
  padding: 9px 8px 7px 8px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F9F6ED;
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}

/* Mobile nav and desktop nav switch */
@media (max-width: 991.98px) {
  .main-nav { display: none; }
  .cta.primary { display: none; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* ------------------------------------------------------------------------
   MOBILE MENU OVERLAY
   ------------------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32, 70, 90, 0.92);
  box-shadow: -6px 0 30px rgba(32,70,90,0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.55,0,.1,1);
  z-index: 1300;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 30px 26px 22px 0;
  cursor: pointer;
  z-index: 1310;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #AE9342;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-end;
  margin: 30px 36px 0 0;
}
.mobile-nav a {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s; 
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #AE9342;
  border-bottom: 2px solid #AE9342;
}

/* ------------------------------------------------------------------------
   HERO / BANNER / INTRO SECTIONS
   ------------------------------------------------------------------------ */
.hero, .gallery-about, .thankyou {
  background: #F9F6ED;
  border-radius: 0;
  margin-bottom: 56px;
  box-shadow: none;
  padding: 60px 0 44px 0;
}
.hero .container, .gallery-about .container, .thankyou .container {
  padding-left: 0;
  padding-right: 0;
}
.hero .content-wrapper, .gallery-about .content-wrapper, .thankyou .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(32,70,90,0.07);
  padding: 36px 28px;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 568px) {
  .hero .content-wrapper, .gallery-about .content-wrapper, .thankyou .content-wrapper {
    padding: 24px 8px;
  }
}

/* ------------------------------------------------------------------------
   FLEXBOX LAYOUT PATTERNS (MANDATORY)
   ------------------------------------------------------------------------ */
.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: 14px;
  box-shadow: 0 2px 8px rgba(32,70,90,0.06);
  padding: 26px 22px;
  min-width: 260px;
  flex: 1 1 300px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 16px 26px;
  background: #F9F6ED;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(32,70,90,0.05);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 380px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 16px rgba(174,147,66,0.09);
  transform: translateY(-1.5px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom layout containers for page content */
/* Features (homepage, events, membership) */
.features .content-wrapper, .feature-grid, .feature-list, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  flex: 1 1 230px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 9px rgba(32,70,90,0.06);
  padding: 24px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid #8A6C18;
  transition: box-shadow 0.18s, border-left 0.16s;
}
.feature:hover, .feature:focus {
  box-shadow: 0 5px 18px rgba(32,70,90,0.10);
  border-left: 4px solid #20465A;
}

/* Homepage - About Preview & Services Preview */
.services-preview .services-list,
.services-preview .content-wrapper,
.about-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.service {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 9px rgba(32,70,90,0.07);
  padding: 22px 16px 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-bottom: 4px solid #AE9342;
  transition: box-shadow 0.17s, border-bottom 0.16s;
}
.service:hover, .service:focus {
  box-shadow: 0 8px 18px rgba(174,147,66,0.10);
  border-bottom: 4px solid #20465A;
}

/* Card and grid lists in Leistungsseite */
.service-cards, .team-list, .values-grid, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.service-card, .value-item, .benefit, .team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,70,90,0.07);
  padding: 26px 18px 24px 18px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s;
}
.service-card:hover, .value-item:hover, .benefit:hover, .team-member:hover {
  box-shadow: 0 6px 22px rgba(174,147,66,0.075);
}
.service-card .price {
  margin-top: 10px;
  color: #8A6C18;
  font-weight: 600;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.07em;
}

.team-member h3 {
  margin-bottom: 4px;
}
.team-member a {
  margin-top: 7px;
  color: #20465A;
  text-decoration: underline;
  font-weight: 500;
}
.team-member a:hover, .team-member a:focus {
  color: #8A6C18;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item h3 {
  font-size: 1.10rem;
  color: #20465A;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
  color: #333D48;
  margin-bottom: 0;
}

/* Legal pages */
.legal-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #26323C;
}
.legal-text ul {
  margin-bottom: 0 !important;
}
.legal-text h2 {
  font-size: 1.25rem;
  margin-top: 8px;
}

/* Event List Items */
.event-overview {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.event-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(32,70,90,0.04);
  padding: 19px 18px;
  margin-bottom: 8px;
  border-left: 4px solid #AE9342;
}
.event-item h3 {
  font-size: 1.10rem;
  color: #20465A;
  margin-bottom: 6px;
}
.event-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0 0;
}
.event-filters button {
  background: #fff;
  color: #20465A;
  border: 1.5px solid #AE9342;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.16s;
}
.event-filters button:hover, .event-filters button:focus {
  background: #AE9342;
  color: #fff;
  border: 1.5px solid #20465A;
}

/* Testimonial Slider (simple stacked) */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card span,
.testimonial-card strong {
  font-family: "Merriweather", Georgia, serif;
  color: #26323C;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  color: #26323C;
  font-size: 1.05rem;
  font-style: italic;
}

/* Values - about page */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}
.value-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px rgba(32,70,90,0.06);
  padding: 22px 16px 16px 16px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s;
}
.value-item h3 {
  font-size: 1.12rem;
  color: #20465A;
}
.value-item p {
  font-size: 1rem;
  color: #26323C;
}

/* Newsletter-Signup Box */
.newsletter-signup {
  background: #20465A;
  color: #FFF;
  padding: 12px 24px;
  border-radius: 10px;
  margin: 32px auto 0 auto;
  text-align: center;
  font-size: 1.05rem;
  max-width: 420px;
}
.newsletter-signup span { color: #fff; }

/* Contact Short (footer & thankyou) */
.contact-short {
  font-size: 0.98rem;
  color: #26323C;
  margin: 19px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.contact-short a { color: #20465A; }

/* ------------------------------------------------------------------------
   FOOTER STYLES
   ------------------------------------------------------------------------ */
footer {
  background: #F9F6ED;
  border-top: 2px solid #E8E1C8;
  padding: 36px 20px 18px 20px;
  margin-top: 56px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #20465A;
  text-decoration: none;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1em;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #8A6C18;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.social-links img {
  width: 28px;
  height: 28px;
  transition: filter 0.18s, transform 0.16s;
  filter: grayscale(35%) brightness(0.95);
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.social-links img:hover, .social-links img:focus {
  filter: none;
  box-shadow: 0 2px 12px #AE934221;
  transform: scale(1.08);
}

/* ------------------------------------------------------------------------
   CUSTOM COOKIE BANNER & MODAL
   ------------------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: #fff;
  color: #20465A;
  border-top: 2px solid #DCB64D;
  box-shadow: 0 -4px 28px rgba(32,70,90,0.13);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 22px 12px 18px 12px;
  gap: 16px;
  font-size: 1.07rem;
  animation: cookie-in 0.7s cubic-bezier(.46,.03,.52,.96);
}
@keyframes cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 18px;
  font-size: 1rem;
  font-family: "Merriweather", Georgia, serif;
  border-radius: 25px;
  border: none;
  margin: 0 4px;
  transition: background 0.17s, color 0.16s;
  cursor: pointer;
}
.cookie-banner .accept-btn {
  background: #20465A;
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #8A6C18;
}
.cookie-banner .reject-btn {
  background: #F9F6ED;
  color: #20465A;
  border: 1.5px solid #AE9342;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #AE9342;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #AE9342;
  border: 1.5px solid #AE9342;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #AE9342;
  color: #fff;
}

/* Cookie preferences modal overlay & dialog */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 2550;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32, 70, 90, 0.35);
}
.cookie-modal-backdrop.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.3s;
}
@keyframes modal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #20465A;
  max-width: 440px;
  width: 96vw;
  border-radius: 17px;
  box-shadow: 0 8px 40px rgba(32,70,90,0.14);
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modal-slidein 0.5s cubic-bezier(.64,.07,.51,.96);
}
@keyframes modal-slidein {
  0% { transform: translateY(40px) scale(0.97); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: #20465A;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #AE9342;
  border-radius: 6px;
  vertical-align: middle;
}
.cookie-modal .always-on {
  color: #8A6C18;
  font-size: 0.98rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal button {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 25px;
  font-family: "Merriweather", Georgia, serif;
  border: none;
  background: #20465A;
  color: #fff;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.cookie-modal button.secondary {
  background: #F9F6ED;
  color: #20465A;
  border: 1.5px solid #AE9342;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #AE9342;
  color: #fff;
}
.cookie-modal button.primary:hover, .cookie-modal button.primary:focus {
  background: #8A6C18;
  color: #fff;
}

/* ------------------------------------------------------------------------
   RESPONSIVE DESIGN: MOBILE-FIRST ADJUSTMENTS
   ------------------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .container { padding: 0 10px; }
  .content-wrapper, .feature-grid, .feature-list, .feature-icons, .card-container, .service-cards, .team-list, .values-grid, .benefit-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .hero .content-wrapper, .gallery-about .content-wrapper, .thankyou .content-wrapper {
    max-width: 98vw;
    border-radius: 8px;
    padding: 18px 3vw;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  section, .section {
    padding: 24px 6px;
    border-radius: 9px;
    margin-bottom: 36px;
  }
  .value-item, .service-card, .feature, .team-member, .benefit {
    border-radius: 8px;
    padding: 18px 9px;
  }
  .testimonial-card {
    padding: 12px 8px 12px 12px;
    border-radius: 7px;
    max-width: 96vw;
  }
  .hero, .gallery-about, .thankyou {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
}

/* ------------------------------------------------------------------------
   TRANSITIONS & MICRO-INTERACTIONS
   ------------------------------------------------------------------------ */
button, .cta.primary, .cta.secondary, .feature, .service, .testimonial-card, .service-card, .team-member, .value-item, .benefit, .event-filters button, .social-links img {
  transition: box-shadow 0.18s, background 0.18s, color 0.16s, transform 0.13s, border-color 0.15s;
}

/* ------------------------------------------------------------------------
   MISCELLANEOUS UTILITY
   ------------------------------------------------------------------------ */
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

hr {
  border: none;
  border-bottom: 1.5px solid #E8E1C8;
  margin: 30px 0;
}

/* Hide scrollbars for modals/menu where appropriate */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ------------------------------------------------------------------------
   END OF CSS
   ------------------------------------------------------------------------ */
