/* =====================================
   CSS Reset and 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Helvetica', Arial, sans-serif;
  background: #f8f5f2;
  color: #21243a;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  text-decoration: none;
  color: #b88229;
  transition: color 0.18s;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
strong, b {
  font-weight: bold;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* =====================================
   Brand Palette & Fonts
======================================== */
:root {
  --primary: #21243a;
  --secondary: #d8b970;
  --accent: #f4f5f7;
  --background: #f8f5f2;
  --card-bg: #fff8ee;
  --cta-bg: #e8a757;
  --cta-bg-hover: #d08c36;
  --highlight: #fffbe3;
  --border: #eddab3;
  --shadow: 0 2px 16px 0 rgba(221,185,112,0.14);
  --shadow-lg: 0 6px 32px 0 rgba(221,185,112,0.17);
  --text-main: #21243a;
  --text-muted: #585869;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Helvetica', Arial, sans-serif;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: all 0.2s cubic-bezier(.44,.13,.48,.87);
}

/* =====================================
   Layout Containers
======================================== */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Flex Patterns for Mandatory Classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.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: #fffdf8;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--text-main);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
  line-height: 1.13;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
  margin-top: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-top: 8px;
}
h4 {
  font-size: 1.1rem;
}
.subheadline, .tagline {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.015em;
  font-family: var(--font-display);
  margin-bottom: 12px;
}
p, ul, ol, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.55em;
}
blockquote {
  font-family: var(--font-display);
  background: var(--highlight);
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  padding: 16px 23px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1.18rem;
  margin-top: 15px;
  margin-bottom: 1.5em;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: var(--primary);
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.97rem;
  color: var(--secondary);
  font-weight: 600;
}

/* =====================================
   Header & Navigation
======================================== */
header {
  background: #fff8ee;
  box-shadow: 0 2px 12px 0 rgba(221,185,112,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 16px 20px 13px 20px;
  justify-content: space-between;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.02rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
header nav a:hover,
header nav a:focus {
  background: var(--highlight);
  color: var(--secondary);
}
header a.cta-btn {
  margin-left: 18px;
}
header img {
  height: 42px;
  border-radius: 0;
  margin-right: 16px;
}

/* ========== Mobile Burger Menu Styles ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border-radius: var(--radius-md);
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(221,185,112,0.13);
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 300;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--cta-bg-hover);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff8ee;
  box-shadow: 0 12px 44px rgba(221,185,112,0.17);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.62,.21,.29,.95);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  align-self: flex-end;
  margin: 22px 30px 16px 0;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px rgba(221,185,112,0.18);
  transition: background var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--cta-bg-hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 90%;
  margin: 25px 0 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.19rem;
  color: var(--primary);
  background: none;
  padding: 10px 5px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--highlight);
  color: var(--secondary);
}

/* Hide Desktop Nav, Show Burger On Mobile */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================================
   Buttons & Calls to Action
======================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta-bg);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: bold;
  letter-spacing: 0.022em;
  border-radius: var(--radius-lg);
  padding: 13px 32px;
  min-width: 180px;
  box-shadow: 0 3px 14px 0 rgba(221,185,112,0.13);
  margin: 8px 0;
  transition: background var(--transition), transform .20s;
  border: none;
)
  text-align: center;
  cursor: pointer;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--cta-bg-hover);
  color: #fffbe7;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px 0 rgba(221,185,112,0.18);
}
.cta-btn.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* =====================================
   Feature Grids, Lists, Project Cards
======================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 12px 0 0 0;
  padding: 0;
}
.feature-grid li {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 22px 28px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .16s, background .13s;
}
.feature-grid li:hover {
  background: var(--highlight);
  box-shadow: var(--shadow-lg);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
}
.project-list, .event-teasers-grid, .news-snippets-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 16px 0 0 0;
}
.project-list li, .event-teasers-grid li, .news-snippets-list li {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px 18px;
  transition: box-shadow .15s;
}
.project-list li:hover, .event-teasers-grid li:hover, .news-snippets-list li:hover {
  background: var(--highlight);
  box-shadow: var(--shadow-lg);
}
.artist-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 15px;
}
.artist-card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 21px 18px;
  flex: 1 1 230px;
  min-width: 180px;
}
.focus-areas-list, .core-values-list, .event-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 14px 0 0 0;
}
.focus-areas-list li, .core-values-list li, .event-types-list li {
  background: var(--highlight);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}

/* =====================================
   Footer
======================================== */
footer {
  background: #fff8ee;
  box-shadow: 0 -2px 12px 0 rgba(221,185,112,0.06);
  padding: 34px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--primary);
  font-size: 0.97rem;
  font-family: var(--font-display);
  transition: color .18s;
  border-radius: var(--radius-sm);
  padding: 3px 6px;
}
footer nav a:hover {
  color: var(--secondary);
  background: var(--highlight);
}
footer img {
  height: 38px;
  border-radius: 0;
  margin-bottom: 18px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--primary);
  font-size: 0.97rem;
}
.contact-info img {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  vertical-align: sub;
}

/* =====================================
   Cookie Consent Banner & Modal
======================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: #fff8ee;
  color: var(--primary);
  box-shadow: 0 -4px 18px -4px rgba(221,185,112,0.19);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 26px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: banner-in 0.46s cubic-bezier(.32,.94,.57,.69);
}
@keyframes banner-in {
  from { transform: translateY(160px); opacity: 0.25; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-md);
  min-width: 130px;
  padding: 10px 18px;
  font-weight: 600;
  color: var(--primary);
  background: var(--secondary);
  transition: background var(--transition), color var(--transition);
  border: none;
  box-shadow: 0 2px 9px rgba(221,185,112,0.08);
  cursor: pointer;
}
.cookie-banner .accept-all {
  background: var(--cta-bg);
  color: #fff;
}
.cookie-banner .accept-all:hover {
  background: var(--cta-bg-hover);
  color: #fffbe7;
}
.cookie-banner .reject-all {
  background: #f7e1c7;
  color: var(--primary);
}
.cookie-banner .reject-all:hover {
  background: #e3c387;
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--primary);
  color: var(--secondary);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;  left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,36,58,0.22);
  backdrop-filter: blur(2px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-in 0.28s cubic-bezier(.62, .21, .29, .95);
}
@keyframes overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdf8;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 46px 0 rgba(221,185,112,0.15);
  padding: 36px 30px 32px 30px;
  max-width: 480px;
  width: 92%;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.26s cubic-bezier(.62, .21, .29, .95);
}
@keyframes modal-in {
  from { transform: translateY(60px) scale(.94); opacity: 0.7; }
  to { transform: none; opacity: 1; }
}
.cookie-modal .modal-title {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--secondary);
  margin-right: 8px;
}
.cookie-modal .category-essential {
  opacity: 0.65;
  font-style: italic;
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
  align-items: center;
}
.cookie-modal button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  min-width: 120px;
  font-weight: 600;
  border: none;
  background: var(--cta-bg);
  color: #fff;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 9px rgba(221,185,112,0.08);
  cursor: pointer;
}
.cookie-modal button.save {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal button.save:hover {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal button.cancel {
  background: #f7e1c7;
  color: var(--primary);
}
.cookie-modal button.cancel:hover {
  background: var(--secondary);
  color: #fff;
}

/* =====================================
   Forms, Inputs (for contact/newsletter)
======================================== */
input, textarea, select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-family: var(--font-body);
  padding: 11px 14px;
  background: #fff;
  margin-bottom: 17px;
  outline: none;
  box-shadow: 0 1px 3px rgba(221,185,112,0.07);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--primary);
}

/* =====================================
   General Spacing & Flex Responsiveness
======================================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
main {
  min-height: 55vh;
}

/* ========== Responsive Designs ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 12px 6px 12px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 44px;
  }
  .content-grid, .artist-bios, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer nav, .footer .contact-info {
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .cta-btn { padding: 10px 12px; min-width: 105px; font-size: .99rem; }
  .feature-grid li, .project-list li, .testimonial-card { padding: 15px 8px; }
}

/* =====================================
   Micro-interactions & Transitions
======================================== */
a, button, .cta-btn, .card, .feature-grid li, .project-list li, .event-teasers-grid li, .news-snippets-list li, .testimonial-card {
  transition: var(--transition);
}
.cta-btn:active { transform: translateY(1px) scale(.98); }
.card:active, .feature-grid li:active, .project-list li:active {
  transform: scale(.98); box-shadow: 0 6px 22px 0 rgba(221,185,112,0.11);
}

/* ========== Remove Numbers from List ========== */
ul, ol { list-style: none; padding-left: 0; }

/* ========== Accessibility Utilities ========== */
:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* ========== Hide Cookie Modal By Default ========== */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}
.cookie-banner.show {
  display: flex;
}
.cookie-modal-overlay.open {
  display: flex;
}

/* ========== Utility for CTA Area ========== */
.cta-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ========== Misc ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #fff8ee;
}
::-webkit-scrollbar-thumb {
  background: #efd5ab;
  border-radius: 8px;
}

/* ========== Print Styles ========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section {
    background: none;
    box-shadow: none;
    padding: 0;
  }
}
