:root {
  --bg-main: #120b1b;
  --bg-card: #171020;
  --bg-card-hover: #1d1427;
  --pink: #e789a9;
  --pink-strong: #d56e98;
  --pink-light: #f2b0c8;
  --text-primary: #f3eaf1;
  --text-secondary: #bdb3c1;
  --text-muted: #92899a;
  --border: #8b4968;
  --shadow: 0 16px 38px rgb(0 0 0 / 22%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--pink-light);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-main);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(70px, 10vw, 160px);
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(18 11 27 / 0), var(--bg-main) 88%);
}

.hero__image {
  width: 100%;
  height: clamp(330px, 40vw, 620px);
  object-fit: cover;
  object-position: center;
}

.site-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(38px, 7vw, 92px);
}

.intro-grid {
  display: grid;
  gap: 28px;
  padding-top: clamp(38px, 6vw, 86px);
}

.intro-grid > .section,
.profile-stack > .section {
  padding-block: 0;
}

.profile-stack {
  display: grid;
  gap: 34px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading.centered {
  justify-content: flex-start;
  text-align: left;
}

.heading-mark {
  display: none;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--pink);
  transform: translateY(-10px);
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h2,
h3 {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

h2 {
  color: var(--pink);
  font-size: clamp(1.85rem, 5vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
}

.copy {
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 700;
}

.copy p {
  margin: 0;
}

.copy p + p {
  margin-top: 16px;
}

.historic-photo {
  margin: 28px 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.historic-photo img {
  width: 100%;
  height: auto;
}

.reveal.is-armed {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.compact-section,
.contact-card,
.sample-card,
.work-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}

.compact-section {
  padding: 0;
  border: 0;
  background: transparent;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 24px;
}

.mini-card {
  padding: 0;
}

.mini-card p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  line-height: 1.35;
}

.mini-card .note {
  color: var(--text-secondary);
  font-weight: 400;
}

.feature-section {
  overflow: hidden;
}

.section-subtitle {
  max-width: none;
  margin: 0 0 28px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
}

.snap-row {
  display: flex;
  gap: 18px;
  margin-inline: 0;
  padding: 4px 0 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.snap-row::-webkit-scrollbar {
  display: none;
}

.sample-card,
.work-card {
  flex: 0 0 min(72vw, 215px);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.sample-card {
  padding: 0;
  text-align: center;
}

.sample-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #21152c;
  aspect-ratio: 1.33 / 1;
}

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

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(243 234 241 / 64%);
  border-radius: 50%;
  background: rgb(213 110 152 / 82%);
  color: var(--text-primary);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.play-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sample-title {
  margin: 0;
  padding: 14px 10px 16px;
  color: var(--text-secondary);
}

.work-card {
  flex-basis: min(82vw, 230px);
}

.work-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #21152c;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.work-content {
  padding: 12px 12px 16px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--pink-light);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.work-content h3 {
  text-transform: none;
}

.role,
.meta {
  margin: 5px 0 0;
  color: var(--text-secondary);
  line-height: 1.35;
}

.meta {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-card[aria-disabled="true"] {
  color: inherit;
  cursor: default;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--pink);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
}

.contact-value {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text-secondary);
  font-weight: 400;
}

@media (hover: hover) and (pointer: fine) {
  .sample-card:hover,
  .work-card:hover,
  .contact-card[href]:hover {
    border-color: var(--pink);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
  }

  .sample-card:hover .play-button,
  .play-button:hover {
    border-color: var(--pink-light);
    background: rgb(213 110 152 / 86%);
    transform: translate(-50%, -50%) scale(1.04);
  }

  .work-card:hover .work-image img {
    transform: scale(1.025);
  }
}

@media (min-width: 480px) {
  .mini-grid,
  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 600px) {
  .site-container {
    width: min(1180px, calc(100% - 40px));
  }

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

@media (min-width: 768px) {
  .snap-row {
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .sample-card {
    flex: 0 1 215px;
  }

  .work-card {
    flex: 0 1 230px;
  }

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

@media (min-width: 1024px) {
  .site-container {
    width: min(1540px, calc(100% - 120px));
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.72fr);
    align-items: start;
    gap: clamp(28px, 3vw, 56px);
  }

  .about .section-heading {
    margin-bottom: 54px;
  }

  .copy {
    max-width: 980px;
    font-size: clamp(1.05rem, 1.05vw, 1.24rem);
    line-height: 1.48;
  }

  .copy p + p {
    margin-top: 22px;
  }

  .historic-photo {
    max-width: 960px;
    margin-top: 32px;
  }

  .profile-stack {
    padding-top: 24px;
    gap: 40px;
  }

  .profile-stack .section-heading {
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 18px;
  }

  .profile-stack h2 {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 1.35vw, 1.5rem);
  }

  .profile-stack h3 {
    color: var(--text-primary);
    font-size: 0.98rem;
    text-transform: none;
  }

  .profile-stack .icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    transform: translateY(-16px);
  }

  .profile-stack .mini-grid {
    grid-template-columns: repeat(2, max-content);
    column-gap: 34px;
    padding-left: 60px;
  }

  .profile-stack .artistic-grid {
    grid-template-columns: repeat(3, max-content);
  }

  .profile-stack .mini-card {
    position: relative;
  }

  .profile-stack .mini-card:nth-child(even)::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: -17px;
    width: 1px;
    content: "";
    background: rgb(231 137 169 / 28%);
  }

  .artistic-grid .mini-card + .mini-card::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: -17px;
    width: 1px;
    content: "";
    background: rgb(231 137 169 / 28%);
  }

  .section {
    padding-block: 78px;
  }

  .feature-section {
    padding-block: 64px 86px;
  }

  .feature-section .section-heading {
    margin-bottom: 32px;
  }

  .feature-section h2 {
    font-size: clamp(2rem, 2.1vw, 2.45rem);
    font-weight: 500;
  }

  .sample-row {
    padding-top: 0;
  }

  .works-row {
    padding-top: 8px;
  }

  .contact-section {
    padding-block: 54px 72px;
  }
}

@media (min-width: 1400px) {
  .site-container {
    width: min(1280px, calc(100% - 120px));
  }
}

@media (min-width: 1800px) {
  .site-container {
    width: min(1500px, calc(100% - 360px));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal.is-armed {
    opacity: 1;
    transform: none;
  }
}
