/* --- CSS RESET & BASE --- */
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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #1B2538;
  background: #FFF8F3;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #FF4D6D;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* --- BRAND FONTS and COLORS --- */
:root {
  --brand-primary: #1B2538;
  --brand-secondary: #F5A623;
  --brand-accent: #FFFFFF;
  --brand-accent2: #FF4D6D;
  --brand-accent3: #46C9AD;
  --bg-light: #FFF8F3;
  --bg-muted: #F5F5F8;
  --shadow-main: 0 6px 20px 0 rgba(27,37,56,0.06);
  --radius-main: 20px;
  --radius-small: 10px;
  --border-main: 2px solid #F5A623;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B2538;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1.07rem;
}

/* --- CONTAINER & SECTION LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  position: relative;
  overflow: visible;
}

/* --- HEADER/NAV --- */
header {
  background: var(--brand-primary);
  color: var(--brand-accent);
  width: 100%;
  min-height: 70px;
  box-shadow: 0 2px 16px 0 rgba(27,37,56,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 70px;
}
header img {
  height: 36px;
  padding-right: 16px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--brand-secondary);
  transition: width 0.18s;
  margin: 2px auto 0 auto;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
}
.main-nav a:hover::after {
  width: 70%;
}
.button-primary {
  background: linear-gradient(93deg, var(--brand-secondary) 80%, var(--brand-accent2) 100%);
  color: var(--brand-primary) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 999px;
  padding: 12px 33px;
  margin-left: 12px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(27,37,56,0.10);
  transition: background 0.22s, color 0.14s, transform .15s;
  text-shadow: 0 1px 2px #fff9, 0 2px 4px #f5a62322;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(93deg, var(--brand-accent2) 20%, var(--brand-secondary) 80%);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 16px 0 rgba(245,166,35,0.19);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  padding: 4px 16px;
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 1060;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent2)
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(125deg, #FFF8F3 60%, #FFE2CA 100%);
  box-shadow: 0 3px 30px 0 rgba(27,37,56,0.09);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.6,.15,.38,1.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-accent2);
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 22px 25px 2px 0;
  cursor: pointer;
  transition: color 0.18s, transform 0.15s;
  z-index: 1110;
}
.mobile-menu-close:hover {
  color: var(--brand-secondary);
  transform: rotate(7deg) scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--brand-primary);
  padding: 5px 0 7px 0;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.14s, color 0.18s, padding 0.19s;
  min-width: 44px;
  min-height: 44px;
  display: inline-block;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  color: var(--brand-accent2);
  background: #f5a62322;
  padding-left: 14px;
}

@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 950px) {
  header .container {
    justify-content: space-between;
    padding: 10px 18px;
  }
}
@media (max-width: 520px) {
  header img { height: 28px; }
  .mobile-nav a { font-size: 1.07rem; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #FFE1AB 50%, #F5A623 100%);
  min-height: 350px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 80px 60px;
  box-shadow: 0 18px 80px 0 #FFDA9822, 0 5px 22px 0 #fff8f399;
}
.hero .container {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 50px 16px 60px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 2px 16px 0 #f5a62333;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  text-shadow: 0 2px 4px #FFEED8, 0 1px 0px #fff9;
}
.hero .subheadline {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #632F1B;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 22px;
}

@media (max-width: 580px) {
  .hero .content-wrapper { padding: 26px 6px 34px 6px; }
  .hero h1 { font-size: 1.55rem; }
  .section { padding: 24px 6px; }
}

/* --- FEATURES GRID & CARDS --- */
.features {
  background: linear-gradient(103deg, #FDE6B1 66%, #FAF0DB 100%);
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 14px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius-main);
  padding: 30px 28px 28px 28px;
  min-width: 250px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow-main);
  border: 3px solid #FFF1CD;
  position: relative;
  transition: box-shadow 0.24s, transform 0.13s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px 0 #f5a6232c, var(--shadow-main);
  transform: translateY(-6px) scale(1.035);
  border-color: var(--brand-secondary);
}
.feature-grid img {
  width: 42px;
  height: 42px;
}
.feature-grid h3 {
  color: var(--brand-secondary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* --- ABOUT PREVIEW & TEAM --- */
.about-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.about-preview .text-section {
  flex: 1 1 320px;
  min-width: 240px;
  padding-right: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-preview {
  flex: 0 1 270px;
  min-width: 180px;
  background: #FFFAF3;
  border-radius: var(--radius-small);
  padding: 20px 20px 16px 20px;
  box-shadow: 0 2px 12px #ffda981a;
  border: 2px solid #FFE5B5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-preview h3 {
  color: var(--brand-accent2);
  font-weight: 700;
}
.team-preview ul {
  padding-left: 16px;
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: var(--brand-primary);
  font-size: 1.09rem;
  padding: 20px 26px 20px 32px;
  box-shadow: 0 2px 12px #1b25381f;
  border-left: 6px solid #FFC973;
  border-radius: var(--radius-main);
  min-width: 260px;
  max-width: 480px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.19s;
  z-index: 1;
}
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1.13rem;
  color: #212B43;
  line-height: 1.48;
  quotes: "\201C" "\201D";
}
.testimonial-card strong {
  color: var(--brand-secondary);
  font-weight: 800;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 #f5a62319, 0 4px 10px #FFD15E10;
  border-left-color: var(--brand-accent2);
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

/* --- CTA (Call To Action) --- */
.cta .content-wrapper {
  background: linear-gradient(96deg, #F5A623 60%, #FF4D6D 100%);
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 17px 0 #f5a6231e;
  padding: 38px 22px 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.cta h2 {
  color: #fff;
}
.cta a.button-primary {
  background: #fff;
  color: var(--brand-secondary) !important;
  margin-top: 16px;
  box-shadow: 0 2px 11px #fff3ab27, 0 1.5px 8px #fff9;
  transition: background .2s, color .19s, box-shadow .18s;
}
.cta a.button-primary:hover {
  background: var(--brand-accent2);
  color: #fff !important;
}

/* --- GENERAL FLEX UTILITY CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 24px 18px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- ABOUT, MEMBERSHIP, EVENT/WORKSHOP SPECIFICS --- */
.history-timeline {
  margin-bottom: 20px;
  padding-left: 10px;
}
.history-timeline ul {
  margin-left: 22px;
}
.values-list, .unique-points-grid {
  margin-bottom: 18px;
  margin-left: 8px;
}
.mission-statement, .leadership-bios, .community-highlights, .workshop-descriptions, .template-resources {
  background: #FFFAF3;
  border: 2px solid #FFE5B5;
  border-radius: var(--radius-small);
  padding: 18px 16px 14px 20px;
  box-shadow: 0 2px 10px #ffedc819;
  margin-bottom: 18px;
}
.team-member-profiles ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.team-member-profiles li {
  background: #fff;
  border-radius: var(--radius-small);
  padding: 20px 18px 14px 20px;
  min-width: 180px;
  box-shadow: 0 2px 8px #1b25381b;
  border-left: 5px solid #FF4D6D;
  transition: box-shadow 0.14s;
}
.team-member-profiles li:hover {
  box-shadow: 0 4px 18px #f5a62317;
}
.membership-tiers,
.benefits-list ul {
  margin-bottom: 18px;
  margin-left: 10px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px #FFEEDD33;
  border-radius: var(--radius-small);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 13px 16px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  background: #F5A623;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}
.pricing-table td {
  background: #fff;
  color: #1B2538;
  border-bottom: 1.5px solid #FFF8F3;
}
.pricing-table tr:last-child td {
  border: none;
}
.payment-methods {
  margin: 26px 0 10px 0;
  font-style: italic;
}

.events-calendar ul,
.upcoming-workshops-highlight ul,
.pdf-guide-links,
.book-recommendations ul,
.video-tutorials-list ul {
  margin-left: 18px;
  margin-bottom: 8px;
}
.featured-event-card {
  background: linear-gradient(99deg, #FFF4E3 70%, #FFDBB8 100%);
  border-left: 6px solid #F5A623;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 10px #f5a6231a;
  padding: 20px 16px 14px 24px;
  margin-top: 25px;
}

/* --- ARTICLES / RESOURCES --- */
.articles-list, .video-tutorials-list, .book-recommendations {
  margin-bottom: 24px;
}
.articles-list h2 { color: var(--brand-secondary); }
.pdf-guide-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* --- CONTACT SECTION --- */
.contact-details ul {
  margin-left: 5px;
  margin-bottom: 8px;
}
.contact-details li,
.map-location {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.07rem;
}
.contact-details img {
  width: 22px; height: 22px;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-top-left-radius: 28px;
  border-top-right-radius: 70px 45px;
  box-shadow: 0 -6px 44px 0 #1b253812;
  padding-top: 40px;
  margin-top: 50px;
  position: relative;
  overflow: visible;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff3;
  margin-bottom: 19px;
}
.footer-top img {
  height: 33px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: #FFFACF;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--brand-secondary);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 20px 0 4px 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fcfcfc14;
  transition: background 0.22s, transform 0.19s;
}
.footer-social a:hover {
  background: var(--brand-secondary);
  transform: scale(1.2) rotate(-7deg);
}
.footer-social img {
  width: 22px; height: 22px;
  filter: invert(1) drop-shadow(0 1px 3px #fff4);
}
.newsletter-signup {
  margin: 12px 0 22px 0;
}
.newsletter-signup h3 { font-size: 1.13rem; color: #fff9; }
.footer-bottom {
  text-align: right;
  font-size: 0.96rem;
  color: #FFD27C;
  margin-top: 8px;
  padding-bottom: 12px;
}
@media (max-width: 850px) {
  .footer-top,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-bottom {
    text-align: left;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -2px 22px 0 #1B253815;
  border-top: 3px solid #F5A623;
  padding: 24px 16px;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  transition: transform 0.34s cubic-bezier(.64,.02,.47,.87), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0; 
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-right: 16px;
  max-width: 420px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border: none;
  border-radius: 999px;
  padding: 9px 24px;
  cursor: pointer;
  margin: 0 3px;
  font-weight: 700;
  transition: background 0.17s, color 0.15s, transform .12s;
}
.cookie-banner .accept-btn {
  background: linear-gradient(93deg, var(--brand-secondary) 80%, var(--brand-accent2) 100%);
  color: var(--brand-primary);
}
.cookie-banner .accept-btn:hover {
  background: var(--brand-accent2);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .reject-btn {
  background: #E0E6F3;
  color: var(--brand-primary);
}
.cookie-banner .reject-btn:hover {
  background: #FFCAD2;
  color: var(--brand-accent2);
}
.cookie-banner .settings-btn {
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid #F5A623;
}
.cookie-banner .settings-btn:hover {
  background: #FFF8F3;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,37,56,0.34);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #24252A;
  border-radius: var(--radius-main);
  max-width: 400px;
  min-width: 250px;
  box-shadow: 0 8px 40px #1B253840;
  padding: 32px 22px 16px 22px;
  position: relative;
  border: 3px solid #FFE2CA;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modal-popin 0.27s cubic-bezier(.4,2.5,.57,1) 1;
}
@keyframes modal-popin {
  0% { transform: scale(.7) translateY(26px); opacity:0; }
  75% { transform: scale(1.06) translateY(-7px); }
  100% { transform: scale(1.00) translateY(0); opacity:1; }
}
.cookie-modal .modal-header {
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--brand-secondary);
  margin-bottom: 6px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.65rem;
  background: transparent;
  border: none;
  color: var(--brand-accent2);
  cursor: pointer;
  transition: color 0.15s, transform 0.12s;
}
.cookie-modal .close-modal:hover {
  color: var(--brand-secondary);
  transform: scale(1.12);
}
.cookie-modal .modal-group {
  margin-bottom: 9px;
}
.cookie-modal label {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.07rem;
  margin-left: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-secondary);
}
.cookie-modal .essential {
  color: #6E806C;
  font-size: .93rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* --- THANK YOU / POLICY / SIMPLE PAGES --- */
.thank-you-message,
.next-steps,
.policy-text,
.gdpr-policy-text,
.cookies-policy-text,
.terms-and-conditions-text {
  background: #fff;
  border: 2px solid #FFDBC2;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 8px #FFDAB7aa;
  padding: 22px 18px 15px 18px;
  margin-bottom: 18px;
}
.next-steps ul, .policy-text ul, .gdpr-policy-text ul, .terms-and-conditions-text ul {
  margin-left: 18px;
  margin-bottom: 8px;
}

@media (max-width: 620px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .hero .container { min-height: 220px; }
  .hero h1 { font-size: 1.16rem; }
  .features .content-wrapper, .about-preview .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .about-preview .team-preview {
    min-width: 80vw;
  }
  .footer-contact, .footer-top { flex-direction: column; gap: 8px;}
  .card-container, .content-grid, .team-member-profiles ul {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* --- FLEX DIRECTION AND RESPONSIVE ALIGNMENTS --- */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .about-preview .content-wrapper {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section > * {
    width: 100%;
  }
  .card-container, .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* --- MICRO-INTERACTIONS: BUTTONS, CARDS, LINKS --- */
.button-primary, .cookie-btn {
  transition: background 0.18s, color 0.14s, box-shadow 0.16s, transform 0.14s;
}
.card,
.team-member-profiles li,
.featured-event-card,
.feature-grid li,
.testimonial-card {
  transition: box-shadow 0.17s, border-color 0.16s, transform 0.12s;
}
.card:hover,
.team-member-profiles li:hover,
.feature-grid li:hover,
.featured-event-card:hover {
  box-shadow: 0 6px 28px #ffd47f16;
  transform: translateY(-4px) scale(1.03);
  border-color: var(--brand-secondary);
}
.main-nav a, .footer-nav a {
  position: relative;
  transition: color 0.18s;
}

/* --- SPACING ENFORCEMENT --- */
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  margin-bottom: 20px;
  gap: 20px;
}
.card-container, .content-grid, .feature-grid, .team-member-profiles ul {
  gap: 24px;
}

/* --- CUSTOM ARTISTIC FLAIR --- */
.section h2,
.section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #F5A623 70%, #FF4D6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
section::before {
  content: '';
  position: absolute;
  opacity: .045;
  pointer-events: none;
  left: 36px; top: -32px;
  width: 180px; height: 85px;
  background: url('../assets/brushstroke.svg') no-repeat center/contain;
  z-index: 0;
}
@media (max-width: 650px) {
  .section { margin-bottom: 36px; padding: 18px 5px; }
  section::before { display: none; }
}

/* --- SELECTION/HIGHLIGHT --- */
::selection {
  background: #F5A623;
  color: #fff;
}

/* --- SCROLLBAR (for brand personality!) --- */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #FFE7C3;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #FFF8F3;
}

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