:root {
  --cream: #fff8df;
  --paper: #fffdf4;
  --ink: #1d1d03;
  --muted: #6f6253;
  --line: #e9d7bd;
  --orange: #f6a13a;
  --orange-deep: #845400;
  --blue: #0c6780;
  --sky: #b9e9f7;
  --mint: #82db86;
  --black: #14130d;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 70px rgba(72, 48, 16, 0.14);
  --font-sans: "Avenir Next", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(246, 161, 58, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(185, 233, 247, 0.52), transparent 22rem),
    linear-gradient(180deg, var(--cream), #fffdf6 42%, #f9f2df 100%);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  padding: 0 14px 0 22px;
  border: 1px solid rgba(132, 84, 0, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(58, 39, 7, 0.08);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 244, 0.94);
  box-shadow: 0 18px 48px rgba(58, 39, 7, 0.12);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}

.brand small {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  justify-self: end;
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: #241805;
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 248, 223, 0.35);
  color: var(--cream);
}

.is-hidden {
  display: none !important;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: clamp(36px, 6vw, 92px);
  min-height: 100svh;
  padding: 132px clamp(24px, 6vw, 82px) 44px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(132, 84, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 84, 0, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 72%, transparent);
}

.hero-media {
  position: relative;
  align-self: center;
  min-width: 0;
  min-height: 630px;
}

.hero-portrait {
  position: absolute;
  right: 6%;
  bottom: 10px;
  z-index: 2;
  width: min(78%, 520px);
  max-height: 74svh;
  object-fit: contain;
  object-position: center top;
  clip-path: none;
  filter: drop-shadow(0 34px 38px rgba(21, 17, 7, 0.22));
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 1%;
  bottom: 24px;
  width: min(76%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(132, 84, 0, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(246, 161, 58, 0.52), rgba(185, 233, 247, 0.7)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  z-index: 3;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-a {
  left: 0;
  bottom: 12%;
  transform: rotate(-7deg);
}

.hero-card-b {
  right: -1%;
  top: 39%;
  transform: rotate(7deg);
}

.hero-disc {
  position: absolute;
  left: 10%;
  top: 12%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(128px, 18vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 1000;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  min-width: 0;
  max-width: 680px;
  padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.hero h1,
.profile-heading h2,
.section-heading h2,
.booking-card h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 1000;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-strip {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 22px;
  left: clamp(20px, 5vw, 72px);
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.35fr;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.metric-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 96px;
  overflow: hidden;
  padding: 22px 26px;
  text-align: center;
  border: 1px solid rgba(132, 84, 0, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: 0 16px 38px rgba(72, 48, 16, 0.08);
}

.metric-card::before {
  content: none;
}

.metric-feature,
.metric-wide {
  background: rgba(255, 253, 244, 0.82);
}

.hero-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.8vw, 34px) 0;
  border-block: 1px solid rgba(132, 84, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 248, 223, 0.05), transparent 22%, transparent 78%, rgba(255, 248, 223, 0.04)),
    radial-gradient(circle at 8% 12%, rgba(246, 161, 58, 0.28), transparent 24rem),
    radial-gradient(circle at 92% 70%, rgba(130, 219, 134, 0.16), transparent 22rem),
    var(--black);
  color: var(--cream);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 210px);
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), rgba(20, 19, 13, 0));
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), rgba(20, 19, 13, 0));
}

.ticker-inner {
  display: grid;
  gap: 11px;
}

.ticker-label {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 2px;
  color: rgba(255, 248, 223, 0.58);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.ticker-track {
  display: flex;
  width: max-content;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: marquee 34s linear infinite;
}

.ticker-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-right: 10px;
}

.ticker-track-alt {
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.86;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: clamp(52px, 5.6vw, 67px);
  padding: 8px clamp(13px, 1.55vw, 20px);
  border: 1px solid rgba(255, 248, 223, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 244, 0.98), rgba(255, 248, 223, 0.86)),
    var(--paper);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 44px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.ticker-item img {
  width: clamp(30px, 3.5vw, 43px);
  height: clamp(30px, 3.5vw, 43px);
  flex: 0 0 auto;
  object-fit: contain;
}

.ticker-item b {
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 900;
  line-height: 1;
}

.section {
  scroll-margin-top: 104px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(84px, 12vw, 146px) 0;
}

.profile-showcase {
  width: min(1240px, calc(100% - 40px));
}

.profile-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.profile-heading h2,
.section-heading h2,
.booking-card h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.profile-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}

.career-card,
.credential-card {
  border: 1px solid rgba(132, 84, 0, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 244, 0.68);
  box-shadow: 0 18px 52px rgba(72, 48, 16, 0.06);
}

.career-card {
  height: 100%;
  padding: clamp(28px, 4vw, 46px);
}

.profile-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.profile-title h3 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1;
}

.title-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  font-weight: 1000;
  line-height: 1;
}

.mark-orange {
  background: var(--orange);
}

.mark-green {
  background: var(--mint);
}

.career-timeline {
  position: relative;
  display: grid;
  gap: 40px;
  padding-left: 36px;
}

.career-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 2px;
  background: rgba(132, 84, 0, 0.12);
}

.career-item {
  position: relative;
}

.career-item::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: -40px;
  width: 10px;
  height: 10px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--orange-deep);
  box-shadow: 0 0 0 1px rgba(132, 84, 0, 0.16);
}

.career-item time {
  display: block;
  color: var(--orange-deep);
  font-size: 18px;
  font-weight: 900;
}

.career-item h4,
.credential-card h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.career-item p,
.credential-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.credential-side {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
}

.credential-card {
  min-height: 226px;
  padding: clamp(24px, 3vw, 34px);
}

.soft-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 22px;
  color: #443a2f;
}

.soft-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 245px;
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 244, 0.45);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--cream);
}

.work-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card.tall {
  grid-row: span 2;
}

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

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

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.72));
}

.work-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 248, 223, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.work-card h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.12;
}

.work-card p {
  margin: 8px 0 0;
  color: rgba(255, 248, 223, 0.84);
  font-size: 14px;
}

.photo-wall {
  width: min(1240px, calc(100% - 40px));
  padding-top: clamp(72px, 10vw, 128px);
}

.wall-mosaic {
  display: grid;
  grid-template-columns: 1.12fr 0.92fr 1.05fr 0.86fr;
  grid-template-rows: repeat(4, minmax(190px, 13vw));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.wall-feature,
.wall-tile,
.wall-video {
  border: 1px solid rgba(132, 84, 0, 0.16);
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: 0 18px 52px rgba(72, 48, 16, 0.06);
}

.wall-feature {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
}

.wall-feature img,
.wall-tile img,
.wall-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wall-feature::after,
.wall-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.wall-feature-copy {
  position: absolute;
  right: clamp(22px, 4vw, 36px);
  bottom: clamp(24px, 4vw, 40px);
  left: clamp(22px, 4vw, 36px);
  z-index: 2;
}

.wall-feature-copy span,
.wall-video-caption span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 1000;
}

.wall-feature-copy h3 {
  margin: 10px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.wall-feature-copy p {
  margin: 12px 0 0;
  color: rgba(255, 248, 223, 0.78);
}

.wall-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.tile-stage {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.tile-side {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.tile-event {
  grid-column: 4 / 5;
  grid-row: 3 / 5;
}

.tile-event img {
  object-position: 58% 24%;
}

.tile-cover {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.tile-cover img {
  object-position: center 12%;
}

.tile-brand {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

.tile-camera {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.tile-music {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.tile-fashion {
  grid-column: 3 / 4;
  grid-row: 4 / 5;
}

.wall-video {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 4 / 5;
  overflow: hidden;
  color: var(--cream);
}

.wall-tile img,
.wall-video video {
  transition: transform 600ms ease;
}

.wall-tile:hover img,
.wall-video:hover video {
  transform: scale(1.04);
}

.wall-tile figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 248, 223, 0.32);
  border-radius: 999px;
  background: rgba(20, 19, 13, 0.58);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.wall-video-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.wall-video-caption strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
}

.quote-band {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 64px 24px;
  background:
    linear-gradient(rgba(20, 19, 13, 0.58), rgba(20, 19, 13, 0.58)),
    url("assets/pdf-images/p13_01.webp") center / cover fixed;
  color: var(--cream);
}

.quote-band p {
  max-width: 980px;
  margin: 0;
  text-align: center;
  font-size: clamp(42px, 8vw, 118px);
  font-weight: 1000;
  line-height: 1;
}

.stage-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

.stage-photo {
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-lg);
  background: var(--black);
}

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

.stage-photo img.stage-focus-left {
  object-position: 18% center;
}

.stage-list {
  display: grid;
  gap: 14px;
}

.stage-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 244, 0.75);
}

.stage-item span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 1000;
}

.stage-item h3 {
  margin: 0;
  font-size: 24px;
}

.stage-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.artist-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.artist-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.8);
  color: #403524;
  font-weight: 800;
}

.booking {
  scroll-margin-top: 104px;
  padding: clamp(70px, 9vw, 110px) 20px;
  background: var(--black);
  color: var(--cream);
}

.booking-card {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  min-height: clamp(360px, 31vw, 440px);
  padding: clamp(28px, 4.4vw, 54px);
  padding-right: clamp(28px, 26vw, 330px);
  border: 1px solid rgba(255, 248, 223, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(246, 161, 58, 0.16), transparent 45%),
    linear-gradient(315deg, rgba(12, 103, 128, 0.22), transparent 42%),
    #1a1810;
}

.booking-card h2 {
  max-width: 820px;
  font-size: clamp(26px, 3.2vw, 42px);
}

.booking-card p:not(.section-kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 248, 223, 0.78);
  font-size: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.booking-qr {
  position: absolute;
  right: clamp(28px, 4.4vw, 54px);
  top: 50%;
  width: clamp(170px, 17vw, 246px);
  aspect-ratio: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 6vw, 82px);
  background: var(--black);
  color: rgba(255, 248, 223, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 112px;
  }

  .hero-copy {
    order: 1;
    padding-bottom: 0;
  }

  .hero-media {
    order: 2;
    min-height: 560px;
    width: 100%;
    overflow: hidden;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }

  .profile-board,
  .stage-layout {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wall-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(11, 128px);
  }

  .wall-feature {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
    min-height: 520px;
  }

  .tile-stage {
    grid-column: 5 / 7;
    grid-row: 1 / 5;
  }

  .tile-side {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
  }

  .tile-event {
    grid-column: 5 / 7;
    grid-row: 7 / 10;
  }

  .tile-brand {
    grid-column: 5 / 7;
    grid-row: 5 / 7;
  }

  .tile-camera {
    grid-column: 3 / 5;
    grid-row: 5 / 8;
  }

  .tile-cover {
    grid-column: 5 / 7;
    grid-row: 7 / 10;
  }

  .tile-music {
    grid-column: 3 / 5;
    grid-row: 8 / 10;
  }

  .tile-fashion {
    grid-column: 1 / 4;
    grid-row: 10 / 12;
  }

  .wall-video {
    grid-column: 4 / 7;
    grid-row: 10 / 12;
  }

  .work-card.large,
  .work-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stage-photo {
    min-height: 420px;
  }

  .booking-card {
    min-height: auto;
    padding-right: clamp(28px, 4.4vw, 54px);
  }

  .booking-qr {
    position: static;
    width: min(246px, 100%);
    margin-top: 34px;
    transform: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    padding-left: 18px;
    padding-right: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 96px 14px 34px;
    min-height: auto;
    width: 100%;
    max-width: 100vw;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.08;
    line-break: anywhere;
    word-break: break-all;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-media {
    margin-top: 4px;
    min-height: clamp(520px, 142vw, 680px);
    overflow: visible;
  }

  .hero-portrait {
    bottom: 0;
    right: 0;
    width: min(86vw, 350px);
    max-height: none;
    clip-path: none;
  }

  .hero-media::after {
    right: -5%;
    bottom: 28px;
    width: min(86vw, 360px);
  }

  .hero-card {
    width: clamp(100px, 30vw, 124px);
    border-width: 5px;
    border-radius: 16px;
  }

  .hero-card-a {
    left: 0;
    bottom: 7%;
  }

  .hero-card-b {
    right: 0;
    top: 46%;
  }

  .hero-disc {
    left: 2%;
    top: 14%;
    width: 92px;
    font-size: 25px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
  }

  .metric-card {
    min-height: 78px;
    padding: 14px 10px;
    border-radius: 14px;
  }

  .hero-strip strong {
    font-size: 22px;
  }

  .hero-strip span {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.25;
  }

  .ticker {
    padding: 17px 0;
    min-height: 0;
    max-height: 220px;
  }

  .ticker-inner {
    gap: 8px;
  }

  .ticker-label {
    width: min(100% - 28px, 1180px);
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .ticker-track {
    min-width: max-content;
    animation-duration: 26s;
  }

  .ticker-sequence {
    gap: 7px;
    padding-right: 7px;
  }

  .ticker-track-alt {
    animation-duration: 32s;
  }

  .ticker-item {
    min-height: 43px;
    gap: 7px;
    padding: 7px 11px;
  }

  .ticker-item img {
    width: 28px;
    height: 28px;
  }

  .ticker-item b {
    font-size: 12px;
  }

  .profile-showcase {
    width: min(100% - 28px, 1240px);
  }

  .profile-heading {
    margin-bottom: 24px;
  }

  .profile-heading h2,
  .section-heading h2,
  .booking-card h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .career-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .profile-title {
    gap: 12px;
    margin-bottom: 24px;
  }

  .profile-title h3 {
    font-size: 28px;
  }

  .title-mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .career-timeline {
    gap: 28px;
    padding-left: 28px;
  }

  .career-item::before {
    left: -32px;
  }

  .credential-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .credential-card {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .section {
    scroll-margin-top: 78px;
    width: min(100% - 28px, 1180px);
    padding-block: 64px;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-note {
    max-width: none;
    margin-top: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .work-card {
    min-height: 292px;
    border-radius: 18px;
  }

  .work-card.large {
    min-height: 340px;
  }

  .work-card div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .work-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .photo-wall {
    width: min(100% - 28px, 1240px);
  }

  .wall-feature {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .wall-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .wall-feature,
  .wall-tile,
  .wall-video,
  .tile-stage,
  .tile-side,
  .tile-event,
  .tile-brand,
  .tile-camera,
  .tile-cover,
  .tile-music,
  .tile-fashion {
    grid-column: auto;
    grid-row: auto;
  }

  .wall-feature,
  .tile-music,
  .tile-brand {
    grid-column: 1 / -1;
  }

  .wall-tile,
  .wall-video {
    position: relative;
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
  }

  .tile-side,
  .tile-stage,
  .tile-camera,
  .tile-cover {
    aspect-ratio: 3 / 4;
  }

  .wall-tile img,
  .wall-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wall-tile figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .wall-video {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(76vw, 320px);
    aspect-ratio: 16 / 10;
  }

  .wall-feature-copy {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .wall-feature-copy h3 {
    font-size: 27px;
  }

  .wall-feature-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .quote-band {
    min-height: 260px;
    padding: 56px 18px;
    background-attachment: scroll;
  }

  .quote-band p {
    font-size: clamp(38px, 15vw, 58px);
  }

  .stage-item {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 22px;
  }

  .stage-photo {
    min-height: 340px;
    border-radius: 18px;
  }

  .artist-cloud span {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }

  .booking {
    scroll-margin-top: 78px;
    padding: 56px 14px;
  }

  .booking-card {
    padding: 24px;
    border-radius: 18px;
  }

  .booking-card p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .booking-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .booking-actions .button {
    width: 100%;
  }

  .booking-qr {
    width: min(190px, 72vw);
    margin: 24px auto 0;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    padding: 24px 18px;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(28px, 8.6vw, 32px);
  }

  .hero-media {
    min-height: clamp(500px, 148vw, 640px);
  }

  .hero-portrait {
    width: min(86vw, 340px);
    max-height: none;
  }

  .hero-card {
    width: clamp(92px, 29vw, 112px);
  }

  .hero-disc {
    width: 84px;
    font-size: 23px;
  }

  .metric-card {
    min-height: 74px;
  }
}
