/* =========================================================
   Muziektherapie Mai van der Beele — design system
   Calm, organic, warm. Sage greens, cream, terracotta accent.
   Fraunces (display serif) + Work Sans (body sans).
   ========================================================= */

:root {
  /* Colour palette */
  --color-bg: #fbf7ee;
  --color-bg-alt: #f1ead8;
  --color-surface: #ffffff;
  --color-ink: #2c3526;
  --color-ink-soft: #4d5a44;
  --color-muted: #5e6a55;
  --color-sage: #6f8a64;
  --color-sage-dark: #4d6447;
  --color-sage-deep: #38422f;
  --color-sage-tint: #e3ead9;
  --color-terracotta: #cc7a4d;
  --color-terracotta-dark: #ad5f37;
  --color-terracotta-tint: #f7e3d4;
  --color-border: #e6dcc8;

  /* Typography */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container-w: 73rem;
  --space-section: clamp(4rem, 9vw, 7.5rem);
  --space-section-sm: clamp(2.5rem, 5vw, 4.5rem);
  --radius-lg: 1.75rem;
  --radius-md: 1.125rem;
  --radius-sm: 0.625rem;
  --shadow-soft: 0 12px 40px -16px rgba(56, 66, 47, 0.28);
  --shadow-card: 0 8px 28px -14px rgba(56, 66, 47, 0.22);

  /* Motion */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-base: 0.6s;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.2em;
}

ul {
  margin: 0 0 1.2em;
  padding-left: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-sage-deep);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--space-section);
}

.section--sm {
  padding-block: var(--space-section-sm);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--deep {
  background: var(--color-sage-deep);
  color: #e7ecdf;
}

.section--deep h1,
.section--deep h2,
.section--deep h3,
.section--deep h4 {
  color: #fbf7ee;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 1px;
}

.section--deep .eyebrow {
  color: #e0a47e;
}

.section--deep .eyebrow::before {
  background: #e0a47e;
}

.lede {
  font-size: clamp(1.05rem, 1.2vw + 0.7rem, 1.25rem);
  color: var(--color-ink-soft);
  max-width: 46rem;
}

.section--deep .lede {
  color: #d6ddca;
}

.text-center {
  text-align: center;
}

.center-col {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 56rem) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-soft),
    box-shadow var(--dur-base) var(--ease-soft),
    background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-terracotta);
  color: #fffaf4;
  box-shadow: 0 10px 24px -10px rgba(204, 122, 77, 0.65);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  box-shadow: 0 14px 30px -10px rgba(173, 95, 55, 0.65);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-sage-deep);
}

.btn-outline:hover {
  background: var(--color-sage-deep);
  color: #fbf7ee;
}

.section--deep .btn-outline {
  color: #fbf7ee;
}

.section--deep .btn-outline:hover {
  background: #fbf7ee;
  color: var(--color-sage-deep);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.3s var(--ease-soft);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem clamp(0.75rem, 3vw, 1.75rem) 0;
}

.nav {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(251, 247, 238, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(230, 220, 200, 0.7);
  border-radius: 999px;
  padding: 0.6rem 0.6rem 0.6rem 1.35rem;
  box-shadow: 0 6px 24px -16px rgba(56, 66, 47, 0.25);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled .nav {
  background: rgba(251, 247, 238, 0.92);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex: none;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--color-sage);
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: #fbf7ee;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-ink-soft);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--color-sage-tint);
  color: var(--color-sage-deep);
}

.nav-links a[aria-current="page"] {
  background: var(--color-sage-deep);
  color: #fbf7ee;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  flex: none;
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--color-ink);
}

.nav-toggle .icon-close { display: none; }

.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  max-width: var(--container-w);
  margin: 0.6rem auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s var(--ease-soft), opacity 0.35s ease;
}

.mobile-menu.is-open {
  max-height: 32rem;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--color-sage-tint);
}

.mobile-menu a[aria-current="page"] {
  background: var(--color-sage-tint);
  color: var(--color-sage-deep);
  font-weight: 600;
}

.mobile-menu .mobile-cta {
  padding: 0.5rem 0.75rem 0.85rem;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 78rem) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 90rem) {
  .nav-cta {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero--reverse .container {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .hero--reverse .hero-media {
    order: 2;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.75rem);
  margin-bottom: 0.5rem;
}

.hero .lede {
  margin-top: 1rem;
}

.hero-media {
  position: relative;
}

.hero-blob {
  position: relative;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  animation: blob-morph 16s var(--ease-soft) infinite alternate;
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes blob-morph {
  0% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  50% { border-radius: 58% 42% 40% 60% / 45% 55% 45% 55%; }
  100% { border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%; }
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-deco span {
  position: absolute;
  border-radius: 50%;
  background: var(--color-sage-tint);
  filter: blur(2px);
  opacity: 0.7;
  animation: float-soft 9s ease-in-out infinite;
}

.hero-deco span:nth-child(1) {
  width: 8rem; height: 8rem; top: -2rem; right: 8%;
  background: var(--color-terracotta-tint);
  animation-delay: 0s;
}

.hero-deco span:nth-child(2) {
  width: 5rem; height: 5rem; bottom: 6%; left: 2%;
  animation-delay: 1.5s;
}

.hero-deco span:nth-child(3) {
  width: 3rem; height: 3rem; top: 38%; right: 0;
  background: var(--color-sage-tint);
  animation-delay: 3s;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-1.1rem) translateX(0.6rem); }
}

/* ---------- Wave divider ---------- */
.wave {
  display: block;
  width: 100%;
  height: clamp(2.5rem, 6vw, 5rem);
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 100%;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-soft);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.3rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--color-sage-tint);
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--color-sage-deep);
}

.card--accent .card-icon {
  background: var(--color-terracotta-tint);
}

.card--accent .card-icon svg {
  stroke: var(--color-terracotta-dark);
}

/* ---------- Lists ---------- */
.check-list,
.feature-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.2em;
  padding: 0;
}

.check-list li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
  min-width: 0;
}

.check-list svg,
.feature-list svg {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  stroke: var(--color-sage);
}

.feature-list svg {
  stroke: var(--color-terracotta);
}

@media (min-width: 40rem) {
  .check-list--cols,
  .feature-list--cols {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* ---------- Quote / case study ---------- */
.story {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-card);
  position: relative;
}

.story::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-sage-tint);
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  z-index: 0;
}

.story p {
  position: relative;
  z-index: 1;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-sage-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* ---------- Image with caption / frame ---------- */
.framed-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.framed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Video embed ---------- */
.video-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-sage-deep);
  color: #fbf7ee;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2,
.cta-banner h3 {
  color: #fbf7ee;
}

.cta-banner p {
  color: #d6ddca;
  max-width: 38rem;
  margin-inline: auto;
}

.cta-banner .cluster {
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-banner .btn-outline {
  color: #fbf7ee;
  border-color: rgba(251, 247, 238, 0.5);
}

.cta-banner .btn-outline:hover {
  background: #fbf7ee;
  color: var(--color-sage-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-sage-deep);
  color: #cfd9c2;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: #fbf7ee;
}

.site-footer a {
  color: #cfd9c2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fbf7ee;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 56rem) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a9bb98;
  margin-bottom: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fbf7ee;
  margin-bottom: 0.85rem;
}

.footer-brand .brand-mark {
  background: #fbf7ee;
}

.footer-brand .brand-mark svg {
  stroke: var(--color-sage-deep);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(207, 217, 194, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #a9bb98;
}

.social-row {
  display: flex;
  gap: 0.6rem;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(207, 217, 194, 0.3);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.social-row a:hover {
  background: rgba(251, 247, 238, 0.12);
  border-color: rgba(251, 247, 238, 0.4);
}

.social-row svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
}

.affiliate-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.affiliate-row img {
  height: 2.25rem;
  width: auto;
  border-radius: 0.4rem;
  background: #fbf7ee;
  padding: 0.25rem 0.4rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.5vw + 1rem, 3.25rem);
  max-width: 38rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-sage-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb svg {
  width: 0.85rem;
  height: 0.85rem;
  flex: none;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-sage-dark);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-blob,
  .hero-deco span,
  .btn,
  .card {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Misc ---------- */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-sage-tint);
  color: var(--color-sage-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.divider {
  height: 1px;
  background: var(--color-border);
  border: 0;
  margin: var(--space-section-sm) 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 56rem) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .two-col--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .two-col--reverse .two-col-media {
    order: 2;
  }
}

.bullet-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.bullet-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sage-dark);
  margin-bottom: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media (min-width: 56rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .card-icon {
  margin-bottom: 0;
}

.info-row dt {
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}

.info-row dd {
  margin: 0;
}

.info-row a {
  text-decoration: underline;
  text-decoration-color: var(--color-sage);
  text-underline-offset: 3px;
}

.workshop-themes {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 40rem) {
  .workshop-themes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .workshop-themes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.theme-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
}

.theme-chip svg {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--color-terracotta);
}

.notice {
  background: var(--color-terracotta-tint);
  border: 1px solid #ecc4a6;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.notice strong {
  color: var(--color-terracotta-dark);
}
