:root {
  --gold: #c9a84c;
  --gold-dark: #a8883a;
  --gold-light: #f0e6c8;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --linen: #f9f5ee;
  --white: #ffffff;
  --muted: #a7a39b;
  --hairline-dark: rgba(17, 17, 17, .18);
  --hairline-light: rgba(255, 255, 255, .17);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* Crisp interface icons replace platform-dependent emoji glyphs. */
.ui-icon { --ui-icon: none; display: inline-block; flex: 0 0 auto; width: 1em; height: 1em; background: currentColor; vertical-align: -.12em; -webkit-mask: var(--ui-icon) center / contain no-repeat; mask: var(--ui-icon) center / contain no-repeat; }
.ui-icon-up-right { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M8 5h11v11' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ui-icon-down { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16m-6-6 6 6 6-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ui-icon-up { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20V4m-6 6 6-6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ui-icon-left { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12H4m6-6-6 6 6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ui-icon-right { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16m-6-6 6 6-6 6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ui-icon-diamond { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 9 9-9 9-9-9 9-9Z' fill='black'/%3E%3C/svg%3E"); width: .48em; height: .48em; }
.ui-icon-lock { --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='10' width='14' height='10' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 2000; background: var(--gold); color: var(--ink); padding: 12px 18px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 82px; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, height .3s; }
.site-header.scrolled { height: 68px; background: rgba(17, 17, 17, .9); border-color: var(--hairline-light); backdrop-filter: blur(16px); }
.brand { justify-self: start; display: block; line-height: 1; }
.brand-logo { width: clamp(148px, 14vw, 210px); height: auto; }
.site-nav { display: flex; gap: clamp(20px, 2.4vw, 40px); }
.site-nav a, .header-book { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.site-nav a { color: rgba(255,255,255,.7); position: relative; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { right: 0; }
.mobile-nav-contact { display: none; }
.header-book { justify-self: end; border-bottom: 1px solid var(--gold); padding: 8px 0; }
.header-book span { color: var(--gold); margin-left: 8px; }
.menu-toggle { display: none; justify-self: end; position: relative; z-index: 1001; color: var(--white); background: transparent; border: 0; padding: 12px 0; cursor: pointer; }

.hero { min-height: 100svh; position: relative; padding: clamp(130px, 16vh, 180px) var(--gutter) 70px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); grid-template-rows: auto 1fr auto; overflow: hidden; background: radial-gradient(circle at 70% 28%, #312912 0, var(--ink) 30%, #090909 76%); }
.hero::after { content: ''; position: absolute; width: 38vw; height: 38vw; min-width: 340px; min-height: 340px; right: 5vw; top: 13vh; border: 1px solid rgba(201,168,76,.22); border-radius: 50%; }
.hero-noise { position: absolute; inset: 0; opacity: .32; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-kicker { grid-column: 1 / -1; align-self: start; z-index: 3; margin-bottom: 28px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .27em; text-transform: uppercase; }
.hero-title { grid-column: 1 / -1; align-self: center; z-index: 3; margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(70px, 13vw, 196px); line-height: .68; letter-spacing: -.065em; pointer-events: none; }
.title-line { display: block; }
.title-outline { margin-left: 10vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.68); }
.title-gold { margin-left: 4vw; color: var(--gold); font-style: italic; background: linear-gradient(110deg, var(--gold-dark), #f3da8d, var(--gold), #fff1b7, var(--gold-dark)); background-size: 250% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gold-shift 7s linear infinite; }
@keyframes gold-shift { to { background-position: 250% center; } }
.hero-portrait { position: absolute; z-index: 2; right: clamp(18px, 4vw, 70px); bottom: 0; width: min(42vw, 560px); height: min(78vh, 720px); margin: 0; overflow: hidden; border-left: 1px solid rgba(201,168,76,.25); transform: translate3d(0, var(--parallax, 0), 0); }
.hero-portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0, transparent 20%), linear-gradient(0deg, var(--ink) 0, transparent 28%); pointer-events: none; }
.hero-portrait img { height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.05); }
.hero-copy { grid-column: 1; z-index: 4; align-self: end; max-width: 520px; }
.hero-copy p { max-width: 430px; margin: 0 0 26px; color: rgba(255,255,255,.72); font-size: clamp(15px, 1.4vw, 19px); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.scroll-note { position: absolute; right: var(--gutter); bottom: 34px; z-index: 5; writing-mode: vertical-rl; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 26px; border: 1px solid transparent; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; transition: transform .25s, background .25s, color .25s, border-color .25s; cursor: pointer; }
.button:hover { transform: translateY(-3px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(201,168,76,.62); color: var(--gold); background: transparent; }
.button-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--charcoal); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-gold { color: var(--gold); border-color: rgba(201,168,76,.5); }
.text-link-dark { color: var(--ink); border-color: rgba(17,17,17,.35); }

.marquee { overflow: hidden; border-top: 1px solid var(--hairline-light); border-bottom: 1px solid var(--hairline-light); background: var(--ink); }
.marquee-track { display: flex; align-items: center; gap: 30px; width: max-content; padding: 16px 0; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 17px; white-space: nowrap; }
.marquee-track i { color: var(--gold); font-style: normal; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-dark, .section-linen, .section-gold { position: relative; padding: clamp(96px, 12vw, 170px) var(--gutter); }
.section-dark { background: var(--ink); color: var(--white); }
.section-linen { background: var(--linen); color: var(--ink); }
.section-gold { background: var(--gold); color: var(--ink); }
.section-number { position: absolute; top: 34px; left: var(--gutter); right: var(--gutter); padding-top: 12px; border-top: 1px solid currentColor; opacity: .55; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { margin: 0 0 20px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; }
.eyebrow-dark { color: var(--ink); }
.section-heading h2, .artist h2, .wigs h2, .color-story h2, .booking h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 7.5vw, 116px); font-weight: 400; letter-spacing: -.055em; line-height: .87; }
h2 em { color: var(--gold); font-weight: 400; }
.section-gold h2 em { color: var(--ink); }

.artist-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.artist-copy { max-width: 650px; }
.artist-lede { margin: 42px 0 22px; font-size: clamp(20px, 2vw, 28px); line-height: 1.35; }
.artist-copy > p:not(.eyebrow):not(.artist-lede) { max-width: 550px; color: rgba(255,255,255,.63); }
.credentials { list-style: none; margin: 38px 0; padding: 0; border-top: 1px solid var(--hairline-light); }
.credentials li { padding: 13px 0 13px 24px; border-bottom: 1px solid var(--hairline-light); position: relative; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.credentials li::before { content: ''; position: absolute; left: 2px; top: 50%; width: 6px; height: 6px; border: 1px solid var(--gold); transform: translateY(-50%) rotate(45deg); }
.artist-image { width: min(100%, 640px); margin: 0; position: relative; justify-self: end; }
.artist-portrait-frame { position: relative; isolation: isolate; padding: 0 28px 28px 0; }
.artist-portrait-frame::before { content: ''; position: absolute; z-index: -1; right: 0; bottom: 0; width: 72%; height: 72%; background: linear-gradient(145deg, var(--gold), #806622); }
.artist-portrait-frame::after { content: ''; position: absolute; inset: 0 28px 28px 0; pointer-events: none; background: linear-gradient(145deg, transparent 58%, rgba(201,168,76,.22)), linear-gradient(0deg, rgba(0,0,0,.28), transparent 34%); border: 1px solid rgba(255,255,255,.14); }
.artist-image img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; filter: saturate(.9) contrast(1.06); }
.portrait-monogram { position: absolute; z-index: 2; right: 10px; bottom: 5px; color: var(--ink); font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); font-style: italic; line-height: 1; }
.artist-image figcaption { margin-top: 12px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.image-reveal { overflow: hidden; }
.image-reveal::after { content: ''; position: absolute; inset: 0 0 28px; z-index: 2; background: var(--gold); transform-origin: bottom; transition: transform 1s cubic-bezier(.77,0,.18,1) .2s; }
.image-reveal.is-visible::after { transform: scaleY(0); }

.work .section-heading { max-width: 900px; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 30px); align-items: start; max-width: 1180px; margin: 80px auto 0; }
.work-card { grid-column: span 5; margin: 0; }
.work-card:nth-child(2) { grid-column: 8 / span 5; margin-top: 14vw; }
.work-card:nth-child(3) { grid-column: 2 / span 4; margin-top: 2vw; }
.work-card-wide { grid-column: 7 / span 6; margin-top: 12vw; }
.work-media { position: relative; overflow: hidden; background: #d9d2c5; box-shadow: 0 24px 70px rgba(31,24,14,.12); }
.work-media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 55%, rgba(255,240,190,.16)), linear-gradient(0deg, rgba(17,17,17,.16), transparent 34%); border: 1px solid rgba(17,17,17,.12); }
.work-media img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s; filter: saturate(.86); }
.work-card:nth-child(1) .work-media { clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%); }
.work-card:nth-child(2) .work-media { clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%); }
.work-card:nth-child(3) .work-media { clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%); }
.work-card:nth-child(4) .work-media { clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 86%); }
.work-card-wide .work-media img { aspect-ratio: 4 / 3; }
.work-card:hover img { transform: scale(1.035); filter: saturate(1.04); }
.work-card figcaption { display: grid; grid-template-columns: 36px 1fr; margin-top: 14px; border-top: 1px solid var(--hairline-dark); padding-top: 12px; }
.work-card figcaption span { grid-row: 1 / 3; color: var(--gold-dark); font-size: 10px; }
.work-card figcaption strong { font-family: var(--serif); font-size: clamp(22px, 2vw, 31px); font-weight: 400; line-height: 1; }
.work-card figcaption small { margin-top: 7px; color: #68645e; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.work-footer { margin-top: 90px; padding-top: 24px; border-top: 1px solid var(--hairline-dark); display: flex; justify-content: space-between; align-items: center; }
.work-footer p { font-family: var(--serif); font-size: 24px; }

.wigs-layout { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 140px); align-items: start; }
.wig-video { position: sticky; top: 100px; overflow: hidden; background: #222; box-shadow: 0 35px 90px rgba(0,0,0,.38); clip-path: polygon(0 0, 92% 0, 100% 6%, 100% 100%, 0 100%); }
.wig-video video { aspect-ratio: 9 / 16; max-height: 78vh; object-fit: cover; }
.wig-video::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.video-label { position: absolute; left: 18px; bottom: 18px; padding: 10px 13px; background: rgba(17,17,17,.85); backdrop-filter: blur(9px); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.video-toggle { position: absolute; z-index: 3; right: 18px; top: 18px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.4); background: rgba(17,17,17,.72); color: var(--white); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); cursor: pointer; }
.video-toggle:hover { border-color: var(--gold); color: var(--gold); }
.live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,168,76,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(201,168,76,0); } 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } }
.wigs-copy > p:not(.eyebrow) { max-width: 650px; margin: 34px 0; color: rgba(255,255,255,.66); font-size: 18px; }
.wig-paths { margin: 48px 0; border-top: 1px solid var(--hairline-light); }
.wig-paths article { display: grid; grid-template-columns: 42px minmax(150px, .7fr) 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--hairline-light); align-items: start; }
.wig-paths span { color: var(--gold); font-size: 9px; }
.wig-paths h3 { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); font-weight: 400; line-height: 1; }
.wig-paths p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; }
.wig-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 30px); margin-top: clamp(72px, 9vw, 130px); padding-top: 24px; border-top: 1px solid var(--hairline-light); }
.wig-process-card { margin: 0; }
.wig-process-card:nth-child(2) { margin-top: clamp(38px, 5vw, 78px); }
.wig-process-card > div { position: relative; overflow: hidden; background: #202020; }
.wig-process-card > div::after { content: ''; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(201,168,76,.22); background: linear-gradient(0deg, rgba(0,0,0,.22), transparent 38%); }
.wig-process-card img { aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s; }
.wig-process-card:nth-child(1) > div { clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%); }
.wig-process-card:nth-child(2) > div { clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%); }
.wig-process-card:nth-child(3) > div { clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%); }
.wig-process-card:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.03); }
.wig-process-card figcaption { display: flex; gap: 14px; padding-top: 12px; color: rgba(255,255,255,.72); border-top: 1px solid var(--hairline-light); font-family: var(--serif); font-size: clamp(17px, 1.6vw, 24px); }
.wig-process-card figcaption span { padding-top: 4px; color: var(--gold); font-family: var(--sans); font-size: 9px; }
.wig-campaign { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 120px); align-items: center; margin-top: clamp(100px, 14vw, 210px); padding-top: clamp(70px, 9vw, 130px); border-top: 1px solid var(--hairline-light); }
.wig-campaign-copy { max-width: 530px; }
.wig-campaign-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(45px, 5.7vw, 90px); font-weight: 400; letter-spacing: -.05em; line-height: .88; }
.wig-campaign-copy h3 em { color: var(--gold); font-weight: 400; }
.wig-campaign-copy > p:last-child { margin-top: 30px; color: rgba(255,255,255,.58); }
.campaign-stack { position: relative; min-height: min(72vw, 760px); perspective: 1200px; }
.campaign-card { position: absolute; width: min(58%, 470px); margin: 0; overflow: hidden; border: 1px solid rgba(201,168,76,.28); box-shadow: 0 38px 90px rgba(0,0,0,.45); transform-origin: 50% 100%; }
.campaign-card img { aspect-ratio: 1054 / 1492; object-fit: cover; }
.campaign-card-back { left: 4%; top: 2%; transform: rotate(-7deg); }
.campaign-card-front { right: 3%; bottom: 0; z-index: 2; transform: rotate(5deg); }
.campaign-stack::after { content: 'FRONT / FINISH'; position: absolute; right: 0; top: 4%; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 700; letter-spacing: .2em; writing-mode: vertical-rl; }

.color-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.color-copy { padding-top: 30px; }
.partner-logo { display: inline-block; width: min(300px, 76vw); margin: 0 0 28px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.partner-logo img { width: 100%; height: auto; object-fit: contain; }
.color-lede { font-family: var(--serif); font-size: clamp(24px, 2.5vw, 38px); line-height: 1.2; }
.color-copy > p:not(.color-lede) { max-width: 590px; }
.color-services { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0; }
.color-services span { padding: 10px 14px; border: 1px solid rgba(17,17,17,.4); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.color-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }

.services .section-heading { margin-bottom: 70px; }
.service-list { border-top: 1px solid var(--hairline-dark); }
.service-row { display: grid; grid-template-columns: 60px minmax(220px,.8fr) 1fr 40px; gap: 25px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--hairline-dark); transition: padding .3s, background .3s; }
.service-row:hover { padding-left: 18px; padding-right: 18px; background: var(--gold-light); }
.service-index { color: var(--gold-dark); font-size: 10px; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 44px); font-weight: 400; }
.service-row p { margin: 0; color: #67625a; font-size: 13px; }
.service-arrow { justify-self: end; font-size: 20px; transition: transform .25s; }
.service-row:hover .service-arrow { transform: translate(4px,-4px); }
.pricing-note { max-width: 640px; margin: 36px 0 0 auto; color: #6c675f; font-size: 11px; }

.reveal-feature { padding: clamp(100px, 12vw, 180px) var(--gutter); }
.reveal-feature-grid { display: grid; grid-template-columns: minmax(280px, .86fr) minmax(320px, 1.14fr); gap: clamp(48px, 9vw, 140px); align-items: center; }
.reveal-feature-media { margin: 0; position: relative; padding: 0 26px 26px 0; }
.reveal-feature-media::before { content: ''; position: absolute; z-index: -1; right: 0; bottom: 0; width: 58%; height: 58%; background: var(--gold); }
.reveal-feature-media img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; }
.reveal-feature-copy { max-width: 650px; }
.reveal-feature-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(48px, 6vw, 92px); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.reveal-feature-copy h2 em { color: var(--gold); font-weight: 400; }
.reveal-feature-copy > p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.66); font-size: 18px; }
.reveal-feature-list { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--hairline-light); }
.reveal-feature-list li { padding: 15px 0; border-bottom: 1px solid var(--hairline-light); color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 18px; }
.reveal-feature-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }

.king-statement { min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding-top: clamp(100px, 12vw, 170px); padding-bottom: clamp(100px, 12vw, 170px); isolation: isolate; background: radial-gradient(circle at 82% 22%, rgba(201,168,76,.16), transparent 27%), radial-gradient(circle at 74% 70%, rgba(201,168,76,.08), transparent 34%), linear-gradient(135deg, #080808 0%, #11100d 58%, #080808 100%); }
.king-statement-media { position: absolute; z-index: -3; inset: 0; overflow: hidden; }
.king-statement-media img { width: 100%; height: 118%; object-fit: cover; object-position: center 50%; filter: saturate(.65) contrast(1.14) brightness(.72); transform: scale(1.04); }
.king-statement-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.42), transparent 65%), repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(201,168,76,.07) 25%); }
.king-statement-copy { max-width: 900px; }
.king-statement-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 10vw, 154px); font-weight: 400; line-height: .76; letter-spacing: -.065em; }
.king-statement-copy h2 span, .king-statement-copy h2 em { display: block; }
.king-statement-copy h2 span:nth-child(2) { margin-left: 7vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75); }
.king-statement-copy h2 em { margin-left: 2vw; color: var(--gold); font-weight: 400; }
.king-statement-copy > p:not(.eyebrow) { max-width: 480px; margin: 42px 0 28px; color: rgba(255,255,255,.7); font-size: 17px; }
.king-statement-index { position: absolute; right: var(--gutter); bottom: 34px; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .2em; writing-mode: vertical-rl; }

.booking { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 140px); }
.booking-intro > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.62); font-size: 17px; }
.booking-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin: 34px 0 50px; }
.booking address { padding-top: 28px; border-top: 1px solid var(--hairline-light); color: rgba(255,255,255,.56); font-style: normal; font-size: 13px; line-height: 1.8; }
.booking .location-note { max-width: 460px; color: rgba(255,255,255,.4); font-size: 10px; line-height: 1.6; }
.consult-form { padding: clamp(24px, 4vw, 54px); border: 1px solid var(--hairline-light); background: #151515; }
.field { display: flex; flex-direction: column; margin-bottom: 24px; }
.field label, .consult-form legend { margin-bottom: 8px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 13px 0; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.3); border-radius: 0; outline: 0; background: transparent; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.consult-form fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice-grid label { position: relative; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid span { display: block; padding: 11px 13px; border: 1px solid var(--hairline-light); color: rgba(255,255,255,.62); font-size: 10px; text-align: center; cursor: pointer; }
.choice-grid input:checked + span { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.choice-grid input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 70px var(--gutter) 28px; background: #090909; border-top: 1px solid var(--hairline-light); }
.footer-feature { display: grid; grid-template-columns: 1fr minmax(230px, 340px); gap: clamp(50px, 9vw, 130px); align-items: center; padding-bottom: 70px; }
.footer-feature-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.55); }
.footer-wordmark { padding-bottom: 34px; color: var(--gold); font-family: var(--serif); font-size: clamp(54px, 9vw, 138px); line-height: .8; letter-spacing: -.065em; }
.footer-portrait { margin: 0; overflow: hidden; border: 1px solid rgba(201,168,76,.28); }
.footer-portrait img { height: auto; object-fit: contain; filter: sepia(.12) saturate(.72) contrast(1.06); transition: filter .5s, transform .7s cubic-bezier(.2,.8,.2,1); }
.footer-portrait:hover img { filter: saturate(1); }
.footer-portrait:hover img { transform: scale(1.025); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; padding: 36px 0; border-top: 1px solid var(--hairline-light); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid span { margin-bottom: 8px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-brand img { width: min(210px, 100%); height: auto; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { margin: 0; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.7; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--hairline-light); color: rgba(255,255,255,.38); font-size: 10px; }
.footer-bottom a:hover { color: var(--gold); }
.mobile-contact { display: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.gsap-ready .reveal { opacity: 1; transform: none; transition: none; }
.gsap-ready .image-reveal::after { transform: scaleY(0); transition: none; }
.title-line.reveal:nth-child(2) { transition-delay: .1s; }
.title-line.reveal:nth-child(3) { transition-delay: .2s; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 70px; }
  .site-header.scrolled, body.menu-open .site-header { background: rgba(17, 17, 17, .98); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-book { display: none; }
  .site-header > .menu-toggle { display: grid !important; position: fixed; right: var(--gutter); top: 13px; transform: none; grid-template-columns: auto 22px; gap: 6px 10px; align-items: center; min-width: 76px; padding: 10px 12px; color: var(--ink); background: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
  .menu-toggle span { grid-row: 1 / 3; }
  .menu-toggle i { width: 22px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-toggle[aria-expanded='true'] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 999; inset: 70px 0 auto; height: calc(100vh - 70px); height: calc(100dvh - 70px); padding: clamp(28px, 6vh, 50px) var(--gutter) 110px; overflow-y: auto; overscroll-behavior: contain; background: var(--ink); display: flex; flex-direction: column; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .3s, visibility .3s, transform .3s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); transition: none; }
  .site-nav a { flex: 0 0 auto; padding: clamp(15px, 2.5vh, 22px) 0; border-bottom: 1px solid var(--hairline-light); font-family: var(--serif); font-size: clamp(34px, 8vw, 52px); font-weight: 400; line-height: 1; letter-spacing: -.03em; text-transform: none; }
  .site-nav .mobile-nav-contact { display: block; color: var(--gold); }
  .site-nav a[aria-current='page'] { color: var(--gold); }
  .hero { grid-template-columns: 1fr; min-height: 900px; }
  .hero-title { font-size: clamp(76px, 21vw, 148px); line-height: .73; }
  .hero-portrait { width: min(70vw, 500px); height: 68vh; right: -40px; }
  .hero-copy { align-self: end; max-width: 380px; }
  .scroll-note { display: none; }
  .artist-grid, .wigs-layout, .color-grid, .booking, .wig-campaign, .reveal-feature-grid { grid-template-columns: 1fr; }
  .artist-copy { order: 1; }
  .artist-image { order: 2; width: min(100%, 620px); max-width: 620px; justify-self: center; }
  .wig-video { position: relative; top: auto; max-width: 560px; }
  .wig-video video { max-height: none; }
  .wig-process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wig-campaign { gap: 60px; }
  .campaign-stack { min-height: min(110vw, 760px); }
  .king-statement { min-height: 105svh; }
  .king-statement-media img { object-position: 58% 48%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-feature { grid-template-columns: 1fr minmax(200px, 280px); gap: 40px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 52px; }
  .brand-logo { width: 162px; }
  .hero { min-height: 780px; padding-top: 112px; padding-bottom: 45px; }
  .hero::after { right: -35vw; top: 23vh; }
  .hero-kicker { max-width: 270px; line-height: 1.6; }
  .hero-title { align-self: start; font-size: clamp(70px, 24vw, 105px); }
  .title-outline { margin-left: 4vw; }
  .title-gold { margin-left: 0; }
  .hero-portrait { width: 74vw; height: 45vh; right: -20vw; }
  .hero-portrait img { transform: scale(1.32); transform-origin: top center; }
  .hero-copy { max-width: 270px; }
  .hero-copy p { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { min-height: 48px; padding: 0 20px; }
  .artist-grid { gap: 0; }
  .artist-image { display: none; }
  .artist-portrait-frame { padding: 0 18px 18px 0; }
  .artist-portrait-frame::after { inset: 0 18px 18px 0; }
  .work-grid { display: grid; grid-template-columns: 1fr; gap: 38px; margin-top: 55px; }
  .work-card, .work-card:nth-child(2), .work-card:nth-child(3), .work-card-wide { grid-column: auto; margin-top: 0; }
  .work-card:nth-child(2), .work-card-wide { margin-top: 0; }
  .work-media { height: clamp(250px, 68vw, 340px); }
  .work-media img, .work-card-wide .work-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .work-card figcaption { grid-template-columns: 20px 1fr; }
  .work-card figcaption strong { font-size: 18px; }
  .work-card figcaption small { display: none; }
  .work-footer { align-items: flex-start; flex-direction: column; gap: 20px; }
  .wig-paths article { grid-template-columns: 28px 1fr; }
  .wig-paths p { grid-column: 2; }
  .wig-video video { width: 100%; height: min(118vw, 520px); aspect-ratio: auto; object-fit: cover; object-position: center 42%; }
  .wig-process-grid { grid-template-columns: 1fr; gap: 34px; }
  .wig-process-card:nth-child(2) { margin-top: 0; }
  .wig-process-card:nth-child(3) { grid-column: auto; width: 100%; margin-left: 0; }
  .wig-process-card > div { height: clamp(250px, 68vw, 340px); }
  .wig-process-card img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center 42%; }
  .wig-process-card figcaption { font-size: 15px; }
  .wig-campaign { margin-top: 100px; padding-top: 70px; }
  .wig-campaign-copy h3 { font-size: clamp(39px, 12vw, 54px); line-height: .94; }
  .campaign-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-height: 0; margin-top: 4px; perspective: none; }
  .campaign-card, .campaign-card-back, .campaign-card-front { position: relative; inset: auto; width: 100%; opacity: 1 !important; transform: none !important; box-shadow: 0 20px 45px rgba(0,0,0,.34); }
  .campaign-card img { width: 100%; height: clamp(230px, 72vw, 290px); aspect-ratio: auto; object-fit: cover; object-position: center top; }
  .campaign-stack::after { display: none; }
  .reveal-feature-media { width: min(82vw, 300px); justify-self: center; padding: 0 18px 18px 0; }
  .reveal-feature-media img { height: clamp(220px, 68vw, 270px); aspect-ratio: auto; object-position: center 43%; }
  .king-statement { min-height: 740px; }
  .king-statement-media img { height: 112%; object-position: 64% 45%; }
  .king-statement-shade { background: radial-gradient(circle at 84% 18%, rgba(201,168,76,.16), transparent 32%), repeating-linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(201,168,76,.07) 50%); }
  .king-statement-copy { align-self: center; }
  .king-statement-copy h2 { font-size: clamp(58px, 18vw, 95px); }
  .king-statement-copy h2 span:nth-child(2) { margin-left: 0; }
  .king-statement-copy h2 em { margin-left: 0; }
  .king-statement-index { display: none; }
  .service-row { grid-template-columns: 30px 1fr 24px; gap: 12px; }
  .service-row p { grid-column: 2 / -1; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .choice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-feature { grid-template-columns: 1fr; }
  .footer-portrait { width: min(82vw, 360px); }
  .footer-bottom { gap: 18px; flex-direction: column; }
  .mobile-contact { position: fixed; display: grid; grid-template-columns: 1fr 1fr; z-index: 1200; left: 0; right: 0; bottom: 0; height: 52px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transition: transform .25s ease; }
  .mobile-contact a { display: flex; align-items: center; justify-content: center; }
  .mobile-contact a + a { border-left: 1px solid rgba(17,17,17,.35); }
  body.menu-open .mobile-contact { transform: translateY(100%); pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .image-reveal::after { display: none; }
  .king-statement-media img { transform: none; }
}
