/* ==================================================  */
/* CSS Reset and Normalize (Mobile-First)              */
/* ==================================================  */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block; }
body {
  line-height: 1.6;
  background: #FDFCF8;
  color: #234244;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* Font faces for Montserrat & Open Sans (Google Fonts CDN Fallbacks) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --color-primary: #16425B;
  --color-secondary: #87AEB2;
  --color-accent: #F7C873;
  --color-pastel-pink: #F6E9EC;
  --color-pastel-blue: #E2EBF9;
  --color-pastel-mint: #D5F2EA;
  --color-pastel-lavender: #F2EAFE;
  --color-white: #FFF;
  --color-grey: #F5F7FA;
  --color-dark: #234244;
  --color-error: #f26a7e;
  --shadow-card: 0 6px 24px rgba(44,61,115,0.08);
  --shadow-pop: 0 1.5px 12px rgba(44,61,115,0.10);
  --radius-s: 10px;
  --radius-m: 20px;
  --radius-xl: 40px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ================================================  */
/* Typography & Headings                            */
/* ================================================  */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  background: var(--color-grey);
  letter-spacing: 0.01em;
}
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.11;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 9px;
}
p, li, ul, ol, span, .text-section p {
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
  color: var(--color-primary);
}

/* Heading Underlines */
h2 {
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-s);
  margin: 12px 0 0 0;
  opacity: 0.4;
}

/* Links */
a {
  color: var(--color-primary);
}
a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ================================================  */
/* Layout Containers                                */
/* ================================================  */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  flex: 1;
}
main {
  padding-top: 20px;
  min-height: 60vh;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-m);
  background: var(--color-pastel-blue);
  box-shadow: var(--shadow-card);
}

/* Required flexbox containers and spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  background: var(--color-pastel-lavender);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  margin-right: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  padding: 24px;
}

/* Specific for .features sections */
.features .container>.content-wrapper > ul,
.features .container>.content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.features .container>.content-wrapper > ul > li, 
.features .container>.content-wrapper > ol > li {
  background: var(--color-pastel-mint);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 0;
}
/* For USP/shorter lists */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0 0 12px 0;
}

/* Cards and Artwork Features  */
.artwork-features li, 
.workshop-features li {
  background: var(--color-pastel-blue);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-pop);
  padding: 18px 16px;
  margin-bottom: 0;
  flex: 1 1 180px;
}
/* ================================================  */
/* Header + Navigation                              */
/* ================================================  */
header {
  background: linear-gradient(90deg, #F6E9EC 0, #D5F2EA 100%);
  padding: 0 0 0 0;
  box-shadow: 0 3px 20px rgba(44,61,115,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 0;
  gap: 22px;
  justify-content: space-between;
}
.logo-link img {
  height: 42px;
  width: auto;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-family: var(--font-display);
}
.main-menu li a {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 7px 12px;
  border-radius: var(--radius-s);
  transition: background 0.2s, color 0.2s;
}
.main-menu li a:hover,
.main-menu li a:focus {
  background: var(--color-pastel-lavender);
  color: var(--color-accent);
}
.cta.primary-btn {
  padding: 10px 28px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-s);
  box-shadow: 0 4px 18px rgba(247,200,115,0.13);
  transition: background 0.2s, color 0.2s, transform 0.12s;
  margin-left: 20px;
  border: 2px solid transparent;
  cursor: pointer;
}
.cta.primary-btn:hover,
.cta.primary-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  transform: translateY(-2px) scale(1.03);
}

/* Hide mobile nav toggles on desktop */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}
/* ================================================  */
/* Hero Section                                     */
/* ================================================  */
.hero {
  background: linear-gradient(120deg, #F6E9EC 60%, #F2EAFE 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 38px 0 48px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  text-align: left;
  gap: 14px;
}
.hero h1 {
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.18rem;
  color: #51627F;
  margin-bottom: 22px;
  font-weight: 500;
}
.hero .cta.primary-btn {
  font-size: 1.08rem;
}

/* ================================================  */
/* Features & Service Highlights                    */
/* ================================================  */
.features ul, .feature-grid, .service-highlights ul, .service-descriptions ul, .art-style-descriptions ul, .event-descriptions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.features ul li, .feature-grid li, .service-highlights ul li, 
.service-descriptions ul li, .art-style-descriptions ul li, .event-descriptions ul li {
  flex: 1 1 240px;
  background: var(--color-pastel-mint);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-pop);
  padding: 22px 16px;
  text-align: left;
  margin-bottom: 0;
  min-width: 190px;
}
.feature-grid li {
  background: var(--color-pastel-lavender);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  opacity: 0.88;
}
.service-highlights {
  padding-top: 22px;
}
.service-highlights ul li {
  background: var(--color-pastel-blue);
}
.service-descriptions ul li {
  background: var(--color-pastel-pink);
  font-size: 1rem;
}

/* About/About-story blocks */
.about, .about-story {
  background: var(--color-pastel-mint);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-story ul {
  gap: 12px;
}

/* Services sections */
.services {
  background: var(--color-pastel-pink);
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 15px;
}
.services ul li {
  background: var(--color-pastel-blue);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-pop);
  padding: 18px 16px;
  margin-bottom: 0;
}

/* Contact Sections & Short Contact CTA */
.contact-short, .contact {
  background: var(--color-pastel-lavender);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.contact-short .cta.primary-btn, .contact .cta.primary-btn {
  margin-top: 16px;
}

/* CTA Sections */
.cta-section {
  background: var(--color-pastel-pink);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  margin-bottom: 60px;
  padding: 32px 20px;
  text-align: center;
}
.cta-section .cta.primary-btn {
  font-size: 1.13rem;
}

/* Thank you / Confirmation sections */
.thank-you {
  background: var(--color-pastel-mint);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 48px 24px;
  text-align: center;
}
.thank-you h1 {
  margin-bottom: 14px;
}
.thank-you p {
  font-size: 1.1rem;
  margin-bottom: 13px;
}

/* ================================================  */
/* Testimonials                                     */
/* ================================================  */
.testimonials {
  background: var(--color-pastel-pink);
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
}

.testimonials h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-pop);
  border-radius: var(--radius-m);
  padding: 20px 28px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-body);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--color-dark);
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-secondary);
  font-weight: 600;
}
.testimonial-card .stars {
  font-size: 1.3em;
  color: #F7C873;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* ================================================  */
/* Legal, Cookie, Datenschutz, etc.                  */
/* ================================================  */
.legal {
  background: var(--color-pastel-lavender);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--color-primary);
}
.legal .text-section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.legal .text-section ul {
  padding-left: 18px;
  gap: 3px;
}

/* ================================================  */
/* Footer                                           */
/* ================================================  */
footer {
  background: linear-gradient(90deg, #F6E9EC 0, #D5F2EA 100%); 
  padding: 34px 0 14px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu a {
  font-size: 0.97rem;
  color: var(--color-primary);
  opacity: 0.82;
  transition: color 0.2s;
  padding: 3px 8px;
  border-radius: var(--radius-s);
}
.footer-menu a:hover {
  color: var(--color-accent);
  background: var(--color-pastel-mint);
  opacity: 1;
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-branding img {
  height: 32px;
  width: auto;
  margin-right: 2px;
}
.footer-branding span {
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-family: var(--font-display);
}

/* ================================================  */
/* Interactive Buttons/Inputs & Micro-interactions   */
/* ================================================  */
.primary-btn:active {
  transform: scale(0.985);
  background: #F6E9EC;
  color: var(--color-primary);
}

button, .primary-btn, .cta.primary-btn {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.11s, box-shadow 0.2s;
  outline: none;
}
button:focus, .primary-btn:focus {
  box-shadow: 0 0 0 2px var(--color-accent);
}

/* Cookie Banner Buttons */
.cookie-banner-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px rgba(247,200,115,.08);
  border: 2px solid transparent;
}
.cookie-banner-btn:active{
  background: var(--color-pastel-mint);
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus{
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cookie-settings-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
  border: 2px solid transparent;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
/* ================================================  */
/* Mobile Burger Menu & Off-Canvas Navigation        */
/* ================================================  */
.mobile-menu-toggle {
  display: block;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 44px;
  text-align: center;
  margin-left: auto;
  transition: background 0.2s, color 0.2s;
  margin-right: 5px;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-menu {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(249,248,245,0.98);
  backdrop-filter: blur(3px);
  z-index: 1100;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.39s cubic-bezier(.7,.3,.3,1), opacity 0.31s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  margin: 16px 16px 30px 0;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
}
.mobile-nav a {
  width: 90vw;
  max-width: 340px;
  font-size: 1.17rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  background: var(--color-pastel-lavender);
  border-radius: var(--radius-s);
  padding: 13px 0;
  text-align: center;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-pastel-mint);
  color: var(--color-secondary);
  transform: scale(1.03);
}
@media (max-width: 1070px) {
  .container {
    max-width: 96vw;
    padding: 0 5vw;
  }
}

@media (max-width: 900px) {
  .main-menu {
    gap: 13px;
  }
  nav .cta.primary-btn {
    padding: 10px 20px;
    margin-left: 8px;
    font-size: .97rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 820px) {
  .main-menu {
    font-size: 1rem;
    gap: 7px;
  }
  .cta.primary-btn {
    margin-left: 2px;
  }
}
@media (max-width: 1024px) {
  .features .container > .content-wrapper > ul,
  .features .container > .content-wrapper > ol {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }
  .main-menu, nav .cta.primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .about, .services, .section, .contact-short, .cta-section, .testimonials, .legal, .thank-you {
    padding: 25px 5vw;
    margin-bottom: 36px;
    border-radius: var(--radius-m);
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid,
  .features .container > .content-wrapper > ul,
  .features .container > .content-wrapper > ol,
  .workshop-features ul,
  .service-highlights ul,
  .service-descriptions ul,
  .art-style-descriptions ul,
  .event-descriptions ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .about, .about-story, .services, .features, .testimonials, .contact-short, .cta-section, .legal, .thank-you {
    border-radius: var(--radius-m);
  }
}

@media (max-width: 500px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .hero, .about, .services, .section, .contact-short, .cta-section, .testimonials, .legal, .thank-you {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-menu {
    gap: 7px;
  }
}

/* ================================================  */
/* Cookie Consent Banner & Modal                     */
/* ================================================  */
#cookie-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  background: #fff8f0;
  box-shadow: 0 -1px 30px rgba(44,61,115,0.13);
  padding: 28px 20px 18px 20px;
  justify-content: space-between;
  gap: 10px 26px;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  animation: cookieBannerUp 0.48s cubic-bezier(.36,.85,.45,1.1) 0s both;
}
@keyframes cookieBannerUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  font-size: 1rem;
  color: var(--color-dark);
  margin: 0 12px 0 0;
  flex: 1 1 230px;
}
#cookie-banner .cookie-banner-btn, #cookie-banner .cookie-settings-btn {
  margin-right: 12px;
  margin-bottom: 5px;
  min-width: 108px;
}
#cookie-banner .cookie-banner-btn:last-child, #cookie-banner .cookie-settings-btn:last-child {
  margin-right: 0;
}

#cookie-preferences-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,61,115,0.12);
  backdrop-filter: blur(3px);
  z-index: 2020;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.38s both;
}
#cookie-preferences-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-preferences-content {
  background: #fff;
  padding: 30px 22px 22px 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  min-width: 270px;
  max-width: 95vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-preferences-content h2 {
  font-size: 1.3rem;
  margin-bottom: 3px;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-pastel-mint);
  border-radius: var(--radius-s);
  padding: 10px 15px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-category label {
  font-weight: 600;
  font-family: var(--font-display);
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #ddd;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
.cookie-category .cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-category .cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: var(--color-white);
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-category .cookie-toggle:checked:before {
  left: 16px;
}
.cookie-category[aria-disabled='true'] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 14px;
  font-size: 1.2rem;
  background: transparent;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-error);
}

@media (max-width: 550px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 0px;
    padding: 18px 8px 14px 8px;
  }
  .cookie-preferences-content {
    min-width: 0;
    width: 97vw;
    padding: 18px 10px 12px 10px;
  }
}

/* ================================================  */
/* Miscellaneous                                    */
/* ================================================  */
::-webkit-scrollbar {
  width: 12px;
  background: #F2EAFE;
}
::-webkit-scrollbar-thumb {
  background: #e3dee9;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4cbe0;
}

/* Visually hidden, for accessibility toggles etc. */
.visually-hidden {
  position: absolute !important;
  width:1px; height:1px;
  margin:-1px; padding:0;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Error + Alert styles */
.alert {
  background: #fee7ef;
  color: #c23846;
  border-radius: var(--radius-s);
  padding: 12px 16px;
  margin: 12px 0 12px 0;
}

/* ================================================  */
/* Animate sections                                 */
/* ================================================  */
.section,.hero,.about,.testimonials,.features,.services,.contact-short,.about-story,.cta-section,.thank-you,.legal{
  opacity: 0;
  transform: translateY(35px) scale(.98);
  animation: fadeUpSection .88s cubic-bezier(.35,.77,.45,1.13) .09s both;
}
@keyframes fadeUpSection {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ================================================  */
/* Dreamy Pastel Styles                             */
/* ================================================  */
.hero, .section, .about, .about-story, .services, .contact-short, .cta-section, .thank-you, .legal, .testimonials {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  background: linear-gradient(109deg, #F6E9EC 60%, #E2EBF9 100%);
}

/* Subtle border for contrast in testimonials when on lighter bgs */
.testimonial-card {
  border: 1.5px solid #ebeaf6;
  background: var(--color-white);
  color: var(--color-dark);
}

/* Accent headings */
h1, h2, h3 {
  background: none;
  text-shadow: 0px 3px 18px #f7c87330, 0 1px 0 #fff0;
}

/* Light shadow hover for cards */
.card, .features ul li, .feature-grid li, .services ul li, .artwork-features li, .workshop-features li {
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover,
.features ul li:hover,
.feature-grid li:hover,
.services ul li:hover,
.artwork-features li:hover,
.workshop-features li:hover {
  box-shadow: 0 8px 36px 0 rgba(149,174,190,.10), var(--shadow-pop);
  transform: scale(1.021);
  z-index: 2;
}

/* Hide visually for aria where needed */
[aria-hidden='true'] { display: none; }

/* No grid or columns anywhere (required by brief)! */
/* Flexbox only for layouts */
