:root{
  --bg:#FFFFFF;
  --ink:#1B1B1B;
  --muted:#8A8A85;
  --accent:#E8A79C;
  --line:#EAE8E3;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --heavy: "Arial Black", "Helvetica Neue", Impact, sans-serif;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;}
img{max-width:100%;display:block;}

/* Header / nav */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  border-bottom:1px solid var(--line);
  flex-wrap:wrap;
  gap:12px;
  position:sticky;
  top:0;
  background:var(--bg);
  z-index:50;
}
.logo{
  font-family:var(--serif);
  font-weight:700;
  font-size:26px;
  text-decoration:none;
  position:relative;
  padding-bottom:1px;
}
.logo::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:4px;
  background:var(--accent);
  opacity:0.85;
}
.logo .amp{color:var(--accent);font-style:italic;}

nav.mainnav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  align-items:center;
}
nav.mainnav a{
  text-decoration:none;
  font-size:14.5px;
  color:var(--ink);
  white-space:nowrap;
}
nav.mainnav a:hover{color:var(--accent);}
nav.mainnav a.active{font-weight:700;}
.navgroup{position:relative;}
.navgroup .subnav{
  display:none;
  position:absolute;
  top:100%;left:0;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:4px;
  padding:8px 0;
  min-width:220px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}
.navgroup:hover .subnav{display:block;}
.navgroup .subnav a{
  display:block;
  padding:8px 16px;
  font-size:14px;
}
.navgroup .subnav a:hover{background:var(--line);}

/* Layout */
main{max-width:1200px;margin:0 auto;padding:48px 32px 100px;}

/* Project hero */
.project-hero{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:48px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
  margin-bottom:36px;
}
.project-hero h1{
  font-family:var(--heavy);
  font-weight:900;
  text-transform:uppercase;
  font-size:clamp(40px,6vw,64px);
  line-height:0.95;
  letter-spacing:-0.02em;
  margin:0;
}
.project-hero h1.nowrap{
  white-space:nowrap;
  font-size:clamp(28px,4.2vw,52px);
}
.project-hero h1 .dot{
  display:inline-block;
  width:0.16em;
  height:0.16em;
  border-radius:50%;
  margin-left:0.08em;
  vertical-align:baseline;
  transform:translateY(-0.05em);
}
.project-hero .eyebrow{
  display:block;
  margin-top:14px;
  font-size:13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.project-hero .copy{
  font-size:16px;
  padding-top:6px;
}
.project-hero .copy p{margin:0 0 16px;}
.project-hero .copy p:last-child{margin-bottom:0;}

/* Awards */
.awards-box{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:14px 0;
  margin-bottom:36px;
}
.awards-box summary{
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:2px 0;
}
.awards-box summary::-webkit-details-marker{display:none;}
.awards-box summary::after{
  content:"\25BE";
  color:var(--muted);
  font-size:13px;
  transition:transform .2s ease;
  margin-left:12px;
}
.awards-box[open] summary::after{transform:rotate(180deg);}
.awards-box .list{
  margin-top:12px;
  font-size:13.5px;
  color:var(--muted);
  line-height:1.8;
}

/* Credits */
.credits-line{
  font-size:13.5px;
  color:var(--muted);
  margin-bottom:32px;
}

/* Stat grid */
.stat-heading{
  font-family:var(--serif);
  font-weight:700;
  font-size:clamp(28px,4vw,40px);
  line-height:1.05;
  margin:8px 0 20px;
}
.section-block{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:32px;
  align-items:start;
  margin-bottom:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.section-block .stat-heading{margin:0;}
.section-block .copy p{font-size:15px;margin:0;}
@media (max-width:700px){
  .section-block{grid-template-columns:1fr;gap:12px;}
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:32px;
}
.stat-card{text-align:center;}
.stat-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:2px;
  margin-bottom:10px;
}
.stat-card .stat-caption{
  font-family:var(--serif);
  font-style:italic;
  font-size:14px;
  color:var(--muted);
}
.press-list{
  display:grid;
  gap:24px;
  margin-bottom:32px;
}
.press-item{
  padding:24px 30px;
  border:1px solid var(--line);
  border-radius:4px;
}
.press-item .outlet{
  display:inline-block;
  font-size:33px;
  padding:9px 21px;
  border-radius:2px;
  margin-bottom:15px;
  color:#fff;
  line-height:1;
}
.press-item .outlet-logo{
  display:block;
  height:64px;
  width:auto;
  margin-bottom:15px;
  border-radius:2px;
}
.press-item .outlet.forbes{font-family:var(--serif);font-weight:700;font-style:italic;letter-spacing:-0.01em;}
.press-item .outlet.warc{font-family:var(--heavy);font-weight:900;letter-spacing:0.02em;}
.press-item .outlet.adweek{font-family:var(--heavy);font-weight:900;letter-spacing:-0.03em;text-transform:uppercase;font-style:italic;}
.press-item .outlet.abcnews{font-family:var(--sans);font-weight:800;}
.press-item .outlet.abcnews .abc{background:#fff;color:#D6339C;border-radius:50%;padding:1px 10px;margin-right:6px;font-style:italic;font-family:var(--serif);}
.press-item .outlet.stylist{font-family:var(--serif);font-weight:400;font-style:italic;letter-spacing:0.02em;}
.press-item .outlet.thedrum{font-family:var(--sans);font-weight:800;}
.press-item .outlet.campaignmag{font-family:var(--serif);font-weight:700;text-transform:lowercase;}
.press-item .outlet.bustle{font-family:var(--sans);font-weight:800;letter-spacing:0.15em;}
.press-item .headline{
  font-family:var(--serif);
  font-size:28px;
  font-weight:700;
  line-height:1.25;
}
@media (max-width:700px){
  .stat-grid{grid-template-columns:repeat(2,1fr);}
}

/* Carousel */
.carousel{position:relative;margin-bottom:32px;}
.carousel .car-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:24px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.carousel .car-track::-webkit-scrollbar{display:none;}
.carousel .car-page{
  flex:0 0 100%;
  scroll-snap-align:start;
  display:grid;
  gap:24px;
}
.carousel .car-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--bg);
  cursor:pointer;
  font-size:18px;
  color:var(--ink);
  z-index:2;
}
.carousel .car-prev{left:-20px;}
.carousel .car-next{right:-20px;}
.carousel .car-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}
.carousel .car-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--line);
  border:0;
  cursor:pointer;
  padding:0;
}
.carousel .car-dot.active{background:var(--accent);}
@media (max-width:700px){
  .carousel .car-btn{display:none;}
}
@media (max-width:700px){
  .stat-grid{grid-template-columns:repeat(2,1fr);}
}

/* Media */
.media-block{margin-bottom:20px;}
.video-embed{
  position:relative;
  width:100%;
  padding-top:56.25%;
  background:#000;
  margin-bottom:20px;
  border-radius:2px;
  overflow:hidden;
}
.video-embed iframe{
  position:absolute;top:0;left:0;width:100%;height:100%;border:0;
}
.video-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
  margin-bottom:20px;
}
.video-row .video-embed{
  padding-top:177.7%;
  margin-bottom:0;
}
@media (max-width:600px){
  .video-row{grid-template-columns:repeat(3,1fr);gap:8px;}
}
.image-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  margin-bottom:20px;
}
.image-gallery.large{
  grid-template-columns:repeat(3,1fr);
}
.image-gallery.large img{height:auto;padding:0;border:0;background:transparent;}
@media (max-width:700px){
  .image-gallery.large{grid-template-columns:1fr;}
}
.image-gallery img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#FAFAF8;
  border:1px solid var(--line);
  border-radius:2px;
  padding:12px;
}
.image-gallery.single{grid-template-columns:1fr;}
.image-gallery.single img{height:auto;max-height:640px;object-fit:contain;background:#fafafa;}
.hero-image{margin-bottom:20px;}
.hero-image img{width:100%;max-height:520px;object-fit:cover;border-radius:2px;}

/* Home grid */
.home-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 32px;
}
.home-tile{text-decoration:none;color:var(--ink);display:block;}
.home-tile .tile-media{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  margin-bottom:12px;
  background:#f4f4f2;
  overflow:hidden;
  border-radius:2px;
}
.home-tile .tile-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-tile .tile-media iframe.tile-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  opacity:1;
  pointer-events:none;
}
.home-tile .cap{font-size:15px;}
.home-tile .cap b{text-transform:uppercase;letter-spacing:0.02em;}
.home-tile .cap i{color:var(--muted);}

/* About */
.about-hero h1{
  font-family:var(--serif);
  font-weight:700;
  font-size:clamp(36px,5vw,52px);
  line-height:1.05;
  margin:0 0 28px;
  position:relative;
  display:inline-block;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.about-grid .copy p{margin:0 0 16px;font-size:15.5px;}
.about-photo{position:relative;}
.about-photo img{border-radius:2px;}
.about-photo::after{
  content:"";
  display:block;
  height:6px;
  background:var(--accent);
  margin-top:-6px;
  position:relative;
  z-index:2;
}
.contact-block{margin-top:20px;font-size:15px;}
.contact-block a{text-decoration:none;border-bottom:1px solid var(--accent);}

footer{
  text-align:center;
  padding:32px;
  font-size:12px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

@media (max-width:820px){
  .project-hero, .about-grid, .home-grid{grid-template-columns:1fr;gap:24px;}
  main{padding:32px 20px 80px;}
  .site-header{padding:14px 20px;}
}
