:root {
  --bg: #ffffff;
  --bg-strong: #e0dcd1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(179, 184, 238, 0.28);
  --text: #4d4a72;
  --muted: #7b77af;
  --line: rgba(123, 119, 175, 0.18);
  --accent: #8e8fc1;
  --accent-soft: #d9b9ad;
  --olive: #7a8c77;
  --playful: #a19fe0;
  --playful-soft: rgba(161, 159, 224, 0.18);
  --shadow: 0 22px 60px rgba(90, 89, 150, 0.12);
  --radius: 8px;
  --radius-lg: 22px;
  --max: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(179, 184, 238, 0.34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(217, 185, 173, 0.28), transparent 26%),
    radial-gradient(circle at 55% 78%, rgba(122, 140, 119, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9f8fd 38%, #f5f7f3 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled input,
body.cursor-enabled textarea,
body.cursor-enabled select,
body.cursor-enabled .project-card {
  cursor: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header,
.site-footer,
.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.decor-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decor-orb,
.decor-ring,
.decor-star {
  position: absolute;
}

.decor-orb {
  border-radius: 50%;
  filter: blur(0.4px);
  opacity: 0.7;
}

.decor-orb-lilac {
  width: 22rem;
  height: 22rem;
  top: 10rem;
  right: -7rem;
  background: radial-gradient(circle at 30% 30%, rgba(179, 184, 238, 0.7), rgba(161, 159, 224, 0.1) 70%);
}

.decor-orb-sage {
  width: 16rem;
  height: 16rem;
  left: -5rem;
  top: 46rem;
  background: radial-gradient(circle at 35% 35%, rgba(122, 140, 119, 0.38), rgba(122, 140, 119, 0.05) 70%);
}

.decor-ring {
  border-radius: 50%;
  border: 1px solid rgba(142, 143, 193, 0.22);
}

.decor-ring-top {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -10rem;
}

.decor-ring-bottom {
  width: 20rem;
  height: 20rem;
  right: 10%;
  bottom: 8%;
  border-color: rgba(217, 185, 173, 0.28);
}

.decor-star {
  color: rgba(123, 119, 175, 0.8);
  font-size: 1.15rem;
  line-height: 1;
  animation: twinkle 4.6s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(161, 159, 224, 0.18);
}

.decor-star-one {
  top: 11rem;
  left: 10%;
}

.decor-star-two {
  top: 36rem;
  right: 13%;
  animation-delay: 1.2s;
}

.decor-star-three {
  bottom: 11rem;
  left: 24%;
  animation-delay: 2.4s;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0.75rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56));
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 2.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--playful));
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small,
.eyebrow,
.contact-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface-strong);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--text);
  margin: 0.3rem auto;
}

.section {
  padding: 2rem 0 4rem;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.85fr);
  gap: 2.75rem;
  align-items: center;
  min-height: 78vh;
}

.hero-copy {
  width: 100%;
  max-width: none;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  max-width: none;
  text-wrap: balance;
}

.hero-copy .lede {
  max-width: 46rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: none;
  width: 100%;
  text-wrap: pretty;
}

.lede,
.hero-copy p,
.section-heading p,
.discipline-card p,
.project-card p,
.collection-copy p,
.about-panel p,
.process-card p,
.quote-band p,
.contact-card span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.filter-chip:hover,
.project-card:hover {
  transform: translateY(-2px);
}

.button:hover,
.filter-chip:hover,
.site-nav a:hover,
.site-footer a:hover,
.contact-card a:hover {
  color: var(--playful);
}

.button-primary,
.filter-chip.is-active {
  background: linear-gradient(135deg, var(--accent), var(--playful));
  color: #fff;
}

.button-secondary,
.filter-chip {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(142, 143, 193, 0.26);
}

.button-primary:hover,
.filter-chip.is-active:hover {
  background: linear-gradient(135deg, #8e8fc1, #7b77af);
  color: #fff;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 1px solid rgba(179, 184, 238, 0.28);
  top: 2rem;
  left: -3rem;
  z-index: 0;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

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

.hero-card-tall {
  grid-row: span 2;
  min-height: 35rem;
}

.hero-card-accent {
  transform: translateX(-1rem);
}

.hero-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(161, 159, 224, 0.38);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(161, 159, 224, 0.24);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.72rem;
  box-shadow: 0 12px 35px rgba(47, 19, 104, 0.12);
  animation: bob 3.2s ease-in-out infinite;
}

.floating-note-top {
  top: -1.1rem;
  right: 0.6rem;
}

.floating-note-bottom {
  bottom: 2rem;
  left: -0.5rem;
  animation-delay: 1.1s;
}

.metrics-band,
.discipline-grid,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.metrics-band {
  grid-template-columns: repeat(3, 1fr);
}

.metric,
.discipline-card,
.project-card,
.collection-block,
.about-panel,
.process-card,
.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric,
.discipline-card,
.project-card,
.collection-block,
.about-panel,
.process-card,
.contact-card,
.contact-form,
.collection-thumb {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.metric {
  padding: 1.6rem;
}

.metric:hover,
.discipline-card:hover,
.about-panel:hover,
.process-card:hover,
.contact-card:hover,
.contact-form:hover,
.collection-block:hover {
  transform: translateY(-6px);
  border-color: rgba(161, 159, 224, 0.24);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 2.3rem;
  font-family: var(--serif);
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.split-section {
  display: grid;
  gap: 1.5rem;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.85rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(161, 159, 224, 0.65), rgba(217, 185, 173, 0.6));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.project-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(161, 159, 224, 0.26);
}

.project-card-image {
  aspect-ratio: 0.92;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.035) rotate(-1deg);
}

.project-card-copy {
  padding: 1.1rem 1.1rem 1.2rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.discipline-grid {
  grid-template-columns: repeat(3, 1fr);
}

.discipline-card,
.about-panel,
.process-card,
.contact-card,
.contact-form,
.collection-block {
  padding: 1.4rem;
}

.quote-band {
  padding-bottom: 5rem;
}

.quote-band p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 28ch;
  width: 100%;
  text-wrap: pretty;
}

.collection-list {
  display: grid;
  gap: 1.2rem;
}

.collection-block {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.2rem;
  align-items: start;
}

.collection-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.collection-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  min-height: 12rem;
  border: 1px solid transparent;
}

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

.collection-thumb:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(161, 159, 224, 0.3);
}

.about-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card span {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(161, 159, 224, 0.2);
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-layout {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.contact-form {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.contact-form label:last-of-type {
  grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 2.5rem;
  color: var(--muted);
}

.project-modal {
  width: min(54rem, calc(100% - 1.5rem));
  border: none;
  border-radius: 24px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(123, 119, 175, 0.2);
}

.project-modal::backdrop {
  background: rgba(123, 119, 175, 0.34);
  backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.modal-image img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.modal-copy {
  padding: 2rem;
}

.modal-copy h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 0.98;
  margin: 0 0 0.8rem;
}

.modal-copy ul {
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 600ms ease forwards;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 140ms ease, opacity 140ms ease, background 180ms ease;
  z-index: 1000;
}

body.cursor-enabled .cursor-dot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.cursor-enabled .cursor-dot.is-hovering {
  transform: translate(-50%, -50%) scale(1.6);
  background: var(--playful);
  box-shadow: none;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.92) rotate(0deg);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15) rotate(8deg);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.96);
  }
  25% {
    transform: translate3d(8px, -10px, 0) rotate(10deg) scale(1.05);
  }
  50% {
    transform: translate3d(-6px, -16px, 0) rotate(-8deg) scale(1.12);
  }
  75% {
    transform: translate3d(10px, -4px, 0) rotate(14deg) scale(1);
  }
}

@keyframes sparkleDrift {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.88);
  }
  25% {
    opacity: 0.5;
    transform: translate3d(4px, -8px, 0) rotate(16deg) scale(1.08);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(-5px, -14px, 0) rotate(-10deg) scale(1.18);
  }
  75% {
    opacity: 0.48;
    transform: translate3d(6px, -5px, 0) rotate(20deg) scale(0.98);
  }
}

@keyframes gradientBreath {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  33% {
    opacity: 0.48;
    transform: translate3d(12px, -10px, 0) scale(1.08);
  }
  66% {
    opacity: 0.34;
    transform: translate3d(-8px, 8px, 0) scale(0.98);
  }
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .collection-block,
  .modal-body,
  .about-grid,
  .process-grid,
  .contact-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .project-grid-featured,
  .discipline-grid,
  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form label:last-of-type,
  .contact-form,
  .contact-form button,
  .contact-form .button {
    grid-column: auto;
  }

  .hero-card-tall {
    min-height: 22rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 12ch;
  }

  .floating-note-top {
    right: 1rem;
  }

  .floating-note-bottom {
    left: 0.6rem;
    bottom: 1rem;
  }

  .decor-orb-lilac {
    width: 16rem;
    height: 16rem;
    right: -5rem;
  }

  .decor-ring-top {
    width: 18rem;
    height: 18rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 1rem;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(18rem, calc(100vw - 2rem));
    background: rgba(250, 246, 240, 0.95);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .floating-note {
    display: none;
  }

  .decor-star-three,
  .decor-ring-bottom {
    display: none;
  }

  .project-grid,
  .project-grid-featured,
  .discipline-grid,
  .metrics-band {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

body.home-editorial {
  font-family: "Syne", "Aptos", "Segoe UI", sans-serif;
  overflow: hidden;
  color: #111110;
  background:
    radial-gradient(circle at top left, rgba(179, 184, 238, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(217, 185, 173, 0.2), transparent 25%),
    linear-gradient(180deg, #faf9f7 0%, #f6f5f2 100%);
  position: relative;
}

body.home-editorial {
  --home-gutter: clamp(1rem, 2.4vw, 2.25rem);
}

body.home-editorial::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--home-gutter) + 1px);
  height: 100vh;
  background: #ffffff;
  z-index: 0;
}

body.home-editorial.cursor-enabled,
body.home-editorial.cursor-enabled a,
body.home-editorial.cursor-enabled button {
  cursor: none;
}

body.home-editorial .cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  box-shadow: none;
}

body.home-editorial .cursor-dot.is-hovering {
  transform: translate(-50%, -50%) scale(1.8);
  background: var(--playful);
  box-shadow: none;
}

.home-layout {
  display: flex;
  height: 100vh;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0 var(--home-gutter);
  position: relative;
  z-index: 1;
}

.home-sidebar {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 0.5px solid rgba(17, 17, 16, 0.12);
  position: fixed;
  top: 0;
  height: 100vh;
  left: var(--home-gutter);
  background: #ffffff;
  backdrop-filter: blur(8px);
}

.home-sidebar-top {
  margin-bottom: 1rem;
}

.home-name {
  display: inline-block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  color: #111110;
  transition: color 180ms ease;
}

.home-name:hover {
  color: #8e8fc1;
}

.home-role,
.home-sidebar-bottom,
.home-sidebar-nav a,
.home-kicker,
.home-section-eyebrow,
.home-marquee-item,
.home-tools span,
.home-tags span,
.home-pr-pills span,
.home-availability,
.home-contact-rows strong,
.home-footer-bar small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.home-role,
.home-tagline,
.home-sidebar-bottom,
.home-sidebar-nav a,
.home-summary,
.home-scroll-cue,
.home-service-card span,
.home-pr-intro p,
.home-contact-sub,
.home-contact-rows a {
  color: #8d8c91;
}

.home-role {
  font-size: 1rem;
  margin-top: 0.45rem;
}

.home-contact-mini {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.home-contact-mini p {
  margin: 0;
  color: #8d8c91;
  font-size: 0.84rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.home-social-links {
  display: grid;
  gap: 0.4rem;
}

.home-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: #8d8c91;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.home-social-links a:hover {
  color: #111110;
}

.home-social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.home-sidebar-deco {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.9rem;
}

.home-star-small {
  width: 14px;
  height: 14px;
  color: rgba(141, 140, 145, 0.65);
  flex-shrink: 0;
}

.home-tagline {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.7;
  font-style: italic;
}

.home-sidebar-nav {
  display: flex;
  flex-direction: column;
}

.home-sidebar-nav a {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.78rem 0;
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  font-size: 0.95rem;
  color: #8d8c91;
  position: relative;
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.home-sidebar-nav a:last-child {
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
}

.home-sidebar-nav a span {
  font-size: 0.82rem;
  color: rgba(17, 17, 16, 0.26);
  transition: color 180ms ease;
}

.home-sidebar-nav a:hover,
.home-sidebar-nav a.is-active {
  color: #111110;
  letter-spacing: 0.17em;
}

.home-sidebar-nav a.is-active span {
  color: #8d8c91;
}

.home-sidebar-nav a.is-active::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #111110;
}

.home-sidebar-bottom {
  font-size: 0.88rem;
  line-height: 2.2;
}

.home-main {
  flex: 1;
  overflow-y: auto;
  margin-left: calc(290px + var(--home-gutter));
  width: calc(100% - 290px);
  padding-left: 4rem;
  padding-right: 3.5rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #111110;
}

.home-main::-webkit-scrollbar {
  display: none;
}

.home-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  position: relative;
}

.home-section:last-child {
  border-bottom: none;
}

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

.home-circle,
.home-star {
  position: absolute;
  pointer-events: none;
}

.home-circle {
  border-radius: 50%;
  border: 0.5px solid rgba(17, 17, 16, 0.12);
  animation: orbitFloat 16s ease-in-out infinite;
  transform-origin: center;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.home-circle-filled {
  background: rgba(179, 184, 238, 0.14);
  border-color: rgba(142, 143, 193, 0.28);
}

.home-circle-soft {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(179, 184, 238, 0.22);
}

.home-circle-filled-blush {
  background: rgba(217, 185, 173, 0.12);
  border-color: rgba(217, 185, 173, 0.28);
}

.home-circle-sage {
  background: rgba(122, 140, 119, 0.08);
  border-color: rgba(122, 140, 119, 0.22);
}

.home-circle-a {
  width: 180px;
  height: 180px;
  right: -40px;
  top: 15%;
  animation-duration: 20s;
}

.home-circle-b {
  width: 82px;
  height: 82px;
  right: 28px;
  top: 20%;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.home-circle-c {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 8%;
  animation-duration: 22s;
}

.home-circle-d {
  width: 170px;
  height: 170px;
  right: -30px;
  top: 18%;
  animation-duration: 17s;
  animation-delay: 0.8s;
}

.home-circle-e {
  width: 58px;
  height: 58px;
  left: -18px;
  bottom: 26%;
  animation-duration: 10s;
  animation-delay: 1.4s;
}

.home-circle-f {
  width: 92px;
  height: 92px;
  right: 22px;
  top: 22%;
  animation-duration: 14s;
}

.home-circle-g {
  width: 180px;
  height: 180px;
  right: -30px;
  top: 14%;
  animation-duration: 19s;
}

.home-circle-h {
  width: 38px;
  height: 38px;
  left: 18%;
  top: 18%;
  animation-duration: 11s;
  animation-delay: 0.4s;
}

.home-circle-i {
  width: 70px;
  height: 70px;
  left: -26px;
  top: 24%;
  animation-duration: 13s;
  animation-delay: 1.6s;
}

.home-circle-j {
  width: 44px;
  height: 44px;
  right: 16%;
  bottom: 18%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.home-circle-k {
  width: 88px;
  height: 88px;
  left: -24px;
  bottom: 16%;
  animation-duration: 15s;
  animation-delay: 1s;
}

.home-circle-l {
  width: 54px;
  height: 54px;
  right: 34%;
  top: 24%;
  animation-duration: 9s;
  animation-delay: 2s;
}

.home-circle-m {
  width: 36px;
  height: 36px;
  right: 18%;
  top: 18%;
  animation-duration: 8.5s;
  animation-delay: 1.1s;
}

.home-circle-n {
  width: 66px;
  height: 66px;
  left: 22%;
  top: 22%;
  animation-duration: 11.5s;
  animation-delay: 1.3s;
}

.home-circle-o {
  width: 42px;
  height: 42px;
  right: 22%;
  bottom: 18%;
  animation-duration: 10s;
  animation-delay: 0.9s;
}

.home-star {
  color: rgba(17, 17, 16, 0.24);
  animation: sparkleDrift 18s ease-in-out infinite;
  transition: color 220ms ease, text-shadow 220ms ease, opacity 220ms ease;
}

.home-star-a {
  right: 54px;
  top: 34px;
  font-size: 1.3rem;
}

.home-star-b {
  right: 24px;
  bottom: 84px;
  font-size: 1rem;
  animation-direction: reverse;
}

.home-star-c {
  left: 6px;
  top: 50%;
  font-size: 0.8rem;
}

.home-star-d {
  right: 20px;
  top: 80px;
  font-size: 1.05rem;
}

.home-star-e {
  left: 36%;
  top: 14%;
  font-size: 0.75rem;
  animation-duration: 22s;
}

.home-star-f {
  left: 12%;
  bottom: 18%;
  font-size: 0.72rem;
  animation-duration: 20s;
  animation-direction: reverse;
}

.home-star-g {
  right: 8%;
  top: 46%;
  font-size: 0.78rem;
  animation-duration: 24s;
}

.home-star-h {
  right: 22%;
  top: 11%;
  font-size: 0.9rem;
  animation-duration: 14s;
  animation-delay: 0.8s;
}

.home-star-i {
  left: 8%;
  top: 14%;
  font-size: 0.88rem;
  animation-duration: 16s;
  animation-delay: 1.8s;
}

.home-star-j {
  right: 12%;
  top: 20%;
  font-size: 0.84rem;
  animation-duration: 15s;
  animation-delay: 1.1s;
}

.home-star-k {
  left: 14%;
  bottom: 22%;
  font-size: 0.8rem;
  animation-duration: 19s;
  animation-delay: 2.2s;
}

.home-gradient {
  position: absolute;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.42;
  animation: gradientBreath 16s ease-in-out infinite;
}

.home-gradient-a {
  width: 220px;
  height: 140px;
  right: 8%;
  top: 32%;
  background: radial-gradient(circle at center, rgba(179, 184, 238, 0.32), rgba(179, 184, 238, 0) 72%);
}

.home-gradient-b {
  width: 180px;
  height: 120px;
  left: 12%;
  bottom: 10%;
  background: radial-gradient(circle at center, rgba(217, 185, 173, 0.24), rgba(217, 185, 173, 0) 74%);
}

.home-gradient-c {
  width: 200px;
  height: 130px;
  right: 14%;
  bottom: 12%;
  background: radial-gradient(circle at center, rgba(122, 140, 119, 0.18), rgba(122, 140, 119, 0) 76%);
}

.home-gradient-d {
  width: 150px;
  height: 150px;
  left: 38%;
  top: 8%;
  background: radial-gradient(circle at center, rgba(179, 184, 238, 0.24), rgba(179, 184, 238, 0) 74%);
  animation-duration: 11s;
}

.home-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #8d8c91;
  margin-bottom: 1.5rem;
}

.home-kicker-line,
.home-scroll-line {
  height: 0.5px;
  background: #8d8c91;
}

.home-kicker-line {
  width: 24px;
}

.home-section:hover .home-circle-filled,
.home-section:hover .home-circle-filled-blush,
.home-section:hover .home-circle-sage,
.home-section:hover .home-circle-soft {
  border-color: rgba(142, 143, 193, 0.42);
}

.home-section:hover .home-star-e,
.home-section:hover .home-star-h,
.home-section:hover .home-star-j,
.home-section:hover .home-star-k {
  color: rgba(142, 143, 193, 0.72);
}

.home-section:hover .home-gradient-a,
.home-section:hover .home-gradient-b,
.home-section:hover .home-gradient-c,
.home-section:hover .home-gradient-d {
  opacity: 0.62;
}

.home-title,
.home-section-title,
.home-contact-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #111110;
}

.home-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: clamp(4.8rem, 9vw, 7.4rem);
  margin: 0 0 1.6rem;
}

.home-title em,
.home-contact-title em {
  color: #8d8c91;
  font-style: italic;
  transition: color 180ms ease;
}

.home-title:hover em,
.home-contact-title:hover em {
  color: #8e8fc1;
}

.home-title span {
  display: inline-block;
  transition: transform 180ms ease, color 180ms ease;
}

.home-title span:hover {
  transform: skewX(-4deg);
  color: #8e8fc1;
}

.home-summary {
  font-size: 1.2rem;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2rem;
  color: #8d8c91;
}

.home-tags,
.home-tools,
.home-pr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.home-tags {
  margin-bottom: 2rem;
}

.home-tags span,
.home-tools span,
.home-pr-pills span {
  font-size: 0.82rem;
  padding: 0.42rem 0.9rem;
  border: 0.5px solid rgba(17, 17, 16, 0.12);
  color: #8d8c91;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-tags span:hover,
.home-tools span:hover,
.home-pr-pills span:hover {
  transform: translateY(-1px);
  color: #8e8fc1;
  border-color: rgba(142, 143, 193, 0.3);
  background: rgba(142, 143, 193, 0.05);
}

.home-scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: #8d8c91;
}

.home-scroll-line {
  width: 24px;
  animation: homeGrow 2s ease infinite;
}

.home-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #8d8c91;
  margin-bottom: 1rem;
}

.home-section-eyebrow span {
  display: inline-block;
  animation: twinkle 12s linear infinite;
}

.home-section-title {
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  margin: 0 0 2rem;
  transition: color 180ms ease;
}

.home-section-title:hover {
  color: #8e8fc1;
}

.home-work-list,
.home-contact-rows {
  display: flex;
  flex-direction: column;
}

.home-work-row,
.home-contact-rows a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  position: relative;
  overflow: hidden;
}

.home-work-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background: #8e8fc1;
  transition: width 280ms ease;
}

.home-work-row:hover::after {
  width: 100%;
}

.home-work-row {
  padding: 1.15rem 0;
  cursor: pointer;
}

.home-work-row:last-child {
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
}

.home-work-left {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.home-work-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 28rem;
}

.home-work-index,
.home-soon-row strong,
.home-contact-rows strong {
  font-size: 0.82rem;
  color: #8d8c91;
  font-weight: 400;
}

.home-work-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  color: #111110;
  transition: color 180ms ease;
}

.home-work-summary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #8d8c91;
  max-width: 26rem;
}

.home-work-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.home-work-thumb-strip {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.home-work-thumb {
  width: 120px;
  aspect-ratio: 0.84;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(17, 17, 16, 0.12);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 17, 16, 0.08);
  flex-shrink: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-work-thumb.is-offset {
  transform: translateY(14px);
}

.home-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-work-tags {
  display: flex;
  gap: 0.35rem;
}

.home-work-tags span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8d8c91;
  padding: 0.22rem 0.55rem;
  border: 0.5px solid rgba(17, 17, 16, 0.12);
  transition: color 180ms ease, border-color 180ms ease;
}

.home-work-arrow {
  font-size: 1.2rem;
  color: #8d8c91;
  transition: transform 180ms ease, color 180ms ease;
}

.home-work-row:hover .home-work-title,
.home-work-row:hover .home-work-arrow {
  color: #8e8fc1;
}

.home-work-row:hover .home-work-thumb {
  transform: translateY(-3px) rotate(-1deg);
  border-color: rgba(142, 143, 193, 0.28);
  box-shadow: 0 10px 28px rgba(17, 17, 16, 0.08);
}

.home-work-row:hover .home-work-arrow {
  transform: translate(3px, -3px);
}

.home-work-row:hover .home-work-tags span {
  color: #8e8fc1;
  border-color: rgba(142, 143, 193, 0.3);
}

.home-soon-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
}

.home-soon-row div {
  flex: 1;
  height: 0.5px;
  background: repeating-linear-gradient(90deg, rgba(17, 17, 16, 0.16) 0, rgba(17, 17, 16, 0.16) 5px, transparent 5px, transparent 11px);
}

.home-soon-row span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 17, 16, 0.28);
}

.home-marquee {
  overflow: hidden;
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  padding: 0.65rem 0;
  margin-top: 2rem;
}

.home-marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.home-marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: #8d8c91;
}

.home-marquee-item i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(17, 17, 16, 0.18);
  display: inline-block;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0.5px solid rgba(17, 17, 16, 0.1);
  margin-bottom: 1.5rem;
}

.home-service-card {
  padding: 1.35rem;
  border-right: 0.5px solid rgba(17, 17, 16, 0.1);
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  transition: background-color 180ms ease;
}

.home-service-card:nth-child(2n) {
  border-right: none;
}

.home-service-card:nth-last-child(-n + 2) {
  border-bottom: none;
}

.home-service-card:hover {
  background: rgba(142, 143, 193, 0.05);
}

.home-service-card:nth-child(2):hover {
  background: rgba(122, 140, 119, 0.06);
}

.home-service-card:nth-child(3):hover {
  background: rgba(217, 185, 173, 0.07);
}

.home-service-card p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #8d8c91;
  margin-bottom: 0.7rem;
}

.home-service-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: #111110;
  margin: 0 0 0.45rem;
}

.home-service-card span {
  display: block;
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-pr-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.home-pr-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0.5px solid rgba(17, 17, 16, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(141, 140, 145, 0.65);
  flex-shrink: 0;
  transition: transform 180ms ease, border-color 180ms ease;
}

.home-pr-badge:hover {
  transform: rotate(14deg);
  border-color: rgba(142, 143, 193, 0.28);
}

.home-pr-intro p {
  font-size: 1.18rem;
  line-height: 1.9;
  max-width: 420px;
  margin: 0;
}

.home-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: #7a8c77;
  border: 0.5px solid rgba(122, 140, 119, 0.28);
  padding: 0.35rem 0.8rem;
  margin-top: 1rem;
}

.home-availability span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7a8c77;
  animation: pulse 2s ease infinite;
}

.home-contact-title {
  font-size: clamp(3.3rem, 6vw, 5rem);
  margin: 0 0 0.8rem;
}

.home-contact-sub {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #8d8c91;
}

.home-contact-rows a {
  padding: 1rem 0;
  color: #111110;
  transition: color 180ms ease;
}

.home-contact-rows a:last-child {
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
}

.home-contact-rows a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: rgba(142, 143, 193, 0.04);
  transition: width 280ms ease;
}

.home-contact-rows a:hover::before {
  width: 100%;
}

.home-contact-rows a span,
.home-contact-rows a i {
  position: relative;
  z-index: 1;
}

.home-contact-rows a span {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.home-contact-rows a i {
  font-style: normal;
  color: #8d8c91;
  transition: transform 180ms ease, color 180ms ease;
}

.home-contact-rows a:hover {
  color: #8e8fc1;
}

.home-contact-rows a:hover i {
  color: #8e8fc1;
  transform: translateX(6px);
}

.home-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  margin-top: 1rem;
}

.home-footer-bar span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.3rem;
  color: #8d8c91;
  font-style: italic;
}

.contact-home-title {
  max-width: 12ch;
}

.contact-home-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  border-left: 0.5px solid rgba(17, 17, 16, 0.1);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-home-form label {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
  border-right: 0.5px solid rgba(17, 17, 16, 0.1);
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  color: #8d8c91;
}

.contact-home-form .contact-home-hidden {
  display: none !important;
}

.contact-home-form label span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-home-form-wide {
  grid-column: 1 / -1;
}

.contact-home-form input,
.contact-home-form select,
.contact-home-form textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #111110;
  padding: 0;
  outline: none;
}

.contact-home-form input,
.contact-home-form select {
  min-height: 2.3rem;
}

.contact-home-form textarea {
  resize: vertical;
  line-height: 1.7;
}

.contact-home-form input::placeholder,
.contact-home-form textarea::placeholder {
  color: rgba(141, 140, 145, 0.78);
}

.contact-home-form label:focus-within {
  background: rgba(142, 143, 193, 0.05);
}

.contact-home-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border: none;
  border-right: 0.5px solid rgba(17, 17, 16, 0.1);
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  background: transparent;
  color: #111110;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: color 180ms ease;
}

.contact-home-submit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: rgba(142, 143, 193, 0.06);
  transition: width 280ms ease;
}

.contact-home-submit:hover::before {
  width: 100%;
}

.contact-home-submit span,
.contact-home-submit i {
  position: relative;
  z-index: 1;
}

.contact-home-submit span {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.contact-home-submit strong {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d8c91;
  font-weight: 400;
}

.contact-home-submit i {
  font-style: normal;
  color: #8d8c91;
  transition: transform 180ms ease, color 180ms ease;
}

.contact-home-submit:hover {
  color: #8e8fc1;
}

.contact-home-submit:hover i {
  color: #8e8fc1;
  transform: translateX(6px);
}

.contact-home .home-title span:hover,
.contact-home .home-contact-title:hover em,
.contact-home .home-tags span:hover,
.contact-home .home-tools span:hover,
.contact-home .home-contact-rows a:hover i,
.contact-home .contact-home-submit:hover i {
  transform: none;
}

@keyframes homeGrow {
  0%,
  100% {
    width: 10px;
    opacity: 0.3;
  }
  50% {
    width: 28px;
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  body.home-editorial {
    overflow: auto;
  }

  .home-layout {
    display: block;
    height: auto;
    padding: 1.25rem 1.25rem 3rem;
    width: auto;
  }

  .home-sidebar {
    width: 100%;
    height: auto;
    position: static;
    left: auto;
    border-right: none;
    border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
    padding: 0 0 1.5rem;
    gap: 1.5rem;
    background: transparent;
    backdrop-filter: none;
  }

  .home-main {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    width: auto;
    overflow: visible;
  }

  .home-section {
    min-height: auto;
    padding: 4rem 0;
  }
}

@media (max-width: 720px) {
  .home-layout {
    padding: 1rem 1rem 2.5rem;
  }

  .home-sidebar-nav a.is-active::before,
  .home-circle,
  .home-star,
  .home-gradient {
    display: none;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-service-card:nth-child(2n) {
    border-right: none;
  }

  .home-service-card:nth-last-child(-n + 2) {
    border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
  }

  .home-service-card:last-child {
    border-bottom: none;
  }

  .home-work-row,
  .home-contact-rows a {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-work-preview {
    width: 100%;
    align-items: flex-start;
    margin-left: 0;
  }

  .home-work-thumb {
    width: 100%;
    max-width: 180px;
  }

  .home-work-tags {
    flex-wrap: wrap;
  }

  .contact-home-form {
    grid-template-columns: 1fr;
  }

  .contact-home-form-wide {
    grid-column: auto;
  }
}

.collection-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(179, 184, 238, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(217, 185, 173, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%);
}

.collection-layout {
  width: min(calc(100vw - 2rem), 1480px);
  margin: 0 auto;
  padding: 0 1rem 3rem;
  display: flex;
  gap: 3rem;
}

.collection-sidebar {
  width: 250px;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 0.5px solid rgba(17, 17, 16, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection-sidebar-top {
  margin-bottom: 1rem;
}

.collection-sidebar-name {
  display: inline-block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  color: #111110;
}

.collection-sidebar-role {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0.45rem 0 0;
  color: #8d8c91;
}

.collection-sidebar-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
  margin: 2rem 0 0;
}

.collection-sidebar-deco {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.9rem;
}

.collection-star-small {
  width: 14px;
  height: 14px;
  color: rgba(141, 140, 145, 0.65);
  flex-shrink: 0;
}

.collection-sidebar-text {
  margin: 0;
  line-height: 1.7;
  font-size: 1.12rem;
  color: #8d8c91;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}

.collection-sidebar-nav {
  display: flex;
  flex-direction: column;
}

.collection-sidebar-nav a {
  padding: 0.85rem 0;
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: #8d8c91;
}

.collection-sidebar-nav a:last-child {
  border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
}

.collection-main {
  flex: 1;
  padding-top: 2.5rem;
}

.collection-shell {
  display: grid;
  gap: 2rem;
}

.collections-index .collection-main {
  display: grid;
  gap: 2rem;
}

.collection-hero-index {
  min-height: auto;
  padding: 0.5rem 0 0.25rem;
}

.collection-hero-index .collection-hero-copy {
  max-width: 36rem;
}

.collection-hero-index .collection-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.collection-index-list {
  display: grid;
  gap: 1.25rem;
}

.collection-index-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-index-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(161, 159, 224, 0.24);
}

.collection-index-copy {
  display: grid;
  gap: 0.75rem;
}

.collection-index-copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.collection-index-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.collection-index-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.collection-index-gallery .collection-thumb {
  min-height: 9.5rem;
}

.contact-hero-editorial {
  min-height: auto;
  padding: 1rem 0 0.75rem;
}

.contact-hero-editorial .collection-hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

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

.contact-editorial-card,
.contact-editorial-form-wrap {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-editorial-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.6rem;
}

.contact-editorial-card a,
.contact-editorial-card strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--text);
  font-weight: 500;
}

.contact-editorial-card span,
.contact-editorial-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-editorial-form-wrap {
  margin-top: 1rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-editorial-intro {
  display: grid;
  gap: 0.9rem;
}

.contact-editorial-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.contact-form-editorial {
  grid-column: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.collection-page h1,
.collection-page h2,
.collection-page h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

.collection-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  min-height: 76vh;
}

.collection-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.collection-hero-copy h1 {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
}

.collection-hero-copy .lede,
.collection-note p,
.collection-detail p,
.collection-caption,
.collection-art-card small {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.collection-hero-split,
.collection-hero-identity {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
}

.collection-hero-editorial {
  gap: 1.25rem;
}

.collection-hero-campaign {
  min-height: auto;
  padding: 4rem 0 1rem;
}

.collection-banner {
  display: grid;
  gap: 0.75rem;
}

.collection-banner h1 {
  font-size: clamp(4rem, 8vw, 7rem);
}

.collection-caption {
  max-width: 34rem;
}

.collection-hero-stack,
.collection-mosaic,
.collection-editorial-grid,
.collection-grid-identity,
.collection-poster-wall,
.collection-details {
  display: grid;
  gap: 1rem;
}

.collection-hero-stack {
  grid-template-columns: 1fr 0.8fr;
}

.collection-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  align-items: start;
}

.collection-note,
.collection-detail,
.collection-art-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.collection-note,
.collection-detail,
.collection-art-card {
  padding: 1.5rem;
}

.collection-note {
  display: grid;
  gap: 1rem;
}

.collection-note h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.collection-mosaic-launch {
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
}

.collection-editorial-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.collection-grid-identity,
.collection-poster-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-art {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  min-height: 18rem;
}

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

.collection-art-tall {
  min-height: 38rem;
}

.collection-wide-art {
  min-height: 30rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-wide-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-art-card {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 227, 243, 0.78));
}

.collection-art-card span {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.collection-detail h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.collection-launch {
  background:
    radial-gradient(circle at top right, rgba(217, 185, 173, 0.22), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #f7f3ee 100%);
}

.collection-editorial {
  background:
    radial-gradient(circle at top left, rgba(224, 220, 209, 0.28), transparent 26%),
    linear-gradient(180deg, #faf8f3 0%, #f1ede5 100%);
}

.collection-editorial .collection-shell {
  max-width: 1180px;
}

.collection-editorial .collection-art-card {
  background: linear-gradient(180deg, rgba(241, 236, 225, 0.9), rgba(231, 224, 212, 0.92));
}

.collection-campaign {
  background:
    radial-gradient(circle at center, rgba(161, 159, 224, 0.2), transparent 22%),
    linear-gradient(180deg, #faf8fd 0%, #f3eef7 100%);
}

.collection-identity {
  background:
    radial-gradient(circle at bottom left, rgba(122, 140, 119, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfaf6 0%, #f1eee7 100%);
}

/* ── Empty gallery state ── */
.collection-thumb-empty {
  display: block;
  border-radius: 18px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.07) 0px,
    rgba(161, 159, 224, 0.07) 6px,
    transparent 6px,
    transparent 14px
  );
  border: 1px dashed rgba(161, 159, 224, 0.28);
  min-height: 9.5rem;
}

.collection-index-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-index-empty-state {
  width: 100%;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 18px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.07) 0px,
    rgba(161, 159, 224, 0.07) 6px,
    transparent 6px,
    transparent 14px
  );
  border: 1px dashed rgba(161, 159, 224, 0.28);
}

.collection-index-empty-state span {
  font-size: 1.4rem;
  color: rgba(161, 159, 224, 0.45);
}

.collection-index-empty-state p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(142, 143, 193, 0.55);
}

/* Home work row empty thumb */
.home-work-thumb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 120px;
  height: 80px;
  border-radius: 10px;
  border: 1px dashed rgba(161, 159, 224, 0.3);
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.06) 0px,
    rgba(161, 159, 224, 0.06) 5px,
    transparent 5px,
    transparent 12px
  );
}

.home-work-thumb-empty span {
  font-size: 0.9rem;
  color: rgba(161, 159, 224, 0.45);
}

.home-work-thumb-empty p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(142, 143, 193, 0.5);
}

/* Mini Projects badge */
.collection-index-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.12rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(161, 159, 224, 0.14);
  border: 1px solid rgba(161, 159, 224, 0.3);
  color: var(--accent);
  vertical-align: middle;
  font-family: var(--sans);
  font-weight: 400;
}

.collection-index-card-mini {
  background: linear-gradient(135deg, rgba(255,255,255,0.76) 0%, rgba(232,229,252,0.62) 100%);
  border-color: rgba(161, 159, 224, 0.22);
}

/* Sub-collection list inside collection index card */
.collection-index-sub {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.collection-index-sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.collection-sub-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.15rem 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(161, 159, 224, 0.08);
  border: 1px solid rgba(161, 159, 224, 0.18);
  transition: background 180ms ease, border-color 180ms ease;
  text-decoration: none;
  color: var(--text);
}

.collection-sub-link:hover {
  background: rgba(161, 159, 224, 0.16);
  border-color: rgba(161, 159, 224, 0.35);
}

.collection-sub-link span {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #111110;
  grid-column: 1;
  grid-row: 1;
}

.collection-sub-link small {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.collection-sub-link i {
  grid-column: 2;
  grid-row: 1 / 3;
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  align-self: center;
  transition: transform 180ms ease, color 180ms ease;
}

.collection-sub-link:hover i {
  transform: translate(3px, -3px);
  color: var(--accent);
}

/* Home work sub-collection badge */
.home-work-sub-badge {
  display: inline-block;
  margin-left: 0.55rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(161, 159, 224, 0.12);
  border: 1px solid rgba(161, 159, 224, 0.25);
  color: var(--accent);
  vertical-align: middle;
  font-family: var(--sans);
  font-weight: 400;
}

/* ── Mini Projects collection page ── */
.collection-mini {
  background:
    radial-gradient(circle at top right, rgba(161, 159, 224, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(217, 185, 173, 0.12), transparent 24%),
    linear-gradient(180deg, #faf9ff 0%, #f0eef9 100%);
}

.collection-mini-hero {
  min-height: auto;
  padding: 4rem 0 1.5rem;
}

.collection-mini-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}

.collection-mini-sub-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(161, 159, 224, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease;
}

.collection-mini-sub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 159, 224, 0.38);
}

.collection-mini-sub-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0;
  line-height: 1;
}

.collection-mini-sub-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.collection-mini-sub-card .collection-mini-arrow {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 180ms ease, color 180ms ease;
  justify-self: end;
}

.collection-mini-sub-card:hover .collection-mini-arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}

.collection-mini-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 14rem;
  border-radius: 24px;
  border: 1px dashed rgba(161, 159, 224, 0.3);
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.05) 0px,
    rgba(161, 159, 224, 0.05) 6px,
    transparent 6px,
    transparent 16px
  );
  text-align: center;
  padding: 2rem;
}

.collection-mini-empty span {
  font-size: 2rem;
  color: rgba(161, 159, 224, 0.4);
}

.collection-mini-empty p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(142, 143, 193, 0.65);
}

.collection-mini-empty small {
  color: rgba(142, 143, 193, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ── Color Palettes sub-collection page ── */
.collection-palettes {
  background:
    radial-gradient(circle at 20% 20%, rgba(179, 184, 238, 0.22), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(217, 185, 173, 0.18), transparent 26%),
    radial-gradient(circle at 55% 50%, rgba(122, 140, 119, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfaff 0%, #f3f0f9 100%);
}

.collection-palettes-hero {
  min-height: auto;
  padding: 4rem 0 1.5rem;
}

.collection-palettes-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.collection-palettes-breadcrumb a {
  color: var(--muted);
  transition: color 180ms ease;
}

.collection-palettes-breadcrumb a:hover {
  color: var(--accent);
}

.collection-palettes-breadcrumb span {
  color: rgba(142, 143, 193, 0.45);
}

.collection-palettes-grid {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}

.collection-palettes-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 22rem;
  border-radius: 28px;
  border: 1px dashed rgba(161, 159, 224, 0.32);
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.05) 0px,
    rgba(161, 159, 224, 0.05) 6px,
    transparent 6px,
    transparent 16px
  );
  text-align: center;
  padding: 2.5rem;
}

.collection-palettes-empty-icon {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.collection-palettes-empty-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0.35;
}

.collection-palettes-empty h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  color: rgba(77, 74, 114, 0.6);
}

.collection-palettes-empty p {
  margin: 0;
  color: rgba(142, 143, 193, 0.65);
  line-height: 1.75;
  max-width: 28rem;
}

.collection-palettes-empty small {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(161, 159, 224, 0.45);
}

@media (max-width: 980px) {
  .collection-mini-sub-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Collection card with no gallery (empty collections) ── */
.collection-index-card-no-gallery {
  grid-template-columns: 1fr;
}

.collection-index-card-no-gallery .collection-index-copy {
  max-width: 36rem;
}

/* ── Collection coming-soon section (used on all empty collection pages) ── */
.collection-coming-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 3rem;
}

.collection-coming-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 26rem;
  border-radius: 28px;
  border: 1px dashed rgba(161, 159, 224, 0.32);
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.05) 0px,
    rgba(161, 159, 224, 0.05) 6px,
    transparent 6px,
    transparent 16px
  );
  text-align: center;
  padding: 2.5rem;
}

.collection-coming-state span {
  font-size: 2.2rem;
  color: rgba(161, 159, 224, 0.4);
}

.collection-coming-state p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(77, 74, 114, 0.55);
  line-height: 1.1;
}

.collection-coming-state small {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(142, 143, 193, 0.5);
  max-width: 20rem;
  line-height: 1.6;
}

/* ── Color Palettes live grid ── */
.collection-palettes-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}

.collection-palette-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.collection-palette-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 320ms ease;
}

.collection-palette-card:hover img {
  transform: scale(1.02);
}

.collection-palette-label {
  padding: 1rem 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border-top: 0.5px solid rgba(17, 17, 16, 0.1);
  display: grid;
  gap: 0.35rem;
}

.collection-palette-label span {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #111110;
  line-height: 1;
}

.collection-palette-label small {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--sans);
}

.collection-palette-coming {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 10rem;
  border: 1px dashed rgba(161, 159, 224, 0.32);
  background: repeating-linear-gradient(
    -45deg,
    rgba(161, 159, 224, 0.05) 0px,
    rgba(161, 159, 224, 0.05) 6px,
    transparent 6px,
    transparent 16px
  );
  border-radius: 26px;
  text-align: center;
  padding: 2rem;
}

.collection-palette-coming span {
  font-size: 1.6rem;
  color: rgba(161, 159, 224, 0.4);
}

.collection-palette-coming p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(77, 74, 114, 0.55);
}

.collection-palette-coming small {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(142, 143, 193, 0.5);
}

@media (max-width: 980px) {
  .collection-coming-section {
    grid-template-columns: 1fr;
  }
  .collection-palettes-live-grid {
    grid-template-columns: 1fr;
  }
}

/* ── End new styles ── */

@media (max-width: 980px) {
  .collection-layout {
    display: block;
    width: min(calc(100% - 1.5rem), 1480px);
  }

  .collection-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 0.5px solid rgba(17, 17, 16, 0.1);
    padding: 1.5rem 0 1.5rem;
    margin-bottom: 1.5rem;
  }

  .collection-main {
    padding-top: 0;
  }

  .collection-shell {
    width: 100%;
  }

  .collection-index-card {
    grid-template-columns: 1fr;
  }

  .contact-editorial-grid,
  .contact-editorial-form-wrap {
    grid-template-columns: 1fr;
  }

  .collection-hero-split,
  .collection-hero-identity,
  .collection-story,
  .collection-mosaic-launch,
  .collection-editorial-grid,
  .collection-grid-identity,
  .collection-poster-wall,
  .collection-details,
  .collection-hero-stack {
    grid-template-columns: 1fr;
  }

  .collection-art-tall,
  .collection-wide-art {
    min-height: 22rem;
  }
}
