@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap");

:root{
  --ink:#000;
  --soft-ink:#000;
  --muted:#000;
  --paper:#f2e3c8;
  --cream:#f2e3c8;
  --gold:#f3cf72;
  --gold-2:#f3cf72;
  --green:#243b2f;
  --line:rgba(0,0,0,.14);
  --shadow:0 24px 70px rgba(0,0,0,.18);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  min-height:100%;
  scroll-behavior:smooth;
  background:var(--paper);
}

body{
  min-height:100%;
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:"Nunito Sans", sans-serif;
  text-rendering:optimizeLegibility;
}

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

img,
video{
  max-width:100%;
}

.video-vignette{
  position:relative;
  overflow:hidden;
  background:#000;
}

.video-vignette::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 32%, rgba(0,0,0,.34) 66%, rgba(0,0,0,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,0) 28%, rgba(0,0,0,0) 66%, rgba(0,0,0,.46));
  mix-blend-mode:multiply;
}

.video-vignette video,
.video-vignette iframe{
  position:relative;
  z-index:1;
}

.site-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:16px clamp(18px, 4vw, 58px);
  border-bottom:1px solid rgba(0,0,0,.14);
  background:rgba(242,227,200,.94);
  -webkit-backdrop-filter:blur(24px);
  backdrop-filter:blur(24px);
}

.brand-mark{
  position:relative;
  width:clamp(168px, 16vw, 240px);
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  transition:transform 180ms ease;
}

.brand-mark::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-13px;
  height:15px;
  background-color:var(--ink);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 24'%3E%3Cpath d='M4 16 C32 8 55 20 84 13 S140 7 176 14' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cellipse cx='64' cy='11' rx='7' ry='3.6' transform='rotate(-31 64 11)' fill='black'/%3E%3Cellipse cx='104' cy='12' rx='6.8' ry='3.4' transform='rotate(27 104 12)' fill='black'/%3E%3Cellipse cx='142' cy='10' rx='7' ry='3.5' transform='rotate(-24 142 10)' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 24'%3E%3Cpath d='M4 16 C32 8 55 20 84 13 S140 7 176 14' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cellipse cx='64' cy='11' rx='7' ry='3.6' transform='rotate(-31 64 11)' fill='black'/%3E%3Cellipse cx='104' cy='12' rx='6.8' ry='3.4' transform='rotate(27 104 12)' fill='black'/%3E%3Cellipse cx='142' cy='10' rx='7' ry='3.5' transform='rotate(-24 142 10)' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1000ms cubic-bezier(.2,.8,.2,1);
}

.brand-mark:hover,
.brand-mark:focus-visible{
  transform:translateY(-2px);
}

.brand-mark:hover::after,
.brand-mark:focus-visible::after{
  clip-path:inset(0 0 0 0);
}

.brand-mark:active{
  transform:translateY(0);
}

.brand-mark img{
  width:100%;
  height:auto;
  display:block;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  gap:4px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:50%;
  background:rgba(255,255,255,.9);
  cursor:pointer;
}

.menu-toggle span{
  width:18px;
  height:2px;
  display:block;
  background:#000;
  transition:transform 180ms ease, opacity 180ms ease;
}

.site-nav.is-open .menu-toggle span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.site-nav.is-open .menu-toggle span:nth-child(2){
  opacity:0;
}

.site-nav.is-open .menu-toggle span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.primary-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(18px, 2.4vw, 34px);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.primary-nav a{
  position:relative;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--ink);
  text-align:center;
  line-height:1.05;
  transition:transform 180ms ease, color 180ms ease;
}

.primary-nav a::after{
  content:"";
  position:absolute;
  left:-4px;
  right:-4px;
  bottom:-8px;
  height:14px;
  background-color:var(--ink);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 22'%3E%3Cpath d='M3 14 C26 7 45 18 70 12 S118 7 147 13' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cellipse cx='51' cy='10' rx='6.4' ry='3.2' transform='rotate(-31 51 10)' fill='black'/%3E%3Cellipse cx='89' cy='12' rx='6.2' ry='3.1' transform='rotate(27 89 12)' fill='black'/%3E%3Cellipse cx='121' cy='9' rx='6.2' ry='3.1' transform='rotate(-24 121 9)' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 22'%3E%3Cpath d='M3 14 C26 7 45 18 70 12 S118 7 147 13' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Cellipse cx='51' cy='10' rx='6.4' ry='3.2' transform='rotate(-31 51 10)' fill='black'/%3E%3Cellipse cx='89' cy='12' rx='6.2' ry='3.1' transform='rotate(27 89 12)' fill='black'/%3E%3Cellipse cx='121' cy='9' rx='6.2' ry='3.1' transform='rotate(-24 121 9)' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1000ms cubic-bezier(.2,.8,.2,1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible{
  transform:translateY(-2px);
  color:var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  clip-path:inset(0 0 0 0);
}

.primary-nav .nav-cta{
  min-height:44px;
  padding:0 22px;
  border-radius:12px;
  background:var(--green);
  color:#fff;
}

.primary-nav .nav-cta::after{
  display:none;
}

.page-main{
  flex:1;
}

.section-wrap{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.hero-market{
  position:relative;
  overflow:hidden;
  min-height:clamp(500px, 72vh, 680px);
  display:grid;
  align-items:stretch;
  background:var(--gold-2);
}

.hero-inner{
  position:relative;
  z-index:1;
  width:100%;
  min-height:inherit;
  margin:0;
  display:grid;
  grid-template-columns:41% 59%;
  gap:0;
  align-items:center;
  padding:0;
}

.page-main > section{
  position:relative;
  overflow:hidden;
}

.page-main > section > *{
  position:relative;
  z-index:1;
}

.hero-copy{
  display:grid;
  gap:18px;
  align-self:start;
  padding:clamp(34px, 7vh, 72px) clamp(20px, 5vw, 58px);
  max-width:520px;
}

.eyebrow{
  margin:0;
  color:var(--ink);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-copy h1,
.page-hero h1{
  margin:0;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(20px, 2.45vw, 36px);
  font-weight:900;
  letter-spacing:.07em;
  line-height:1;
  text-transform:uppercase;
}

.hero-copy p,
.page-hero p,
.copy-block p,
.section-intro p{
  margin:0;
  color:var(--soft-ink);
  font-size:clamp(16px, 1.6vw, 21px);
  font-weight:700;
  line-height:1.45;
}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:0 16px 34px rgba(0,0,0,.18);
  transition:transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover{
  transform:translateY(-2px);
  background:var(--green);
  box-shadow:0 20px 42px rgba(0,0,0,.22);
}

.button-secondary{
  background:var(--cream);
  color:var(--ink);
  border:1px solid rgba(0,0,0,.14);
}

.hero-media-stack{
  position:absolute;
  inset:0 0 0 40.8%;
  z-index:2;
  width:auto;
  height:auto;
  min-height:0;
  display:block;
  clip-path:polygon(24.2% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-slash{
  display:none;
}

.hero-photo-card{
  position:relative;
  overflow:hidden;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  border-radius:0;
  background:#000;
  box-shadow:none;
  clip-path:none;
}

.hero-photo-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, transparent 32%, rgba(0,0,0,.72));
  pointer-events:none;
}

.gallery-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(.95) contrast(1.04);
  opacity:0;
  transition:opacity 700ms ease;
}

.gallery-image.is-active{
  opacity:1;
}

.hero-photo-label{
  position:absolute;
  left:clamp(28px, 5vw, 56px);
  right:clamp(28px, 5vw, 56px);
  bottom:clamp(26px, 4vw, 48px);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  color:#fff;
  z-index:2;
}

.hero-photo-label strong{
  max-width:none;
  padding:.16em .22em .18em;
  background:#000;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(20px, 2.45vw, 36px);
  font-weight:900;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

.hero-photo-label a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 16px;
  border:1px solid #fff;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:transform 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-photo-label a:hover,
.hero-photo-label a:focus-visible{
  transform:translateY(-2px);
  background:#fff;
  color:#000;
}

.content-band{
  position:relative;
  overflow:hidden;
  padding:clamp(58px, 9vw, 120px) 0;
}

.content-band.alt{
  background:var(--cream);
}

.content-band > *{
  position:relative;
  z-index:1;
}

.section-intro{
  display:grid;
  grid-template-columns:minmax(240px, .8fr) minmax(320px, 1.2fr);
  gap:clamp(24px, 5vw, 72px);
  align-items:end;
  margin-bottom:clamp(28px, 5vw, 54px);
}

.section-intro h2,
.copy-block h2,
.page-hero h1{
  margin:0;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(28px, 4vw, 58px);
  font-weight:900;
  letter-spacing:.07em;
  line-height:1;
  text-transform:uppercase;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.feature-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  display:grid;
  align-content:end;
  border-radius:var(--radius);
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
}

.feature-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

.feature-card:hover img{
  transform:scale(1.045);
}

.feature-card-copy{
  position:relative;
  z-index:1;
  display:grid;
  justify-items:start;
  gap:12px;
  padding:clamp(24px, 4vw, 42px);
}

.feature-card-copy h3{
  max-width:12ch;
  margin:0;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(25px, 3.2vw, 46px);
  font-weight:900;
  line-height:1;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.feature-card-copy p{
  max-width:34ch;
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:15px;
  font-weight:700;
  line-height:1.45;
}

.split-panel{
  display:grid;
  grid-template-columns:minmax(300px, .95fr) minmax(320px, 1.05fr);
  gap:clamp(22px, 5vw, 70px);
  align-items:center;
}

.image-slab{
  min-height:420px;
  overflow:hidden;
  border-radius:36px;
  box-shadow:var(--shadow);
  background:var(--green);
  clip-path:polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.image-slab img{
  width:100%;
  height:100%;
  min-height:inherit;
  display:block;
  object-fit:cover;
}

.copy-block{
  display:grid;
  gap:18px;
}

.stat-row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}

.stat-card{
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.stat-card strong{
  display:block;
  font-family:"Nunito Sans", sans-serif;
  font-size:32px;
  font-weight:900;
  line-height:1;
}

.stat-card span{
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.collab-strip{
  display:grid;
  grid-template-columns:minmax(260px, 1fr) auto;
  gap:22px;
  align-items:center;
  padding:clamp(28px, 5vw, 52px);
  border-radius:36px;
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
}

.collab-strip h2{
  margin:0;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(28px, 4vw, 58px);
  font-weight:900;
  line-height:1;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.collaborator-marks{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:18px;
}

.collaborator-item{
  display:grid;
  justify-items:center;
  gap:10px;
}

.collaborator-circle{
  width:clamp(96px, 12vw, 142px);
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border:2px solid #fff;
  border-radius:50%;
  background:var(--cream);
  color:#000;
  font-size:clamp(15px, 1.8vw, 22px);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.collaborator-circle-dark{
  background:#000;
  color:#fff;
}

.collaborator-circle img{
  width:62%;
  height:62%;
  object-fit:contain;
}

.collaborator-name{
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.page-hero{
  padding:clamp(62px, 9vw, 130px) 0 clamp(34px, 5vw, 72px);
}

.page-hero-inner{
  width:min(1080px, calc(100% - 36px));
  margin:0 auto;
  display:grid;
  gap:18px;
}

.page-hero p{
  max-width:760px;
}

.panel-grid{
  width:min(1080px, calc(100% - 36px));
  margin:0 auto clamp(62px, 9vw, 110px);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.info-panel{
  display:grid;
  gap:14px;
  padding:clamp(24px, 4vw, 44px);
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.info-panel h2,
.info-panel h3{
  margin:0;
  font-family:"Nunito Sans", sans-serif;
  font-size:clamp(24px, 3vw, 38px);
  font-weight:900;
  line-height:1;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.info-panel p,
.info-panel li{
  color:var(--soft-ink);
  font-size:16px;
  font-weight:700;
  line-height:1.5;
}

.info-panel p{
  margin:0;
}

.info-panel ul{
  display:grid;
  gap:10px;
  margin:0;
  padding-left:20px;
}

.form-card{
  display:grid;
  gap:14px;
}

.form-card label{
  display:grid;
  gap:7px;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.form-card input,
.form-card textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.16);
  border-radius:18px;
  background:var(--cream);
  color:var(--ink);
  font:700 16px/1.3 "Nunito Sans", sans-serif;
  padding:14px 16px;
}

.form-card textarea{
  min-height:150px;
  resize:vertical;
}

.site-footer{
  margin-top:auto;
  padding:clamp(34px, 5vw, 64px) clamp(18px, 4vw, 58px);
  background:var(--ink);
  color:#fff;
}

.footer-inner{
  width:min(1180px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr repeat(2, minmax(170px, .45fr));
  gap:28px;
}

.footer-brand{
  display:grid;
  gap:18px;
  max-width:430px;
}

.footer-brand-row{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-brand img{
  width:150px;
  filter:brightness(0) invert(1);
}

.footer-brand p,
.footer-brand span,
.footer-column a,
.footer-column span{
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:1.5;
}

.footer-column{
  display:grid;
  align-content:start;
  gap:10px;
}

.footer-column h2{
  margin:0 0 6px;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.footer-column a:hover{
  color:#fff;
}

.agency-home{
  background:var(--cream);
}

.agency-home .site-nav{
  position:sticky;
  background:rgba(242,227,200,.96);
}

.home-hero{
  position:relative;
  height:clamp(620px, 80vh, 820px);
  min-height:clamp(620px, 80vh, 820px);
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#000;
  isolation:isolate;
}

.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, #000 0%, rgba(0,0,0,.98) 25%, rgba(0,0,0,.86) 42%, rgba(0,0,0,.54) 58%, rgba(0,0,0,.16) 76%, transparent 100%);
  pointer-events:none;
}

.home-hero::after{
  display:none;
}

.home-hero > .home-hero-visual{
  position:absolute;
  inset:0 0 0 auto;
  z-index:0;
  display:block;
  width:min(74vw, 1240px);
  height:auto;
  background:#000;
  clip-path:none;
}

.home-hero-visual::after{
  content:none;
  display:none;
  background:none;
}

.home-hero-visual .gallery-image{
  object-position:center right;
  opacity:0;
}

.home-hero-visual .gallery-image.is-active{
  opacity:1;
}

.home-hero > .home-hero-copy{
  position:relative;
  z-index:2;
  width:min(760px, calc(100% - 56px));
  margin-left:clamp(24px, 6vw, 86px);
  display:grid;
  gap:22px;
  color:#fff;
  text-shadow:0 2px 18px rgba(0,0,0,.56);
}

.home-kicker{
  margin:0;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  line-height:1.35;
  text-transform:uppercase;
}

.home-hero-copy h1{
  max-width:10.8ch;
  margin:0;
  font-size:clamp(56px, 7.6vw, 108px);
  font-weight:900;
  letter-spacing:0;
  line-height:.9;
  text-wrap:balance;
}

.home-hero-copy p:not(.home-kicker){
  max-width:520px;
  margin:0;
  font-size:clamp(18px, 2vw, 24px);
  font-weight:700;
  line-height:1.45;
}

.hero-action-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-top:12px;
}

.button-gold{
  background:var(--gold);
  color:#fff;
}

.circle-link{
  width:48px;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border:1px solid #fff;
  border-radius:50%;
  color:#fff;
  font-size:24px;
  transition:transform 180ms ease, background 180ms ease, color 180ms ease;
}

.circle-link:hover,
.circle-link:focus-visible{
  transform:translateY(-2px);
  background:#fff;
  color:#000;
}

.text-link{
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.collaborator-band{
  position:relative;
  z-index:3;
  width:min(1080px, calc(100% - 96px));
  margin:clamp(-42px, -3.5vw, -24px) auto 0;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  overflow:hidden;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
}

.collaborator-band article{
  min-height:166px;
  display:grid;
  align-content:center;
  justify-items:center;
  gap:12px;
  padding:clamp(18px, 2vw, 28px);
  border-right:1px solid rgba(255,255,255,.18);
  text-align:center;
}

.collaborator-band article:last-child{
  border-right:0;
}

.collaborator-icon{
  width:clamp(64px, 5vw, 74px);
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border:1px solid transparent;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(255,255,255,.22);
  color:var(--gold);
  font-size:28px;
  font-weight:900;
}

.collaborator-icon-dark{
  background:#000;
}

.collaborator-icon-image{
  overflow:hidden;
  background:rgba(255,255,255,.08);
}

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

.collaborator-icon-image img{
  width:118%;
  height:118%;
  object-fit:cover;
  object-position:center center;
  transform:translateY(-7%);
}

.collaborator-band h2{
  margin:0;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.collaborator-band p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:700;
  line-height:1.45;
}

.work-with-section{
  display:grid;
  grid-template-columns:minmax(260px, .8fr) minmax(520px, 1.2fr);
  gap:clamp(28px, 5vw, 70px);
  align-items:center;
  width:min(1220px, calc(100% - 56px));
  margin:0 auto;
  padding:clamp(70px, 9vw, 124px) 0;
}

.work-copy{
  display:grid;
  gap:18px;
}

.work-copy h2,
.artist-banner h2,
.write-us-strip h2{
  margin:0;
  font-size:clamp(34px, 4vw, 58px);
  font-weight:900;
  letter-spacing:-.035em;
  line-height:1;
}

.work-copy p:not(.home-kicker),
.write-us-strip p{
  margin:0;
  font-size:16px;
  font-weight:700;
  line-height:1.6;
}

.outline-button{
  width:max-content;
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid #000;
  border-radius:7px;
  color:#000;
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:transform 180ms ease, background 180ms ease, color 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible{
  transform:translateY(-2px);
  background:#000;
  color:#fff;
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
}

.audience-card{
  position:relative;
  min-height:300px;
  overflow:hidden;
  display:grid;
  align-content:end;
  border-radius:10px;
  background:#000;
  color:#fff;
}

.audience-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.8;
  transition:transform 700ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
}

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

.audience-card:hover img{
  transform:scale(1.045);
  opacity:.92;
}

.audience-card span{
  position:relative;
  z-index:1;
  padding:22px;
  font-size:18px;
  font-weight:900;
  letter-spacing:.05em;
  line-height:1.1;
  text-transform:uppercase;
}

.artist-banner{
  position:relative;
  min-height:280px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:var(--green);
  color:#fff;
  text-align:center;
}

.artist-banner > .artist-banner-preview{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  z-index:0 !important;
}

.artist-banner > .artist-banner-preview > img,
.artist-banner > .artist-banner-preview .home-artist-preview-media,
.artist-banner > .artist-banner-preview .home-artist-preview-media video,
.artist-banner > .artist-banner-preview .home-artist-preview-audio,
.artist-banner > .artist-banner-preview .home-artist-preview-audio > img{
  width:100%;
  height:100%;
  min-height:0;
  display:block;
  object-fit:cover;
}

.artist-banner > .artist-banner-preview .home-artist-preview-media,
.artist-banner > .artist-banner-preview .home-artist-preview-audio{
  position:absolute;
  inset:0;
  border-radius:0;
}

.artist-banner > .artist-banner-preview .home-artist-preview-media video{
  background:#000;
  opacity:.58;
}

.artist-banner > .artist-banner-preview .home-artist-preview-audio audio{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  width:calc(100% - 36px);
  z-index:2;
}

.artist-banner > .artist-banner-preview > img,
.artist-banner > .artist-banner-preview .home-artist-preview-audio > img{
  opacity:.46;
}

.artist-banner > div:not(.artist-banner-preview){
  position:relative;
  z-index:2;
  display:grid;
  justify-items:center;
  gap:18px;
  width:min(720px, calc(100% - 48px));
}

.outline-button-light{
  border-color:#fff;
  color:#fff;
}

.outline-button-light:hover,
.outline-button-light:focus-visible{
  background:#fff;
  color:#000;
}

.write-us-strip{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  padding:clamp(28px, 5vw, 48px) clamp(24px, 6vw, 84px);
  background:var(--gold);
}

.write-us-mark{
  width:74px;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--cream);
  color:var(--green);
  font-size:36px;
  font-weight:900;
}

.services-page{
  background:var(--cream);
}

.services-hero{
  position:relative;
  min-height:clamp(560px, 70vh, 760px);
  display:grid;
  align-items:center;
  overflow:hidden;
  background:var(--green);
  color:#fff;
}

.services-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:.72;
}

.services-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(9,18,13,.94) 0 42%, rgba(9,18,13,.60) 58%, rgba(9,18,13,.18));
}

.services-hero-copy{
  position:relative;
  z-index:1;
  width:min(700px, calc(100% - 56px));
  margin-left:clamp(24px, 7vw, 96px);
  display:grid;
  gap:22px;
}

.services-hero-copy h1{
  max-width:12ch;
  margin:0;
  font-size:clamp(52px, 6.8vw, 96px);
  font-weight:900;
  letter-spacing:-.06em;
  line-height:.92;
}

.services-hero-copy p:not(.home-kicker){
  max-width:520px;
  margin:0;
  font-size:clamp(16px, 1.5vw, 20px);
  font-weight:700;
  line-height:1.55;
}

.services-benefits{
  position:relative;
  z-index:1;
  width:min(1180px, calc(100% - 72px));
  margin:0 auto;
  padding:clamp(34px, 5vw, 62px) 0 0;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(18px, 3vw, 36px);
  color:var(--green);
}

.services-benefits article{
  display:grid;
  align-content:start;
  gap:10px;
  padding-top:18px;
  border-top:1px solid rgba(36,59,47,.28);
}

.services-benefits span,
.service-type-card span{
  width:46px;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(243,207,114,.12);
  color:var(--gold);
  font-size:21px;
  font-weight:900;
}

.services-benefits span{
  width:auto;
  aspect-ratio:auto;
  display:block;
  border-radius:0;
  background:transparent;
  font-size:18px;
  line-height:1;
}

.services-benefits h2{
  margin:0;
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.services-benefits p{
  margin:0;
  color:rgba(36,59,47,.78);
  font-size:14px;
  font-weight:700;
  line-height:1.55;
}

.service-types{
  width:min(1180px, calc(100% - 72px));
  margin:0 auto;
  padding:clamp(54px, 7vw, 92px) 0 clamp(44px, 6vw, 76px);
  display:grid;
  justify-items:center;
  gap:24px;
}

.service-types-title{
  font-size:clamp(16px, 1.5vw, 22px);
  letter-spacing:.16em;
}

.service-type-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.service-type-card{
  position:relative;
  min-height:430px;
  overflow:hidden;
  border-radius:12px;
  display:grid;
  align-items:end;
  background:#000;
  color:#fff;
}

.service-type-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.48;
  transition:transform 800ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
}

.service-type-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.86));
}

.service-type-card:hover img{
  transform:scale(1.035);
  opacity:.62;
}

.service-type-card > div{
  position:relative;
  z-index:1;
  display:grid;
  gap:14px;
  padding:clamp(28px, 3vw, 44px);
}

.service-type-card h2{
  margin:0;
  font-size:clamp(30px, 3.4vw, 48px);
  font-weight:900;
  letter-spacing:-.045em;
  line-height:1;
}

.service-label{
  margin:0;
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.service-type-card p:not(.service-label){
  margin:0;
  max-width:520px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  font-weight:700;
  line-height:1.55;
}

.service-type-card ul{
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
  list-style:none;
  color:rgba(255,255,255,.9);
  font-size:14px;
  font-weight:700;
}

.service-type-card li::before{
  content:"✓";
  margin-right:10px;
  color:var(--gold);
}

.service-type-card a{
  width:max-content;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.services-catalog-strip{
  width:min(1180px, calc(100% - 72px));
  margin:0 auto;
  padding:clamp(34px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
  display:grid;
  grid-template-columns:minmax(280px, .86fr) minmax(420px, 1fr);
  gap:clamp(34px, 7vw, 92px);
  align-items:center;
}

.services-catalog-strip > div:first-child{
  display:grid;
  gap:16px;
}

.services-catalog-strip h2{
  margin:0;
  font-size:clamp(40px, 5vw, 66px);
  font-weight:900;
  letter-spacing:-.055em;
  line-height:.95;
}

.services-catalog-strip p:not(.home-kicker){
  max-width:560px;
  margin:0;
  font-size:16px;
  font-weight:700;
  line-height:1.6;
}

.catalog-collage{
  position:relative;
  min-height:260px;
}

.catalog-collage img{
  position:absolute;
  width:42%;
  aspect-ratio:1.25;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 24px 60px rgba(0,0,0,.20);
}

.catalog-collage img:nth-child(1){
  left:5%;
  top:2%;
}

.catalog-collage img:nth-child(2){
  left:31%;
  top:32%;
  z-index:2;
}

.catalog-collage img:nth-child(3){
  right:0;
  top:10%;
}

@media (max-width:980px){
  .site-nav{
    align-items:center;
    flex-direction:row;
  }

  .menu-toggle{
    display:inline-flex;
    flex-direction:column;
    margin-left:auto;
  }

  .primary-nav{
    position:absolute;
    top:100%;
    right:clamp(18px, 4vw, 58px);
    width:min(280px, calc(100vw - 36px));
    display:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:18px;
    padding:22px;
    border:1px solid rgba(0,0,0,.14);
    border-radius:24px;
    background:rgba(255,255,255,.94);
    -webkit-backdrop-filter:blur(24px);
    backdrop-filter:blur(24px);
    box-shadow:0 20px 42px rgba(0,0,0,.16);
  }

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

  .primary-nav a{
    justify-content:flex-start;
    min-height:28px;
  }

  .hero-market{
    min-height:auto;
    background:var(--gold-2);
  }

  .hero-inner,
  .section-intro,
  .split-panel,
  .collab-strip,
  .footer-inner{
    grid-template-columns:1fr;
  }

  .hero-media-stack{
    position:relative;
    inset:auto;
    width:100%;
    height:420px;
    clip-path:polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-photo-card{
    justify-self:stretch;
    width:100%;
  }

  .home-hero{
    height:720px;
    min-height:720px;
  }

  .home-hero::before{
    background:linear-gradient(90deg, #000 0%, rgba(0,0,0,.98) 30%, rgba(0,0,0,.82) 52%, rgba(0,0,0,.42) 74%, rgba(0,0,0,.10) 100%);
  }

  .home-hero > .home-hero-visual{
    inset:0 0 0 auto;
    width:86%;
  }

  .home-hero > .home-hero-copy{
    width:min(680px, calc(100% - 36px));
    margin-left:clamp(18px, 5vw, 48px);
    margin-right:auto;
  }

  .collaborator-band,
  .audience-grid,
  .services-benefits{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .work-with-section,
  .write-us-strip,
  .service-type-grid,
  .services-catalog-strip{
    grid-template-columns:1fr;
  }

  .write-us-strip{
    text-align:left;
  }

  .services-hero-copy{
    width:min(640px, calc(100% - 48px));
    margin:0 auto;
  }

  .services-benefits,
  .service-types,
  .services-catalog-strip{
    width:calc(100% - 48px);
  }

  .catalog-collage{
    min-height:320px;
  }
}

@media (max-width:720px){
  .feature-grid,
  .panel-grid,
  .stat-row{
    grid-template-columns:1fr;
  }

  .primary-nav{
    font-size:11px;
    gap:8px 14px;
  }

  .hero-copy h1,
  .page-hero h1{
    font-size:clamp(46px, 15vw, 74px);
  }

  .hero-photo-label{
    align-items:flex-start;
    flex-direction:column;
  }

  .feature-card,
  .image-slab{
    min-height:320px;
  }

  .home-hero{
    height:680px;
    min-height:680px;
    align-items:end;
    padding:120px 0 56px;
  }

  .home-hero::before{
    content:"";
    display:block;
    background:
      linear-gradient(90deg, #000 0%, rgba(0,0,0,.94) 34%, rgba(0,0,0,.68) 68%, rgba(0,0,0,.28) 100%),
      linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.36) 46%, #000 100%);
  }

  .home-hero > .home-hero-visual{
    inset:0 0 0 auto;
    width:100%;
  }

  .home-hero > .home-hero-copy{
    width:calc(100% - 32px);
    margin-left:auto;
    margin-right:auto;
  }

  .home-hero-copy h1{
    font-size:clamp(44px, 15vw, 76px);
  }

  .collaborator-band,
  .audience-grid,
  .services-benefits{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
  }

  .collaborator-band{
    margin-top:-20px;
  }

  .audience-card{
    min-height:240px;
  }

  .artist-banner{
    min-height:360px;
  }

  .services-hero{
    min-height:620px;
  }

  .services-hero-copy h1{
    font-size:clamp(42px, 14vw, 68px);
  }

  .service-types,
  .services-catalog-strip{
    width:calc(100% - 28px);
  }

  .service-type-card{
    min-height:520px;
  }

  .services-catalog-strip{
    padding-top:40px;
  }

  .catalog-collage{
    min-height:420px;
  }

  .catalog-collage img{
    width:62%;
  }

  .catalog-collage img:nth-child(1){
    left:0;
  }

  .catalog-collage img:nth-child(2){
    left:20%;
    top:34%;
  }

  .catalog-collage img:nth-child(3){
    top:64%;
  }
}
