/* Artist portfolio — custom layer over Bootstrap */

:root {
  --ink: #1a1520;
  --ink-soft: #3d3648;
  --paper: #faf8f5;
  --paper-deep: #f0ebe3;
  --accent: #c45c3e;
  --accent-soft: #e8a090;
  --gold: #b8a369;
  --shadow: 0 20px 50px rgba(26, 21, 32, 0.12);
  --radius: 0.35rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html[lang="fr"] {
  quotes: « » " " ' ';
}

section[id],
header[id] {
  scroll-margin-top: 5.5rem;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background-color: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* Typography */
.font-display {
  font-family: var(--font-display);
}

.text-accent {
  color: var(--accent) !important;
}

.lead-tight {
  max-width: 32rem;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(250, 248, 245, 0.88) !important;
  border-bottom: 1px solid rgba(26, 21, 32, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(26, 21, 32, 0.08);
}

.navbar-brand {
  display: inline-flex;
  padding: 0;
  text-decoration: none;
  line-height: 1;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  text-decoration: none;
}

/* Marc Bertin — script logo (purple gradient + sticker outline) */
.brand-mark {
  --brand-font: "Pacifico", "Brush Script MT", cursive;
  --brand-gradient: linear-gradient(
    180deg,
    #5cbce2 0%,
    #8c86a8 38%,
    #9b5665 72%,
    #8f4f68 100%
  );
  --brand-stroke-inner: #dcd4ff;
  --brand-stroke-outer: #522a78;
  font-family: var(--brand-font);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
  user-select: none;
}

.brand-mark__line {
  display: block;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.045em var(--brand-stroke-inner);
  paint-order: stroke fill;
  filter:
    drop-shadow(0.02em 0 0 var(--brand-stroke-outer))
    drop-shadow(-0.02em 0 0 var(--brand-stroke-outer))
    drop-shadow(0 0.02em 0 var(--brand-stroke-outer))
    drop-shadow(0 -0.02em 0 var(--brand-stroke-outer));
}

.brand-mark--hero {
  text-align: left;
}

.brand-mark--hero .brand-mark__line--primary {
  font-size: clamp(2.65rem, 8.5vw, 4.75rem);
}

.brand-mark--hero .brand-mark__line--secondary {
  font-size: clamp(2.15rem, 7vw, 3.85rem);
  margin-top: 0.02em;
}

.brand-mark--nav {
  text-align: left;
}

.brand-mark--nav .brand-mark__line--primary {
  font-size: 1.05rem;
  -webkit-text-stroke: 0.05em var(--brand-stroke-inner);
}

.brand-mark--nav .brand-mark__line--secondary {
  font-size: 0.82rem;
  margin-top: 0.01em;
  -webkit-text-stroke: 0.052em var(--brand-stroke-inner);
}

.brand-mark--footer .brand-mark__line--primary {
  font-size: 1.55rem;
}

.brand-mark--footer .brand-mark__line--secondary {
  font-size: 1.22rem;
  margin-top: 0.02em;
}

.brand-mark--about {
  text-align: left;
}

.brand-mark--about .brand-mark__line--primary {
  font-size: clamp(1.95rem, 4.8vw, 2.85rem);
}

.brand-mark--about .brand-mark__line--secondary {
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  margin-top: 0.03em;
}

.brand-mark--loader .brand-mark__line--primary {
  font-size: clamp(1.75rem, 5.5vw, 2.65rem);
}

.brand-mark--loader .brand-mark__line--secondary {
  font-size: clamp(1.4rem, 4.5vw, 2.05rem);
  margin-top: 0.03em;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(26, 21, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  color: var(--ink);
  background: rgba(26, 21, 32, 0.06);
}

.lang-switch__btn.is-active {
  color: #fff;
  background: var(--ink);
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero:not(.hero--video) {
  background:
    linear-gradient(rgba(12, 10, 16, 0.22), rgba(12, 10, 16, 0.22)),
    linear-gradient(135deg, rgba(26, 21, 32, 0.75) 0%, rgba(61, 54, 72, 0.55) 45%, rgba(196, 92, 62, 0.35) 100%),
    var(--hero-image, url("../images/art-05.jpg")) center / cover no-repeat;
}

.hero--video {
  min-height: 100vh;
  min-height: 100dvh;
  background: #0c0a10;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(12, 10, 16, 0.38), rgba(12, 10, 16, 0.38)),
    linear-gradient(135deg, rgba(26, 21, 32, 0.82) 0%, rgba(61, 54, 72, 0.65) 45%, rgba(196, 92, 62, 0.45) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__media {
    display: none;
  }

  .hero--video {
    background:
      linear-gradient(rgba(12, 10, 16, 0.22), rgba(12, 10, 16, 0.22)),
      linear-gradient(135deg, rgba(26, 21, 32, 0.75) 0%, rgba(61, 54, 72, 0.55) 45%, rgba(196, 92, 62, 0.35) 100%),
      var(--hero-image, url("../images/art-05.jpg")) center / cover no-repeat;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1,
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  max-width: 28rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.08;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  font-size: 1.05rem;
}

.btn-hero {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero:hover {
  background: #a84d32;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 92, 62, 0.45);
}

.btn-outline-hero {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* Full-width art background strips between sections */
.art-bg-strip {
  width: 100%;
  min-height: clamp(11rem, 28vh, 20rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 1px rgba(26, 21, 32, 0.06);
}

@media (max-width: 991.98px) {
  .art-bg-strip {
    background-attachment: scroll;
    min-height: clamp(9rem, 22vh, 14rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-bg-strip {
    background-attachment: scroll;
  }
}

/* Section backgrounds — artwork with dark overlay */
.section-with-art-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-with-art-bg > .container {
  position: relative;
  z-index: 1;
}

.section-with-art-bg::before,
.section-with-art-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-with-art-bg::before {
  z-index: -2;
  background-image: var(--section-bg-image, url("../images/art-06.jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  opacity: 1;
}

.section-with-art-bg::after {
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(26, 21, 32, 0.84) 0%,
    rgba(26, 21, 32, 0.7) 48%,
    rgba(26, 21, 32, 0.8) 100%
  );
}

#works.section-with-art-bg::before {
  background-image: url("../images/art-22.JPG");
}

#about.section-with-art-bg::before {
  background-image: url("../images/art-31.JPG");
}

#about.section-with-art-bg::after {
  background: linear-gradient(
    118deg,
    rgba(26, 21, 32, 0.58) 0%,
    rgba(26, 21, 32, 0.74) 42%,
    rgba(26, 21, 32, 0.85) 100%
  );
}

.section-with-art-bg .section-label {
  color: var(--accent-soft);
}

.section-with-art-bg .section-title {
  color: #fff;
}

#works.gallery-blended .medium-filters {
  margin-bottom: 0;
}

#works.gallery-blended .gallery-blend__glance {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

#works.gallery-preview-only .gallery-blend__glance {
  margin-bottom: 0;
}

#works.gallery-preview-only .gallery-blend__glance-track .frontend-pagination-bar {
  display: none;
}

#works.gallery-preview-only .gallery-blend__pagination-below,
.gallery-page-catalog .gallery-blend__pagination-below {
  margin-top: 1.5rem;
}

#works.gallery-preview-only .gallery-blend__catalog-link {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  #works.gallery-blended .gallery-blend__glance {
    margin-top: 4rem;
  }
}

#works.gallery-blended .gallery-blend__glance-head {
  max-width: 36rem;
  margin-inline: auto;
}

#works.gallery-blended .gallery-blend__glance-intro {
  max-width: 32rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

#works.gallery-blended .gallery-blend__glance-track {
  margin-inline: calc(-1 * var(--bs-gutter-x, 0.75rem));
}

@media (min-width: 992px) {
  #works.gallery-blended .gallery-blend__glance-track {
    margin-inline: -1.5rem;
  }
}

#works.gallery-blended .picture-gallery__items {
  padding-bottom: 0.5rem;
}

.frontend-pagination-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 21, 32, 0.08);
}

#works.gallery-blended .frontend-pagination-bar {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.frontend-pagination-bar__summary {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

#works.gallery-blended .frontend-pagination-bar__summary {
  color: rgba(255, 255, 255, 0.78);
}

.frontend-pagination-bar__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.frontend-pagination-bar__per-page {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frontend-pagination-bar__per-page-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#works.gallery-blended .frontend-pagination-bar__per-page-label {
  color: rgba(255, 255, 255, 0.72);
}

.frontend-pagination-bar__per-page-select {
  min-width: 4.5rem;
  padding: 0.4rem 2rem 0.4rem 0.65rem;
  font-size: 0.88rem;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid rgba(26, 21, 32, 0.14);
  border-radius: 0.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1520' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
}

.frontend-pagination-nav .pagination {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.frontend-pagination-nav .page-link {
  min-width: 2.35rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.12);
  border-radius: 0.25rem;
  box-shadow: none;
}

.frontend-pagination-nav .page-link:hover:not(:disabled) {
  color: var(--accent);
  border-color: rgba(196, 92, 62, 0.35);
  background: #fff;
}

.frontend-pagination-nav .page-item.active .page-link {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.frontend-pagination-nav .page-item.disabled .page-link {
  color: rgba(26, 21, 32, 0.38);
  background: var(--paper-deep);
  border-color: rgba(26, 21, 32, 0.08);
}

#works.gallery-blended .frontend-pagination-nav .page-link {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

#works.gallery-blended .frontend-pagination-nav .page-link:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

#works.gallery-blended .frontend-pagination-nav .page-item.active .page-link {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

#works.gallery-blended .frontend-pagination-nav .page-item.disabled .page-link {
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 575.98px) {
  .frontend-pagination-bar__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .frontend-pagination-bar__per-page {
    justify-content: space-between;
  }

  .frontend-pagination-nav .pagination {
    justify-content: center;
  }
}

#works.gallery-blended .gallery-blend__grid-head {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#works .text-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

#about .col-lg-7 > p {
  color: rgba(255, 255, 255, 0.86);
}

#about .about-panel {
  color: var(--ink);
}

#about .about-panel .fst-italic {
  color: var(--ink);
}

#about .about-portrait {
  margin: 0;
  max-width: 21rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  #about .about-portrait {
    max-width: none;
    margin-inline: 0;
  }
}

.about-portrait__stage {
  position: relative;
  padding: 0.5rem 0.5rem 1.5rem;
}

.about-portrait__plate {
  position: absolute;
  inset: 0.25rem 0 0 0.75rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(
    145deg,
    rgba(184, 163, 105, 0.55) 0%,
    rgba(196, 92, 62, 0.4) 55%
  );
  transform: rotate(2.5deg);
  z-index: 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.about-portrait__frame {
  position: relative;
  z-index: 1;
  padding: 3px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, #9b8fd9 0%, #7eb8f0 45%, #b8e4ff 100%);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-portrait__frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-portrait__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(26, 21, 32, 0.5);
}

.about-portrait__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 21, 32, 0.05) 0%,
    transparent 45%,
    rgba(26, 21, 32, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-portrait__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-portrait__frame:hover .about-portrait__image,
.about-portrait__frame:focus-within .about-portrait__image {
  transform: scale(1.05);
}

.about-portrait__caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 1.35rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent-soft);
}

.about-portrait__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.about-portrait__name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.05rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
}

@media (prefers-reduced-motion: reduce) {
  .about-portrait__frame,
  .about-portrait__image {
    transition: none;
  }

  .about-portrait__frame:hover {
    transform: none;
  }

  .about-portrait__frame:hover .about-portrait__image,
  .about-portrait__frame:focus-within .about-portrait__image {
    transform: none;
  }
}

.picture-gallery.section-with-art-bg {
  background: transparent;
}

.picture-gallery.section-with-art-bg::after {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 235, 227, 0.9) 55%,
    rgba(245, 240, 232, 0.94) 100%
  );
}

.contact-strip.contact-strip--with-art-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-strip.contact-strip--with-art-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--section-bg-image, url("../images/art-06.jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.contact-strip.contact-strip--with-art-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    125deg,
    rgba(26, 21, 32, 0.92) 0%,
    rgba(26, 21, 32, 0.82) 50%,
    rgba(61, 54, 72, 0.88) 100%
  );
  pointer-events: none;
}

.contact-strip.contact-strip--with-art-bg > .container {
  position: relative;
  z-index: 1;
}

/* Section titles */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

/* Gallery cards */
.gallery-card {
  border: none;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(26, 21, 32, 0.16);
}

.gallery-card__media {
  position: relative;
  overflow: hidden;
}

.gallery-card__media > .ratio {
  background: var(--paper-deep);
}

.gallery-card__count {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: calc(100% - 1.25rem);
  padding: 0.3rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  background: rgba(26, 21, 32, 0.78);
  border-radius: 0.25rem;
  pointer-events: none;
}

/* Fill Bootstrap aspect-ratio boxes */
.ratio > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card .card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.gallery-card .card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.gallery-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.gallery-card .card-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* Medium filter cards */
.medium-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 58rem;
  margin-inline: auto;
}

.medium-filter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(26, 21, 32, 0.1);
  border-radius: 0.35rem;
  overflow: hidden;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.medium-filter__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  overflow: hidden;
}

.medium-filter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.medium-filter__media--all {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(196, 92, 62, 0.16) 0%, rgba(26, 21, 32, 0.06) 100%),
    var(--paper-deep);
}

.medium-filter__all-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}

.medium-filter__label--on-media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 21, 32, 0.82) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.medium-filter__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem 1.15rem;
}

.medium-filter--all .medium-filter__content {
  padding-top: 1.1rem;
}

.medium-filter--all .medium-filter__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.medium-filter__desc {
  display: block;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.medium-filter:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.medium-filter:hover .medium-filter__media img {
  transform: scale(1.04);
}

.medium-filter.active {
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(26, 21, 32, 0.12);
}

.medium-filter.active .medium-filter__label--on-media,
.medium-filter.active .medium-filter--all .medium-filter__label {
  color: var(--accent-soft);
}

.medium-filter.active.medium-filter--all .medium-filter__label {
  color: var(--accent);
}

#works .medium-filter.active .medium-filter__label--on-media {
  color: #fff;
}

@media (min-width: 768px) {
  .medium-filters {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .medium-filters {
    grid-template-columns: repeat(4, 1fr);
    max-width: 72rem;
  }
}

/* Legacy filter pills (if used elsewhere) */
.filter-pills .btn {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border: 1px solid rgba(26, 21, 32, 0.12);
  color: var(--ink-soft);
  background: #fff;
  margin: 0.25rem;
  transition: all 0.2s ease;
}

.filter-pills .btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-pills .btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Dedicated gallery page catalog */
.gallery-page-catalog {
  background: linear-gradient(165deg, #ffffff 0%, var(--paper-deep) 55%, #f5f0e8 100%);
  border-top: 1px solid rgba(26, 21, 32, 0.06);
}

.gallery-page-catalog .medium-filters--gallery-page {
  margin-bottom: 0;
}

.gallery-page-catalog .gallery-blend__glance {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .gallery-page-catalog .gallery-blend__glance {
    margin-top: 3rem;
  }
}

.gallery-page-catalog .gallery-blend__glance-track {
  margin-inline: calc(-1 * var(--bs-gutter-x, 0.75rem));
}

@media (min-width: 992px) {
  .gallery-page-catalog .gallery-blend__glance-track {
    margin-inline: -1.5rem;
  }
}

/* Picture preview gallery */
.picture-gallery {
  background: linear-gradient(165deg, #ffffff 0%, var(--paper-deep) 55%, #f5f0e8 100%);
  border-top: 1px solid rgba(26, 21, 32, 0.06);
  border-bottom: 1px solid rgba(26, 21, 32, 0.06);
}

.picture-gallery__intro {
  max-width: 38rem;
  line-height: 1.65;
}

.picture-gallery__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  padding: 0.35rem 0 0.25rem;
}

.picture-gallery__item {
  width: auto;
  scroll-snap-align: unset;
}

@media (min-width: 768px) {
  .picture-gallery__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .picture-gallery__items {
    gap: 1.5rem;
  }
}

.picture-gallery__tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0.65rem;
  margin: 0;
  border: 1px solid rgba(26, 21, 32, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 21, 32, 0.07);
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.25s ease;
}

.picture-gallery__tile:hover,
.picture-gallery__tile:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26, 21, 32, 0.12);
  border-color: rgba(196, 92, 62, 0.35);
}

.picture-gallery__tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.picture-gallery__thumb img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.picture-gallery__tile:hover .picture-gallery__thumb img,
.picture-gallery__tile:focus-visible .picture-gallery__thumb img {
  transform: scale(1.06);
}

.picture-gallery__caption {
  display: block;
  margin-top: 0.75rem;
  padding: 0 0.15rem 0.15rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picture-gallery__thumb-wrap {
  position: relative;
  display: block;
  border-radius: 0.65rem;
  overflow: hidden;
}

.picture-gallery__thumb-wrap > .ratio,
.picture-gallery__thumb {
  background: var(--paper-deep);
}

.picture-gallery__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  bottom: auto;
  z-index: 2;
  width: auto;
  height: auto;
  min-width: 1.35rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: var(--accent);
  border-radius: 0.25rem;
  pointer-events: none;
}

.picture-gallery__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.picture-gallery__empty {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about-panel {
  background: linear-gradient(160deg, #fff 0%, var(--paper-deep) 100%);
  border-radius: 0.25rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(26, 21, 32, 0.06);
  box-shadow: var(--shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 21, 32, 0.08);
}

.about-stats .stat {
  text-align: center;
}

.about-stats .stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.about-stats .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.about-bio {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2rem 2rem;
  background:
    linear-gradient(145deg, #fffefb 0%, #fff 38%, var(--paper-deep) 100%);
  border: 1px solid rgba(196, 92, 62, 0.14);
  box-shadow:
    0 24px 48px rgba(26, 21, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-bio::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 52%, var(--gold) 100%);
}

.about-bio__header {
  margin-bottom: 1.35rem;
  padding-left: 0.35rem;
}

.about-bio__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.about-bio__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.about-bio__quote {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border: none;
  border-radius: 0.2rem;
  background: linear-gradient(135deg, rgba(232, 160, 144, 0.14) 0%, rgba(184, 163, 105, 0.1) 100%);
  box-shadow: inset 0 0 0 1px rgba(196, 92, 62, 0.1);
}

.about-bio__quote-mark {
  position: absolute;
  top: -0.15rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(196, 92, 62, 0.22);
  pointer-events: none;
}

.about-bio__quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.about-timeline {
  display: grid;
  gap: 0;
  padding-left: 0.15rem;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0 1rem;
  align-items: start;
}

.about-timeline__marker {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding-top: 0.35rem;
}

.about-timeline__marker::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: -0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-soft), rgba(184, 163, 105, 0.45));
}

.about-timeline__item:last-child .about-timeline__marker::after {
  display: none;
}

.about-timeline__dot {
  position: relative;
  z-index: 1;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(196, 92, 62, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.95);
}

.about-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0 1.35rem;
}

.about-timeline__item:last-child .about-timeline__content {
  padding-bottom: 0;
}

.about-timeline__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-timeline__value {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

/* Exhibitions */
.exhibitions-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 18%, var(--paper) 100%);
  border-top: 1px solid rgba(26, 21, 32, 0.06);
  border-bottom: 1px solid rgba(26, 21, 32, 0.06);
}

.exhibitions-section__intro {
  position: sticky;
  top: 6.5rem;
}

.exhibitions-section__lead {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 18rem;
}

.exhibitions-section__count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(196, 92, 62, 0.08);
  border: 1px solid rgba(196, 92, 62, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.exhibitions-section__count-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.exhibitions-list {
  display: grid;
  gap: 0.85rem;
}

.exhibitions-list__item {
  animation-delay: var(--reveal-delay, 0ms);
}

.exhibitions-list__item[hidden] {
  display: none;
}

.exhibitions-feed__more[hidden] {
  display: none;
}

.exhibitions-section__cta {
  font-size: 0.78rem;
}

.exhibitions-section__actions {
  margin-top: 1.35rem;
  padding-top: 0.35rem;
}

.exhibitions-section__toggle {
  min-width: min(100%, 20rem);
}

.exhibitions-feed {
  display: grid;
  gap: 0;
}

.exhibitions-list__item--visual {
  margin: 0.35rem 0 0.65rem;
}

.exhibitions-visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.15rem);
  aspect-ratio: 21 / 9;
  min-height: clamp(11rem, 28vw, 18rem);
  background: var(--paper-deep);
  box-shadow: 0 14px 36px rgba(26, 21, 32, 0.08);
}

.exhibitions-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.exhibitions-visual__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0) 55%, rgba(250, 248, 245, 0.72) 100%),
    linear-gradient(90deg, rgba(250, 248, 245, 0.28) 0%, rgba(250, 248, 245, 0) 12%, rgba(250, 248, 245, 0) 88%, rgba(250, 248, 245, 0.28) 100%);
}

.exhibition-card {
  position: relative;
  padding: 1.15rem 1.25rem 1.15rem 1.45rem;
  border-radius: calc(var(--radius) + 0.1rem);
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.07);
  box-shadow: 0 10px 28px rgba(26, 21, 32, 0.05);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.exhibition-card__content {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) 1fr;
  gap: 1rem 1.35rem;
  align-items: start;
}

.exhibition-card--blended {
  display: grid;
  grid-template-columns: minmax(8.5rem, 12rem) 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.exhibition-card--blended.exhibition-card--image-right {
  grid-template-columns: 1fr minmax(8.5rem, 12rem);
}

.exhibition-card--blended.exhibition-card--image-right .exhibition-card__visual {
  order: 2;
}

.exhibition-card--blended.exhibition-card--image-right .exhibition-card__content {
  order: 1;
}

.exhibition-card--blended .exhibition-card__content {
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
}

.exhibition-card--blended.exhibition-card--image-right .exhibition-card__content {
  padding: 1.15rem 1.35rem 1.15rem 1.25rem;
}

.exhibition-card__visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(9rem, 22vw, 12.5rem);
  background: var(--paper-deep);
}

.exhibition-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.exhibition-card__visual-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.45) 24%, rgba(255, 255, 255, 0) 52%);
}

.exhibition-card--image-right .exhibition-card__visual-fade {
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.45) 24%, rgba(255, 255, 255, 0) 52%);
}

.exhibition-card--blended::before {
  display: none;
}

.exhibition-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: calc(var(--radius) + 0.1rem) 0 0 calc(var(--radius) + 0.1rem);
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.exhibition-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 92, 62, 0.18);
  box-shadow: 0 18px 40px rgba(26, 21, 32, 0.1);
}

.exhibition-card__when {
  padding-top: 0.15rem;
}

.exhibition-card__when-text {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--accent);
}

.exhibition-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.exhibition-card__place {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 767.98px) {
  .exhibitions-section__intro {
    position: static;
  }

  .exhibition-card {
    padding: 1rem 1.05rem 1rem 1.2rem;
  }

  .exhibition-card--blended {
    grid-template-columns: 1fr;
  }

  .exhibition-card--blended .exhibition-card__visual {
    order: -1;
    min-height: 11rem;
    aspect-ratio: 16 / 10;
  }

  .exhibition-card--blended .exhibition-card__content,
  .exhibition-card--blended.exhibition-card--image-right .exhibition-card__content {
    padding: 1rem 1.05rem 1rem 1.2rem;
  }

  .exhibition-card__visual-fade,
  .exhibition-card--image-right .exhibition-card__visual-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.92) 100%);
  }

  .exhibitions-visual {
    aspect-ratio: 16 / 10;
    min-height: 11rem;
  }

  .exhibition-card__content {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .exhibition-card__when-text {
    font-size: 0.68rem;
  }
}

@media (max-width: 575.98px) {
  .about-bio {
    padding: 1.75rem 1.35rem 1.5rem;
  }

  .about-bio__quote {
    padding: 1.15rem 1rem 1.15rem 1.15rem;
  }
}

.press-kit-platform .letter-spacing {
  letter-spacing: 0.12em;
}

.press-kit-visibility .press-kit-platform:last-of-type {
  margin-bottom: 2rem !important;
}

/* Press kit — editorial layout */
.press-kit {
  background:
    linear-gradient(180deg, var(--paper) 0%, #fff 12%, #fff 88%, var(--paper-deep) 100%);
}

.press-kit__header {
  max-width: 38rem;
  margin-inline: auto;
}

.press-kit__header .section-title {
  line-height: 1.12;
}

.press-kit__header::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 1.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.press-kit__lead {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.7;
}

.press-kit__story {
  display: grid;
  gap: 1.15rem;
}

.press-kit-chapter__inner {
  position: relative;
  overflow: hidden;
  padding: 1.85rem 1.75rem 1.85rem 2.35rem;
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.07);
  border-radius: 0.25rem;
  box-shadow: 0 14px 36px rgba(26, 21, 32, 0.06);
}

.press-kit-chapter__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
}

.press-kit-chapter__index {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(196, 92, 62, 0.12);
  pointer-events: none;
  user-select: none;
}

.press-kit-chapter__text {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.press-kit-chapter--intro .press-kit-chapter__text::first-letter {
  float: left;
  margin: 0.06em 0.14em 0 0;
  font-family: var(--font-display);
  font-size: 3.65rem;
  font-weight: 600;
  line-height: 0.82;
  color: var(--accent);
}

.press-kit-chapter--quote .press-kit-chapter__inner {
  background:
    linear-gradient(135deg, rgba(232, 160, 144, 0.12) 0%, rgba(255, 255, 255, 0.98) 52%, #fff 100%);
  border-color: rgba(196, 92, 62, 0.14);
}

.press-kit-chapter--quote .press-kit-chapter__text {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.1vw, 1.28rem);
  line-height: 1.72;
  color: var(--ink);
}

.press-kit-inline-quote {
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  quotes: none;
}

.press-kit-chapter--quote .press-kit-inline-quote {
  display: block;
  margin: 1rem 0;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(196, 92, 62, 0.08);
  font-size: clamp(1.2rem, 2.3vw, 1.42rem);
  line-height: 1.55;
}

.press-kit-feature {
  position: relative;
  overflow: hidden;
  padding: 2.35rem 2rem 2.15rem;
  background:
    linear-gradient(145deg, #fffefb 0%, #fff 38%, var(--paper-deep) 100%);
  border: 1px solid rgba(196, 92, 62, 0.14);
  border-radius: 0.25rem;
  box-shadow:
    0 24px 48px rgba(26, 21, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.press-kit-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 52%, var(--gold) 100%);
}

.press-kit-feature__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  padding-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.press-kit-feature__title {
  margin: 0 0 1.35rem;
  padding-left: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.press-kit-feature__body p {
  margin-bottom: 1.25rem;
  padding-left: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.press-kit-feature__body .press-kit-inline-quote {
  display: block;
  margin: 1rem 0;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 2px solid rgba(196, 92, 62, 0.35);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
}

.press-kit__credit {
  margin: 2.25rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 21, 32, 0.08);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(61, 54, 72, 0.72);
}

.press-kit__section {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 21, 32, 0.08);
}

.press-kit__section-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.press-kit__section-intro {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .press-kit-chapter__inner {
    padding: 1.5rem 1.25rem 1.5rem 1.65rem;
  }

  .press-kit-chapter__index {
    font-size: 1.85rem;
    top: 0.85rem;
    right: 0.85rem;
  }

  .press-kit-chapter--intro .press-kit-chapter__text::first-letter {
    font-size: 3rem;
  }

  .press-kit-feature {
    padding: 1.75rem 1.35rem 1.5rem;
  }
}

/* Inner page hero */
.page-hero {
  margin-top: 5.5rem;
  background:
    linear-gradient(135deg, rgba(26, 21, 32, 0.92) 0%, rgba(61, 54, 72, 0.82) 100%),
    var(--hero-image, url("../images/art-05.jpg")) center / cover no-repeat;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero--compact {
  padding-bottom: 0.5rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: #fff;
}

.page-hero__intro {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.page-hero .section-label {
  color: var(--accent-soft);
}

.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

/* YouTube / studio video */
.video-section {
  background: linear-gradient(165deg, #120f16 0%, var(--ink) 45%, #2a2230 100%);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-section .section-label {
  color: var(--accent-soft);
}

.video-section .section-title {
  color: #fff;
}

.video-section__intro {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
}

.video-section__empty {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.65);
}

.video-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.video-card__frame {
  background: #000;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}

.video-card__play:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.video-card__play:hover .video-card__thumb,
.video-card__play:focus-visible .video-card__thumb {
  transform: scale(1.04);
  opacity: 0.82;
}

.video-card__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 15, 22, 0.08) 0%,
    rgba(18, 15, 22, 0.45) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-card__play:hover::after,
.video-card__play:focus-visible::after {
  opacity: 0.92;
}

.video-card__play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 999px;
  background: rgba(196, 92, 62, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-card__play-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-style: solid;
  border-width: 0.72rem 0 0.72rem 1.15rem;
  border-color: transparent transparent transparent #fff;
}

.video-card__play-label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.video-card__play:hover .video-card__play-icon,
.video-card__play:focus-visible .video-card__play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
}

.video-card__frame.is-playing {
  background: #000;
}

.video-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.video-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
}

.video-card__caption {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.video-section .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.video-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Contact / footer */
.contact-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}

.contact-strip a {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-strip a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-details--strip .contact-details__blocks {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-details--strip .contact-details__block-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.65rem;
}

.contact-details__lead a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-details__lead a:hover {
  color: #a84d32;
  text-decoration: underline;
}

.contact-details--strip .contact-details__lead a {
  color: var(--accent-soft);
}

.contact-details--strip .contact-details__lead a:hover {
  color: #fff;
}

.contact-details--page .contact-details__actions {
  margin-top: 1.5rem;
}

/* Contact page */
.contact-page {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 24%, var(--paper) 100%);
}

.contact-page__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 28rem;
}

.contact-page__lead a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-page__lead a:hover {
  color: #a84d32;
  text-decoration: underline;
}

.contact-page__note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 28rem;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(196, 92, 62, 0.35);
}

.contact-page__panels {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-panel {
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 0.1rem);
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.07);
  box-shadow: 0 12px 32px rgba(26, 21, 32, 0.05);
}

.contact-panel__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.contact-panel--social {
  padding-bottom: 1rem;
}

.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-page__directions {
  border-color: rgba(26, 21, 32, 0.18);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
}

.contact-page__directions:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.contact-page__visual {
  display: grid;
  gap: 1rem;
}

.contact-map {
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid rgba(26, 21, 32, 0.08);
  box-shadow: var(--shadow);
  background: var(--paper-deep);
  min-height: clamp(16rem, 38vw, 24rem);
}

.contact-map__frame {
  display: block;
  width: 100%;
  min-height: clamp(16rem, 38vw, 24rem);
  border: 0;
}

.contact-page__portrait {
  display: grid;
  grid-template-columns: minmax(7rem, 9.5rem) 1fr;
  gap: 1rem 1.25rem;
  align-items: end;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius) + 0.1rem);
  background: #fff;
  border: 1px solid rgba(26, 21, 32, 0.07);
  box-shadow: 0 12px 32px rgba(26, 21, 32, 0.05);
}

.contact-page__portrait-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.05rem);
  aspect-ratio: 3 / 4;
  background: var(--paper-deep);
}

.contact-page__portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-page__portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.35rem;
}

.contact-page__portrait-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--ink);
}

.contact-page__portrait-place {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.studio-address--page {
  color: var(--ink-soft);
  font-size: 1rem;
}

.studio-address--page .studio-address__line {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink);
}

.studio-contact--page .studio-contact__label {
  color: var(--ink-soft);
}

.studio-contact--page .studio-contact__value,
.studio-contact--page .studio-contact__value a,
.studio-contact--page .studio-contact__press-assets {
  color: var(--ink);
}

.studio-contact--page .studio-contact__value a:hover {
  color: var(--accent);
}

.social-links--page {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links--page a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 21, 32, 0.1);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links--page a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.social-links--page .social-links__label {
  line-height: 1;
}

@media (max-width: 991.98px) {
  .contact-page__panels {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-page__portrait {
    grid-template-columns: 1fr;
  }

  .contact-page__portrait-frame {
    max-width: 11rem;
  }
}

.studio-address {
  font-style: normal;
  line-height: 1.65;
}

.studio-address__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.studio-address__lines {
  display: block;
}

.studio-address__line {
  display: block;
}

.studio-address__directions {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.studio-address--contact {
  color: rgba(255, 255, 255, 0.88);
}

.studio-address--contact .studio-address__label {
  color: rgba(255, 255, 255, 0.55);
}

.studio-address--contact .studio-address__directions {
  color: var(--accent-soft);
}

.studio-address--contact .studio-address__directions:hover {
  color: #fff;
}

.studio-address--footer {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.studio-address--footer .studio-address__directions {
  color: rgba(255, 255, 255, 0.7);
}

.studio-address--footer .studio-address__directions:hover {
  color: var(--accent-soft);
}

.studio-contact {
  font-size: 0.95rem;
  line-height: 1.65;
}

.studio-contact__item {
  margin-bottom: 0;
}

.studio-contact__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.studio-contact__value a {
  text-decoration: none;
}

.studio-contact__press-assets {
  opacity: 0.85;
}

.studio-contact--strip .studio-contact__label {
  color: rgba(255, 255, 255, 0.55);
}

.studio-contact--strip .studio-contact__value,
.studio-contact--strip .studio-contact__value a,
.studio-contact--strip .studio-contact__press-assets {
  color: rgba(255, 255, 255, 0.85);
}

.studio-contact--strip .studio-contact__value a:hover {
  color: #fff;
}

.studio-contact--footer .studio-contact__label {
  color: rgba(255, 255, 255, 0.45);
}

.studio-contact--footer .studio-contact__value,
.studio-contact--footer .studio-contact__value a,
.studio-contact--footer .studio-contact__press-assets {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.studio-contact--footer .studio-contact__value a:hover {
  color: var(--accent-soft);
}

.studio-contact--press-kit .studio-contact__label {
  color: var(--ink-soft);
}

.studio-contact--press-kit .studio-contact__value a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.studio-address--press-kit .studio-address__directions {
  color: var(--accent);
}

.site-footer {
  background: #120f16;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent-soft);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  text-decoration: none;
  opacity: 0.92;
}

.footer-tagline {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.85rem;
}

.footer-nav li + li {
  margin-top: 0.4rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

@media (min-width: 992px) {
  .footer-bottom {
    text-align: left;
  }
}

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-links--icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.social-links--icons a:hover {
  color: #fff;
  border-color: var(--accent-soft);
  background: rgba(232, 160, 144, 0.12);
}

.social-links--footer-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.social-links--footer-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links--footer-list a:hover {
  color: var(--accent-soft);
}

.social-links--footer-list svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.social-links--contact {
  gap: 0.75rem;
}

.social-links--contact a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
}

.social-links--contact a:hover {
  color: #fff;
  border-color: var(--accent-soft);
  background: rgba(232, 160, 144, 0.15);
}

.social-links__label {
  line-height: 1;
}

/* Scroll reveal removed from layout-critical path — images stay visible without waiting on JS. */
.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 0.25rem;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 600;
}

#artModal .ratio > img.object-fit-contain {
  object-fit: contain;
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 1040;
  box-shadow: 0 8px 24px rgba(26, 21, 32, 0.35);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-3px);
  background: var(--accent);
}

@media (max-width: 767.98px) {
  .about-stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-stats .stat {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% -10%, rgba(232, 160, 144, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 100% 100%, rgba(184, 163, 105, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 45% at 0% 85%, rgba(196, 92, 62, 0.14) 0%, transparent 45%),
    linear-gradient(165deg, var(--paper) 0%, var(--paper-deep) 55%, #e8e0d4 100%);
}

.page-loader__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  animation: loaderShimmer 2.4s ease-in-out infinite;
}

.page-loader__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

@keyframes loaderShimmer {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-8%);
  }
  50% {
    opacity: 0.7;
    transform: translateX(8%);
  }
}

.page-loader__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  transform: translateY(0) scale(1);
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.65s ease;
}

.page-loader__frame {
  position: relative;
  width: min(280px, 72vw);
  height: 180px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(26, 21, 32, 0.1);
  border-radius: 2px;
  background: linear-gradient(165deg, #fffefb 0%, var(--paper) 100%);
  box-shadow: inset 0 0 40px rgba(196, 92, 62, 0.06), 0 20px 40px rgba(26, 21, 32, 0.1);
  overflow: hidden;
}

.page-loader__stroke {
  position: absolute;
  left: 12%;
  height: 14px;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  filter: blur(0.3px);
}

.page-loader__stroke--1 {
  top: 28%;
  width: 72%;
  background: linear-gradient(90deg, transparent, var(--accent) 15%, var(--accent-soft) 85%, transparent);
  animation: loaderBrush 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.page-loader__stroke--2 {
  top: 46%;
  width: 58%;
  left: 22%;
  height: 11px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, #d4c48a 80%, transparent);
  animation: loaderBrush 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.page-loader__stroke--3 {
  top: 62%;
  width: 80%;
  left: 8%;
  height: 16px;
  background: linear-gradient(90deg, transparent, #8b6b7a 10%, var(--accent-soft) 50%, var(--accent) 90%, transparent);
  animation: loaderBrush 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.page-loader__stroke--4 {
  top: 78%;
  width: 42%;
  left: 38%;
  height: 9px;
  background: linear-gradient(90deg, transparent, rgba(61, 54, 72, 0.25) 30%, rgba(61, 54, 72, 0.1) 100%);
  animation: loaderBrush 1s cubic-bezier(0.22, 1, 0.36, 1) 1.25s forwards;
}

@keyframes loaderBrush {
  0% {
    transform: scaleX(0) skewX(-8deg);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1) skewX(-2deg);
    opacity: 0.92;
  }
}

.page-loader__brand {
  margin: 0 0 0.35rem;
  opacity: 0;
  animation: loaderFadeUp 0.9s ease 0.35s forwards;
}

.page-loader__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: loaderFadeUp 0.9s ease 0.55s forwards;
}

.page-loader__track {
  width: min(200px, 55vw);
  height: 2px;
  margin: 0 auto;
  background: rgba(26, 21, 32, 0.1);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.6s ease 0.7s forwards;
}

.page-loader__bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), var(--gold));
  animation: loaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes loaderFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderProgress {
  to {
    width: 100%;
  }
}

.page-loader.is-exiting {
  opacity: 0;
  visibility: hidden;
}

.page-loader.is-exiting .page-loader__inner {
  transform: translateY(-18px) scale(0.98);
  opacity: 0;
}

.page-loader.is-exiting .page-loader__backdrop {
  transform: scale(1.04);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.85s ease;
}

.page-loader.is-hidden {
  display: none;
}

/* Artwork modal — multi-image gallery */
.art-modal-gallery {
  position: relative;
}

.art-modal-gallery__stage {
  background: var(--paper-deep);
}

.art-modal-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 21, 32, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease;
}

.art-modal-gallery__nav:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.art-modal-gallery__nav--prev {
  left: 0.75rem;
}

.art-modal-gallery__nav--next {
  right: 0.75rem;
}

.art-modal-gallery__counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: rgba(26, 21, 32, 0.65);
  border-radius: 999px;
}

.art-modal-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.art-modal-gallery__thumb {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.art-modal-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-modal-gallery__thumb:hover {
  opacity: 0.85;
}

.art-modal-gallery__thumb.is-active {
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__stroke,
  .page-loader__brand,
  .page-loader__tagline,
  .page-loader__track,
  .page-loader__bar {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .page-loader__backdrop::after {
    animation: none;
    opacity: 0;
  }

  .page-loader__stroke {
    transform: scaleX(1);
  }

  .page-loader__bar {
    width: 100%;
  }

  .page-loader,
  .page-loader__inner,
  .page-loader__backdrop {
    transition-duration: 0.2s;
  }
}

/* Guest book */
.guestbook {
  background: linear-gradient(180deg, #fff 0%, var(--paper-deep) 100%);
}

.guestbook-form-card {
  padding: 2rem 1.75rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(26, 21, 32, 0.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(26, 21, 32, 0.08);
}

.guestbook-form-card__title,
.guestbook-entries-head__title {
  font-family: var(--font-display);
}

.guestbook-field {
  margin-bottom: 1.15rem;
}

.guestbook-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.guestbook-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.guestbook-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26, 21, 32, 0.12);
  border-radius: 0.25rem;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guestbook-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.12);
}

.guestbook-input.is-invalid {
  border-color: #c45c5c;
}

.guestbook-input--textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.guestbook-error {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #b42318;
}

.guestbook-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.guestbook-consent__input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.guestbook-consent__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.guestbook-alert {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.guestbook-alert--success {
  background: rgba(196, 92, 62, 0.1);
  border: 1px solid rgba(196, 92, 62, 0.22);
  color: var(--ink);
}

.guestbook-entries {
  display: grid;
  gap: 1rem;
}

.guestbook-entry {
  padding: 1.35rem 1.4rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(26, 21, 32, 0.08);
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 21, 32, 0.06);
}

.guestbook-entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.guestbook-entry__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.guestbook-entry__date {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.guestbook-entry__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.guestbook-empty {
  padding: 2rem 1.5rem;
  border-radius: 0.35rem;
  border: 1px dashed rgba(26, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.guestbook-admin-comment {
  max-width: 22rem;
  white-space: pre-wrap;
}

@media (min-width: 992px) {
  .guestbook-form-card {
    position: sticky;
    top: 6.5rem;
  }
}
