/* =========================
   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;
}
html{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
img{max-width:100%;height:auto;display:block;border:none;}
a{text-decoration:none;color:inherit;}

/* ================
   CSS VARIABLES
   ================ */
:root {
  --brand-primary: #2B2E4A;    /* deep blue-black */
  --brand-secondary: #E84545;  /* warm red */
  --brand-accent: #F7F7F7;     /* soft light gray */
  --brand-yellow: #FFDBA5;     /* warm pastel yellow */
  --brand-coral: #FA8578;      /* soft coral accent */
  --brand-sand: #FFF5EA;       /* warm sand background */

  --text-default: #2B2E4A;
  --text-secondary: #412752;
  --shadow-card: 0 6px 24px rgba(232,69,69,0.08), 0 1.5px 7px rgba(43,46,74,0.08);
  --shadow-hover: 0 12px 32px rgba(232,69,69,0.13), 0 4px 10px rgba(43,46,74,0.13);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
}

@media (max-width: 768px) {
  :root {
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
  }
}

/* ===================
   BASE LAYOUT
   =================== */
body {
  background: var(--brand-sand);
  color: var(--text-default);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1 0 auto;
}
.container {
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* ================
   TYPOGRAPHY
   ================ */
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4,h5,h6 {
  font-size: 1.1rem;
}
p,ul,ol {
  margin-bottom: 16px;
}
strong, b {font-weight: 700; color: var(--brand-secondary);}

blockquote {
  font-family: var(--font-display);
  background: var(--brand-yellow);
  color: var(--brand-primary);
  border-left: 6px solid var(--brand-secondary);
  padding: 18px 28px;
  margin-bottom: 24px;
  font-size: 1.1em;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(232,69,69,0.08);
  font-style: italic;
}

/* ===================
   BUTTONS & CTAs
   =================== */
.cta-button, .cta-primary, .btn, .cookie-btn {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: background 0.16s, transform 0.18s, box-shadow 0.16s;
  outline: none;
  letter-spacing: 0.01em;
  margin-right: 12px;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.cta-button:hover, .cta-primary:hover, .btn:hover, .cookie-btn:hover,
.cta-button:focus, .cta-primary:focus, .btn:focus, .cookie-btn:focus {
  background: #b11b1e;
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}
.cta-primary {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius-lg);
  min-width: 210px;
  text-align: center;
}

/* Link styling */
a { color: var(--brand-secondary); transition: color 0.20s; }
a:hover, a:focus { color: var(--brand-coral); }
.content-wrapper a:not(.cta-button):not(.cta-primary) {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* =========================
   HEADER AND NAVIGATION
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(232,69,69,0.05);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  position: relative;
  z-index: 10;
  padding-top: 8px;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 10px 20px;
  gap: 16px;
}
header img {
  height: 46px;
  border-radius: var(--radius-sm);
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--brand-yellow);
  color: var(--brand-secondary);
}
.cta-button {
  margin-left: auto;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(232,69,69,0.08);
}

/* ====================
   HERO SECTION
   ==================== */
.hero {
  background: var(--brand-accent);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  box-shadow: 0 10px 36px rgba(232,69,69,0.06);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 44px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 530px;
  margin-bottom: 24px;
}
.hero .cta-primary {
  margin-top: 18px;
  font-size: 1.05rem;
}

/* =====================
   SECTIONS & SPACING
   ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius-lg);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =====================
   FEATURES & ICON TILES
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  gap: 15px;
  padding: 28px 28px 22px 28px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 0 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.22s;
  position: relative;
}
.feature-icon img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.feature-icon:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon h3 {
  color: var(--brand-secondary);
  font-size: 1.1rem;
}

/* -----------------------------
   CARDS, CARD CONTAINERS, ETC.
   ----------------------------- */
.card-container, .project-list, .events-list, .artist-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card, .project-highlight, .event-teaser, .artist-bio {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 0 260px;
  transition: box-shadow 0.26s, transform 0.15s;
  position: relative;
}
.project-highlight:hover, .event-teaser:hover, .artist-bio:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.016);
}

/* For impact-stats, funding etc */
.impact-stats ul, .funding-options ul, .funding-options ol, .success-stories ul {
  padding-left: 0;
}

/* =====================
   TESTIMONIAL CARDS
   ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.68;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--brand-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =====================
   ABOUT & TEXT SECTIONS
   ===================== */
.text-section{
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 24px 24px 10px 24px;
  box-shadow: 0 3px 12px rgba(43,46,74,0.04);
  margin-bottom: 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.text-section blockquote {
  margin-top: 10px;
  margin-bottom: 12px;
}

/* =====================
   CTA BANNERS/SECTIONS
   ===================== */
.cta {
  background: var(--brand-yellow);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px 0 rgba(232,69,69,0.12);
  margin-bottom: 60px;
}
.cta h2 {
  color: var(--brand-primary);
}
.cta-primary {
  margin-top: 18px;
  margin-bottom: 6px;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius-md);
  min-width: 210px;
  box-shadow: var(--shadow-hover);
}
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 22px;
  font-size: 1.02rem;
  color: var(--brand-primary);
  font-family: var(--font-body);
}
.contact-snippet img {
  height: 22px;
  width: 22px;
  margin-right: 4px;
  vertical-align: middle;
}

/* ==================
   FOOTER
   ================== */
footer {
  background: var(--brand-primary);
  color: #fff;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 20px 16px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-body);
  padding: 4px 0;
  opacity: 0.93;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-coral);
  color: var(--brand-primary);
  opacity: 1;
}
.footer-info {
  font-size: 0.98rem;
  opacity: .75;
}

/* ================================
   RESPONSIVENESS – MOBILE FIRST
   ================================ */
@media (max-width: 1080px) {
  .container {
    max-width: 900px;
  }
  .feature-grid, .card-container, .project-list, .events-list, .artist-profiles {
    gap: 20px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 99vw;
  }
  .feature-grid, .card-container, .project-list, .events-list, .artist-profiles {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .feature-grid, .card-container, .project-list, .events-list, .artist-profiles {
    flex-direction: column;
    gap: 18px;
  }
  .feature-icon, .card, .project-highlight, .event-teaser, .artist-bio {
    min-width: 0;
    width: 100%;
    max-width: 600px;
  }
  .contact-snippet {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-info {
    text-align:center;
    width:100%;
    order:2;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.12rem; }
  .hero {
    padding: 30px 0 38px 0;
  }
  .cta {
    padding: 24px 7px;
  }
  .feature-icon {
    padding: 18px 12px 12px 12px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  section {
    padding: 18px 3px;
  }
}

/* =============================
   FLEXBOX SPACING PATTERNS MANDATORY
   ============================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
  }
}
/* =======================================
   MOBILE NAVIGATION (BURGER MENU)
   ======================================= */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: var(--radius-lg);
  padding: 7px 18px;
  margin-left: 6px;
  cursor: pointer;
  z-index: 112;
  box-shadow: 0 2px 10px rgba(232,69,69,0.16);
  transition: background 0.15s, color 0.2s, transform 0.1s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover{
  background: #b11b1e;
  color: #fff;
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 111;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.7, 0.13, 0.23, 1);
  box-shadow: 0 4px 32px rgba(232,69,69,0.14);
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--brand-secondary);
  border: none;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 18px 0 0 16px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 120;
  transition: color 0.16s, transform 0.09s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #b11b1e;
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 18px 0 30px;
  gap: 18px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 14px 8px;
  border-radius: var(--radius-md);
  font-weight: 600;
  width: 100%;
  transition: background 0.17s, color 0.2s;
  margin-bottom: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-yellow);
  color: var(--brand-secondary);
}
@media (max-width: 900px) {
  nav.main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* When mobile menu is open, body overflow hidden */
body.mobile-open {
  overflow: hidden;
}

/* ==============================
    COOKIE CONSENT BANNER & MODAL
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffdfa;
  border-top: 3px solid var(--brand-secondary);
  box-shadow: 0 -6px 24px rgba(232,69,69,0.11);
  padding: 25px 9vw 21px 9vw;
  z-index: 9999;
  opacity: 0.98;
  font-family: var(--font-body);
  font-size: 1.05rem;
  animation: cookieSlideIn 0.38s ease;
  transition: bottom 0.2s, background 0.23s;
  gap: 14px;
}
@keyframes cookieSlideIn {
  from {transform: translateY(100px); opacity: 0;}
  to {transform: translateY(0); opacity: 0.98;}
}
.cookie-banner p {
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 1rem;
  padding: 8px 18px;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 6px rgba(232,69,69,0.09);
}
.cookie-btn.primary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.cookie-btn.reject {
  background: #fffdfa;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 2px 14px rgba(232,69,69,0.16);
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(43,46,74,0.18);
  align-items:center;
  justify-content:center;
  animation: fadeIn 0.28s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from {opacity:0;} to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(232,69,69,0.18);
  padding: 30px 28px 24px 28px;
  max-width: 420px;
  width: 96vw;
  font-family: var(--font-body);
  animation: modalSlideUp 0.32s cubic-bezier(.32,1.4,.38,1);
  display:flex; flex-direction:column;
  gap: 14px;
}
@keyframes modalSlideUp {
  from {transform:translateY(120px); opacity:0;}
  to {transform:translateY(0); opacity:1;}
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-bottom: 9px;
  color: var(--brand-primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #eceaea;
  margin-right: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--brand-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(43,46,74,0.14);
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-toggle[disabled], .cookie-toggle:disabled {
  opacity: 0.7; 
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.8rem;
  position: absolute;
  top: 14px; right: 22px;
  cursor: pointer;
  z-index: 25;
}
.cookie-modal .close:focus, .cookie-modal .close:hover {
  color: var(--brand-secondary);
}

@media (max-width: 700px) {
  .cookie-banner {
    font-size: 1rem;
    padding: 13px 4vw 17px 4vw;
  }
  .cookie-modal {
    padding: 16px 6px 12px 10px;
    max-width: 97vw;
  }
}

/* ==================
   MISC UTILITIES
   ==================*/
ul, ol {
  margin: 0 0 18px 24px;
  padding: 0 0 0 20px;
}
li {
  padding: 0 0 4px 2px;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.6;
}
ul > li::marker, ol > li::marker {
  color: var(--brand-secondary);
  font-size: 1.1em;
}
/* Highlighted list items with icons */
.contact-info img {
  height: 22px; width: 22px; vertical-align: middle; margin-right: 7px;
}
.location-map img {
  max-width: 240px;
  border-radius: var(--radius-md);
  margin-top: 14px;
  box-shadow: 0 3px 10px 0 rgba(232,69,69,0.07);
}

/* ====================
   FORMS (Contact etc.)
   ==================== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  margin-bottom: 20px;
  transition: border 0.16s, box-shadow 0.12s;
  box-shadow: 0 2px 10px rgba(232,69,69,0.065);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 2px 16px rgba(232,69,69,0.17);
}
label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}
@media (max-width: 600px) {
  input, textarea, select {
    font-size: 0.98rem;
    padding: 8px 8px;
  }
}

/* ==========================
   ANIMATIONS/MICROINTERACTIONS
   ========================== */
.card, .project-highlight, .event-teaser, .feature-icon, .artist-bio, .testimonial-card {
  transition: box-shadow 0.21s cubic-bezier(.52,.15,.79,.65),
              transform 0.15s cubic-bezier(.52,.15,.65,1.15);
}
.card:hover, .project-highlight:hover, .event-teaser:hover, .feature-icon:hover, .artist-bio:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.025) translateY(-2px);
}
.cta-button:active, .cta-primary:active, .btn:active {
  transform: translateY(2px) scale(0.96);
}
@media (hover: none) {
  .card:hover, .feature-icon:hover, .cta-button:hover, .cta-primary:hover, .btn:hover {
    transform: none;
    box-shadow: var(--shadow-hover);
  }
}

/* ==========================
   HIGH CONTRAST TEXT CHECK
   ========================== */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: var(--brand-primary)!important;
  background: var(--brand-yellow);
}

/* ==========================
   ACCESSIBILITY
   ========================== */
:focus-visible {
  outline: 2.5px solid var(--brand-secondary);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8e8e94; opacity: 1; }
::-moz-placeholder { color: #8e8e94; opacity: 1; }
:-ms-input-placeholder { color: #8e8e94; opacity: 1; }
::placeholder { color: #8e8e94; opacity: 1; }

/* ========== END ========== */
