/* Buttons - square corners, 48px tap target */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--t-hover) var(--ease), color var(--t-hover) var(--ease), border-color var(--t-hover) var(--ease);
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-hover) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--deju-forest);
  color: var(--bone-cream);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--deju-forest-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--deju-forest);
  border-color: var(--deju-forest);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--deju-forest);
  color: var(--bone-cream);
}

.surface-forest .btn-secondary {
  color: var(--bone-cream);
  border-color: var(--bone-cream);
}
.surface-forest .btn-secondary:hover {
  background: var(--bone-cream);
  color: var(--deju-forest);
}

.btn-ghost {
  background: transparent;
  color: var(--deju-forest);
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  text-decoration-color: var(--deju-forest);
}

/* Site header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 235, 221, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--whisper);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}
.site-header__logo img {
  height: clamp(72px, 8vw, 96px);
  width: auto;
  transform: scale(2.5);
  transform-origin: left center;
}
.site-nav ul {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rich-onyx);
  position: relative;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--deju-forest);
}
.site-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--deju-forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--rich-onyx);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--rich-onyx);
  transition: transform var(--t-hover) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  /* backdrop-filter on the header makes it a containing block for fixed
     descendants, which traps the mobile menu inside the header's box -
     the bg only paints within that small box and the menu overlays the
     logo. Disable it on mobile so .site-nav fixes to the viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bone-cream);
  }
  /* Logo on mobile: scale 2x via transform so the layout box (and
     therefore the header height + menu top offset) stays unchanged. */
  .site-header__logo img {
    transform: scale(2);
    transform-origin: left center;
  }
  .site-nav {
    position: fixed;
    top: 96px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--pure-bone);
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 400ms var(--ease);
    visibility: hidden;
  }
  .site-nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
  }
  .site-nav ul {
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-7) var(--gutter);
    align-items: flex-start;
  }
  .site-nav a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--brass);
  }
}

/* Footer */
.site-footer {
  background: var(--rich-onyx);
  color: var(--bone-cream);
  padding-block: var(--space-9) var(--space-6);
}
.site-footer h2, .site-footer h3, .site-footer h4 { color: var(--bone-cream); }
.site-footer__logo img {
  height: clamp(80px, 12vw, 140px);
  width: auto;
  margin-bottom: var(--space-7);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: var(--space-8);
}
.site-footer .eyebrow { color: var(--brass-soft); margin-bottom: var(--space-3); }
.site-footer a:hover { color: var(--brass-soft); }
.site-footer__rule {
  border: 0;
  border-top: 1px solid var(--brass-soft);
  opacity: 0.5;
  margin-block: var(--space-5);
}
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 13px;
  color: var(--brass-soft);
}

/* Service card */
.service-card {
  background: var(--pure-bone);
  padding: var(--space-7);
  border: 1px solid var(--whisper);
  transition: transform var(--t-hover) var(--ease), box-shadow var(--t-hover) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -20px rgba(20, 59, 28, 0.25);
}
.service-card__title { font-size: clamp(24px, 2.4vw, 32px); }
.service-card__rule { border: 0; border-top: 1px solid var(--brass); margin-top: auto; }
.service-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deju-forest);
  font-weight: 500;
}

/* Service grid */
.service-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 880px);
  display: grid;
  align-items: end;
  padding-block: var(--space-9);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.0) 30%, rgba(26, 26, 26, 0.55) 100%);
}
.hero__content {
  color: var(--bone-cream);
  max-width: 720px;
}
.hero__content h1 { color: var(--bone-cream); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.hero__content .btn-secondary {
  color: var(--bone-cream);
  border-color: var(--bone-cream);
}
.hero__content .btn-secondary:hover {
  background: var(--bone-cream);
  color: var(--deju-forest);
}

/* Pillars */
.pillars {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pillar h4 { color: var(--deju-forest); margin-bottom: var(--space-3); }

/* Gallery base class - retained so js/gallery.js continues to find items via .gallery-item.
   Layout/visual is owned by .gallery-scatter / .gallery-scatter__item further down. */

.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 10;
  background: rgba(242, 235, 221, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--whisper);
  padding-block: var(--space-4);
  margin-bottom: var(--space-7);
}
.filter-bar ul {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.filter-bar button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--whisper);
  background: transparent;
  color: var(--rich-onyx);
  transition: all var(--t-hover) var(--ease);
  text-transform: uppercase;
}
.filter-bar button:hover, .filter-bar button[aria-pressed="true"] {
  background: var(--deju-forest);
  color: var(--bone-cream);
  border-color: var(--deju-forest);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 59, 28, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-5);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: var(--bone-cream);
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bone-cream);
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav--prev { left: var(--space-5); }
.lightbox__nav--next { right: var(--space-5); }

/* Service menu (Services page) */
.menu-section h3 { margin-bottom: var(--space-6); }
.menu-list { display: flex; flex-direction: column; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4) var(--space-5);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--brass);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--deju-forest);
}
.menu-item__desc {
  font-size: 16px;
  color: var(--rich-onyx);
  grid-column: 1 / 2;
  margin-top: var(--space-2);
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--deju-forest);
  white-space: nowrap;
  text-align: right;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.menu-item__book {
  grid-column: 1 / -1;
  margin-top: var(--space-3);
  align-self: start;
  justify-self: start;
}

/* Compact menu - two-column editorial layout used on the single-page index */
.menu-list--compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-8);
  row-gap: 0;
}
.menu-list--compact .menu-item {
  padding-block: var(--space-4);
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-4);
  border-bottom: 1px solid var(--whisper);
  align-items: baseline;
}
.menu-list--compact .menu-item__name {
  font-size: 20px;
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.menu-list--compact .menu-item__name::after {
  content: '';
  flex: 1;
  border-bottom: 1px dotted var(--brass);
  transform: translateY(-4px);
  opacity: 0.6;
}
.menu-list--compact .menu-item__price {
  font-size: 18px;
}
.menu-list--compact .menu-item__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--rich-onyx);
  opacity: 0.75;
  margin-top: 0;
}
.menu-section__cta {
  margin-top: var(--space-6);
  display: inline-flex;
}
@media (max-width: 700px) {
  .menu-list--compact { grid-template-columns: 1fr; column-gap: 0; }
}

/* Services carousel - one slide per category, swipe-snap */
.services-carousel {
  position: relative;
  margin-top: var(--space-7);
}
.services-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-2) var(--space-6);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.services-carousel__track::-webkit-scrollbar { display: none; }
.services-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--bone-cream);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--whisper);
  display: flex;
  flex-direction: column;
}
.services-slide > h3 { margin: var(--space-2) 0 var(--space-6); }
.services-slide .menu-section__cta { margin-top: auto; padding-top: var(--space-6); }
.services-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bone-cream);
  border: 1px solid var(--brass);
  color: var(--deju-forest);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.services-carousel__nav:hover {
  background: var(--deju-forest);
  color: var(--bone-cream);
}
.services-carousel__nav[disabled] { opacity: 0.35; cursor: default; }
.services-carousel__nav--prev { left: -8px; }
.services-carousel__nav--next { right: -8px; }
.services-carousel__dots {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
}
.services-carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 200ms var(--ease);
}
.services-carousel__dots button[aria-current="true"] { background: var(--deju-forest); border-color: var(--deju-forest); }
@media (max-width: 768px) {
  .services-carousel__nav { display: none; }
  .services-carousel__track { padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); }
}

/* Map embed */
.map-embed {
  border: 1px solid var(--whisper);
  background: var(--pure-bone);
  width: 100%;
  aspect-ratio: 16 / 10;
}
.map-embed iframe { border: 0; width: 100%; height: 100%; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Gallery scatter - uniform square tiles arranged with subtle stagger + rotation */
.gallery-scatter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding-block: var(--space-4);
}
.gallery-scatter__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pure-bone);
  box-shadow: 0 18px 36px rgba(20, 30, 25, 0.32);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  will-change: transform;
}
.gallery-scatter__item:hover {
  box-shadow: 0 28px 56px rgba(20, 30, 25, 0.40);
}
.gallery-scatter__item picture,
.gallery-scatter__item img {
  width: 100%;
  height: 100%;
}
.gallery-scatter__item picture { display: block; border-radius: inherit; }
.gallery-scatter__item img {
  object-fit: cover;
  transition: transform 600ms var(--ease);
  border-radius: inherit;
}

/* Per-tile organic blob shapes - each unique, none identical to #about or #artist */
.gallery-scatter > a.gallery-scatter__item:nth-of-type(1)  { border-radius: 38% 62% 55% 45% / 50% 45% 55% 50%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(2)  { border-radius: 60% 40% 45% 55% / 52% 58% 42% 48%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(3)  { border-radius: 45% 55% 60% 40% / 60% 45% 55% 40%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(4)  { border-radius: 55% 45% 35% 65% / 45% 55% 50% 50%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(5)  { border-radius: 42% 58% 52% 48% / 58% 42% 60% 40%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(6)  { border-radius: 62% 38% 40% 60% / 40% 60% 50% 50%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(7)  { border-radius: 50% 50% 60% 40% / 55% 40% 60% 45%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(8)  { border-radius: 48% 52% 45% 55% / 50% 55% 45% 50%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(9)  { border-radius: 58% 42% 48% 52% / 42% 58% 52% 48%; }
.gallery-scatter > a.gallery-scatter__item:nth-of-type(10) { border-radius: 40% 60% 55% 45% / 55% 50% 45% 50%; }
.gallery-scatter__item:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  z-index: 2;
}
.gallery-scatter__item:hover img { transform: scale(1.04); }

/* Subtle scatter: per-tile translate + rotation. Desktop only.
   :nth-of-type(a) counts only anchor children, so the CTA div doesn't shift the indexing. */
@media (min-width: 701px) {
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(1)  { transform: translateY(0)     rotate(-1.5deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(2)  { transform: translateY(24px)  rotate(1deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(3)  { transform: translateY(-12px) rotate(-0.5deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(4)  { transform: translateY(36px)  rotate(2deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(5)  { transform: translateY(12px)  rotate(-2deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(6)  { transform: translateY(28px)  rotate(-1deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(7)  { transform: translateY(8px)   rotate(2deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(8)  { transform: translateY(-16px) rotate(-1.5deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(9)  { transform: translateY(-20px) rotate(1.5deg); }
  .gallery-scatter > a.gallery-scatter__item:nth-of-type(10) { transform: translateY(20px)  rotate(1deg); }
}

/* CTA tile - spans 2 columns in the centre, holds the WhatsApp button */
.gallery-scatter__cta {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
}
/* Enlarged button size, scoped to the gallery CTA only (~1.5x default) */
.gallery-scatter__cta .btn-primary {
  min-height: 72px;
  padding: var(--space-4) var(--space-6);
  font-size: 22px;
  gap: var(--space-3);
  letter-spacing: 0.015em;
}
@media (max-width: 700px) {
  .gallery-scatter__cta {
    grid-column: span 2;
    aspect-ratio: auto;
    padding-block: var(--space-5);
  }
  /* On mobile, ease back so the button doesn't overflow the column */
  .gallery-scatter__cta .btn-primary {
    min-height: 56px;
    padding: var(--space-3) var(--space-5);
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .gallery-scatter { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
@media (max-width: 700px) {
  .gallery-scatter { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); padding-block: 0; }
  /* Drop the rotation/translate on mobile - chaotic at small sizes */
  .gallery-scatter__item { transform: none !important; }
}

/* Review cards */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--pure-bone);
  border: 1px solid var(--whisper);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
}
.review-card__stars {
  color: var(--brass);
  font-size: 18px;
  letter-spacing: 0.1em;
}
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--rich-onyx);
  flex: 1;
}
.review-card blockquote p { font-size: inherit; line-height: inherit; }
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--whisper);
  padding-top: var(--space-4);
}
.review-card__name {
  font-weight: 600;
  color: var(--deju-forest);
}
.review-card__source {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Specialisations numbered list */
.specialisations-list {
  font-size: 18px;
  line-height: 1.45;
  padding-left: 1.5em;
  margin: 0;
  list-style: decimal-leading-zero;
}
.specialisations-list li {
  padding-left: var(--space-2);
  margin-block: var(--space-2);
}
.specialisations-list li::marker {
  color: var(--brass);
  font-family: var(--font-display);
  font-weight: 500;
}

/* FAQ accordion */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--whisper);
}
.faq-item:first-child {
  border-top: 1px solid var(--whisper);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--deju-forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: color 0.2s ease;
}
.faq-item > summary:hover {
  color: var(--rich-onyx);
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item > summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] > summary::after {
  transform: rotate(45deg);
}
.faq-item > summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}
.faq-item__body {
  padding: 0 0 var(--space-5) 0;
  max-width: 640px;
}
.faq-item__body p {
  margin: 0;
  color: var(--rich-onyx);
  font-size: 16px;
  line-height: 1.65;
}

/* Artist (about the founder) section */
.artist__body .eyebrow {
  margin-bottom: var(--space-3);
}
.artist__body h2 {
  margin: 0 0 var(--space-5);
}
.artist__body p {
  margin: 0 0 var(--space-4);
  font-size: 17px;
  line-height: 1.7;
  color: var(--rich-onyx);
}
.artist__body p:last-child {
  margin-bottom: 0;
}
.artist__body strong {
  font-weight: 600;
  color: var(--deju-forest);
}
.artist__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-7) auto 0;
  padding: var(--space-5) 0 0;
  list-style: none;
  border-top: 1px solid var(--whisper);
  max-width: 720px;
}
.artist__credentials li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.artist__credentials strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--deju-forest);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.1;
}
.artist__credentials span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: center;
}
@media (max-width: 600px) {
  .artist__credentials {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    text-align: center;
  }
}
