/* 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 {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F6F7FB;
  color: #23395B;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding-bottom: 60px; /* space for cookie banner */
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #B08150;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #23395B;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, 'Times New Roman', Times, serif;
  color: #23395B;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.17;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(201, 193, 168, 0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* HEADER STYLES */
header {
  width: 100%;
  background: linear-gradient(90deg, #F1F2EE 0%, #DED9F5 80%, #F1F2EE 100%);
  box-shadow: 0 1px 10px 0 rgba(73, 60, 125, 0.03);
  border-bottom: 1px solid #EFE9E2;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #23395B;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #EFE9E2;
  color: #B08150;
  outline: none;
}
.cta-btn {
  background: #B08150;
  color: #fff;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 12px 0 rgba(176,129,80,0.06);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
  margin-left: 12px;
  text-align: center;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #dea951;
  box-shadow: 0 4px 18px 0 rgba(176,129,80,0.11);
  color: #fff;
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #B08150;
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F3F0ED;
}
/* MOBILE NAVIGATION */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248,247,253,0.97);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.47,1.64,.41,.8);
  box-shadow: -2px 0 24px 0 rgba(60,48,111,0.04);
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 28px 0 0;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: #B08150;
  opacity: 0.94;
  cursor: pointer;
  padding: 0 6px;
  border-radius: 99px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F3F0ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 58px auto 0 auto;
  width: 80%;
  max-width: 340px;
}
.mobile-nav a {
  color: #23395B;
  font-size: 1.24rem;
  font-family: 'Lora', Georgia, serif;
  text-align: left;
  padding: 10px 0 10px 2px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B08150;
  background: #ece8f3;
  outline: none;
}
@media (max-width: 980px) {
  header .container {
    gap: 8px;
    padding: 0 10px;
  }
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {display: none !important;}
}
/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 0px 0 42px 0;
  background: linear-gradient(120deg, #F1F2EE 80%, #E8E1FA 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 32px 0 rgba(187, 181, 226, 0.06);
}
.hero .container { min-height: 240px; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  padding: 38px 0 0 0;
}
.hero h1 { color: #23395B; }
.hero p {
  color: #554B83;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 10px;
}
/* FEATURES SECTION */
.features {
  background: #FCFAFD;
  box-shadow: 0 1px 32px 0 rgba(187,181,226,0.08);
  border-radius: 24px;
}
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  justify-content: space-between;
  list-style: none;
}
.features .content-wrapper ul li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(201,193,168,0.08);
  padding: 28px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 0;
  min-height: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features .content-wrapper ul li:hover {
  box-shadow: 0 8px 42px 0 rgba(230, 205, 129, 0.14);
  transform: translateY(-4px) scale(1.022);
}
.features img {
  width: 40px;
  height: 40px;
  margin-bottom: 3px;
}
.features h3 {
  font-size: 1.19rem;
  color: #B08150;
  margin-bottom: 6px;
}
/* ABOUT SNIPPET, SERVICES OVERVIEW, ETC. */
.about-snippet, .services-overview, .about, .vision-mission, .team, .legal, .contact, .office-info, .faq, .confirmation, .reviews-listing, .how-it-works, .subscription, .events-list, .organize-event, .callout {
  background: #F9F9FC;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(187,181,226,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-snippet ul, .services-overview ul, .about ul, .vision-mission ul, .how-it-works ul, .subscription ul, .contact-details {
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #23395B;
  font-size: 1rem;
}
.location-map {
  background: #F1F2EE;
  border-radius: 10px;
  padding: 16px;
  margin-top: 18px;
}
.pricing-details {
  font-size: 1.2rem;
  color: #B08150;
  background: #F8F6F2;
  border-radius: 10px;
  padding: 12px 18px;
  margin: 17px 0;
  font-family: 'Lora', serif;
  font-weight: 600;
}
/* CARD & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(201,193,168,0.09);
  position: relative;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(201,193,168,0.18);
  transform: translateY(-2px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 18px 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
/* TESTIMONIALS SECTION */
.testimonials {
  background: #FAF8F3;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(233,223,189,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 20px 22px;
  box-shadow: 0 2px 14px 0 rgba(201,193,168,0.10);
  margin-bottom: 20px;
  color: #2d3455;
  font-size: 1.08rem;
  line-height: 1.7;
  min-width: 0;
}
.testimonial-card p {
  margin: 0;
  color: #23395B;
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  font-weight: 500;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  color: #8F9177;
  font-style: italic;
  margin-top: 2px;
}
/* FEATURES ITEM (used in .features) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 12px 0;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(220,212,175,0.11);
  padding: 26px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 0;
  min-height: 140px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #F7F2EC;
}
.service-card .price {
  margin-top: 8px;
  color: #B08150;
  font-weight: bold;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
}
.service-card:hover {
  box-shadow: 0 6px 32px 0 rgba(220,212,175,0.13);
  transform: translateY(-2px) scale(1.015);
}
/* REVIEW CARDS - buchrezensionen.html */
.featured-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 13px 0 rgba(201,193,168,0.10);
  padding: 22px 16px 19px 18px;
  flex: 1 1 220px;
  min-width: 0;
  min-height: 110px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.review-card:hover {
  box-shadow: 0 8px 32px 0 rgba(220,212,175,0.11);
  transform: translateY(-2px) scale(1.015);
}
/* FAQ */
.faq-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(201,193,168,0.09);
  padding: 18px 18px 15px 18px;
  flex: 1 1 230px;
  min-width: 0;
  transition: box-shadow 0.14s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 6px 30px 0 rgba(187,181,226,0.15);
  transform: translateY(-2px) scale(1.01);
}
.faq-item strong {
  display: block;
  color: #B08150;
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.faq-item p {
  margin-bottom: 0;
  font-size: 1.01rem;
}
/* TEAM GRID */
.team-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 16px;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px 0 rgba(209,198,183,0.09);
  padding: 20px 16px 16px 18px;
  flex: 1 1 220px;
  min-width: 0;
  min-height: 80px;
}
.team-member h3 {
  color: #B08150;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.team-member p {
  color: #23395B;
  font-size: 0.98rem;
}
/* EVENTS LIST & ENTRIES */
.events-calendar {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.event-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.event-entry {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(209,198,183,0.08);
  padding: 16px 18px 12px 18px;
}
.event-entry h3 {
  color: #B08150;
  margin-bottom: 4px;
}
.event-entry p {
  color: #303973;
  margin-bottom: 0;
}
/* FOOTER */
footer {
  background: #F1F2EE;
  padding: 38px 0 20px 0;
  margin-top: 80px;
  border-top: 1px solid #ECE7DC;
  box-shadow: 0 -3px 30px 0 rgba(201,193,168,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0;
  font-size: 1rem;
  color: #B08150;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer nav a {
  color: #B08150;
  transition: color 0.18s;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: #23395B;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 0.97rem;
  color: #717182;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
footer p {
  font-size: 0.97rem;
  color: #969BA5;
  margin-top: 18px;
}
footer img {
  width: 54px;
  margin-bottom: 5px;
}
/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .features .content-wrapper ul,
  .service-cards,
  .featured-reviews-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-members-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 700px) {
  body { font-size: 15.2px; }
  h1 { font-size: 2.02rem; }
  h2 { font-size: 1.54rem; }
  h3 { font-size: 1.09rem; }
  .section, .about-snippet, .services-overview, .about, .vision-mission, .team, .legal, .contact, .office-info, .faq, .confirmation, .reviews-listing, .how-it-works, .subscription, .events-list, .organize-event, .callout, .testimonials {
    padding: 28px 8px;
    border-radius: 14px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding: 0px 0 24px 0;
  }
  .mobile-nav {
    margin-top: 32px;
  }
}
@media (max-width: 500px) {
  header .container { padding: 0 4px; }
  .container { padding: 0 5px; }
}
/* FORM ELEMENTS */
input[type="search"], select {
  padding: 8px 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #ECE7DC;
  border-radius: 9px;
  background: #F1F2EE;
  color: #23395B;
  margin-right: 10px;
  outline: none;
  margin-bottom: 8px;
  transition: box-shadow 0.17s, border 0.18s;
}
input[type="search"]:focus, select:focus {
  border: 1.5px solid #B08150;
  box-shadow: 0 1px 6px 0 rgba(176,129,80,0.07);
}
::placeholder {
  color: #A6A5A1;
  opacity: 1;
}
::-webkit-input-placeholder { color: #A6A5A1; }
::-moz-placeholder { color: #A6A5A1; }
:-ms-input-placeholder { color: #A6A5A1; }
/* Animations and Micro-interactions */
.cta-btn, .service-card, .card, .review-card, .faq-item, .testimonial-card, .event-entry {
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:active {
  transform: scale(0.98);
}
/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1050;
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #F1F2EE;
  box-shadow: 0 -2px 24px 0 rgba(187,181,226,0.09);
  padding: 24px 28px;
  gap: 22px;
  font-size: 1.03rem;
  color: #23395B;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 20px 20px 0 0;
  opacity: 0.99;
  transition: transform 0.35s cubic-bezier(.69,.05,.45,.87), opacity 0.26s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  padding: 9px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 1.01rem;
  background: #fff;
  color: #B08150;
  font-weight: 600;
  font-family: 'Lora', serif;
  margin-right: 4px;
  transition: background 0.17s, color 0.17s, box-shadow 0.1s;
  box-shadow: 0 1px 6px 0 rgba(175,152,109,0.07);
}
.cookie-btn.accept {
  background: #B08150;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #cea360;
  color: #fff;
}
.cookie-btn.reject {
  background: #F1F2EE;
  color: #B08150;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e2d6c4;
}
.cookie-settings-btn {
  background: #EAE7E0;
  color: #23395B;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #dcd7cd;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 18px 6px 18px 12px;
    font-size: 0.98rem;
    border-radius: 12px 12px 0 0;
  }
}
/* COOKIE CONSENT MODAL */
.cookie-consent-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60,58,100,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-consent-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 rgba(176,129,80,0.13);
  padding: 32px 26px 26px 26px;
  width: 92vw;
  max-width: 410px;
  color: #23395B;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fadeInModal 0.33s cubic-bezier(.54,1.54,.3,.95);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B08150;
  font-size: 1.9rem;
  cursor: pointer;
  position: absolute;
  top: 10px; right: 18px;
  line-height: 1;
  border-radius: 99px;
  opacity: 0.88;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4F1ED;
}
.cookie-categories {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #ECECEC;
  border-radius: 12px;
  position: relative;
  outline: none;
  border: none;
  margin-right: 3px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #B08150;
}
.cookie-toggle:disabled {
  background: #DBDBDB;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 5px 0 rgba(180,176,169,0.11);
}
.cookie-toggle:checked::before {
  left: 17px;
}
/* MISC PATCHES */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
  background: #eceaea;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e3dcc9;
}
/* OVERRIDES FOR .hero .cta, .cta SECTIONS */
.cta {
  background: #FFF6F1;
  border-radius: 20px;
  box-shadow: 0 3px 28px 0 rgba(255,231,178,0.10);
  margin-bottom: 48px;
  text-align: center;
  padding-top: 38px;
  padding-bottom: 38px;
}
.cta .cta-btn {
  margin-top: 10px;
}
.cta h2 {
  color: #B08150;
}
@media (max-width: 590px) {
  .cta {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
/**** DREAMY PASTEL EFFECTS ***/
body {
  background:
    linear-gradient(140deg,#f6f7fb 86%, #f8e1f6 100%),
    linear-gradient(110deg, #f1f2ee 70%, #e5eaff 100%);
  background-blend-mode: lighten, normal;
}
/* SOFT PASTEL CARD SHADOWS + BORDER-RADIUS */
.card,
.review-card,
.service-card,
.team-member,
.faq-item,
.testimonial-card,
.event-entry {
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(196,194,233,0.07);
}
/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid #B08150;
  outline-offset: 1px;
}
/***** SOFT, FRIENDLY FONT FOR DISPLAY HEADINGS *****/
@import url('https://fonts.googleapis.com/css?family=Lora:700,400,600|Open+Sans:400,600,700,800&display=swap');
/* No clamp() was used anywhere; only rem and px + media-queries for font scaling. No grid or columns. Only flex for all layout containers. */
