:root {
  --black: #0a0a0b;
  --ink: #111214;
  --white: #f8f8f5;
  --paper: #efefeb;
  --blue: #c9dce3;
  --blue-deep: #7c959e;
  --gold: #9b7e58;
  --warm: #e5d0b7;
  --grey: #747474;
  --line: rgba(17, 18, 20, .19);
  --line-light: rgba(248, 248, 245, .22);
  --display: "Bodoni Moda", "Times New Roman", serif;
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure, blockquote { margin: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  text-wrap: balance;
}
::selection { background: var(--blue); color: var(--black); }

.topbar {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 3.6vw;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}
.monogram {
  width: fit-content;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .08em;
}
.topbar nav { display: flex; gap: clamp(24px, 3.4vw, 52px); }
.topbar nav a, .topbar-contact {
  font-size: .875rem;
  letter-spacing: .08em;
  transition: color .2s ease;
}
.topbar nav a:hover, .topbar-contact:hover,
.topbar nav a:focus-visible, .topbar-contact:focus-visible { color: var(--blue); }
.topbar-contact { justify-self: end; padding-bottom: 3px; border-bottom: 1px solid var(--blue); }

.cover {
  min-height: clamp(590px, 78svh, 720px);
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--black);
  color: var(--white);
}
.cover-copy {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 6vh, 68px) 5.5vw clamp(32px, 4vh, 44px) 6vw;
}
.cover-kicker {
  margin-bottom: auto;
  color: #a6a6a2;
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.cover h1 {
  margin: clamp(34px, 5vh, 52px) 0 22px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4.5rem, 7vw, 7.4rem);
  line-height: .82;
  letter-spacing: -.045em;
}
.cover h1 span { display: block; }
.cover h1 span:last-child { color: var(--blue); }
.cover-role {
  margin-bottom: 38px;
  color: #d4d4cf;
  font-family: var(--sans);
  font-size: clamp(.8rem, 1vw, 1rem);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.cover-text { max-width: 500px; color: #b9b9b5; line-height: 1.7; }
.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: .875rem;
}
.text-link span { margin-left: 13px; }
.light-link { color: var(--white); }
.cover-location {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 45px;
  color: #8d8d8a;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cover-image { position: relative; min-height: inherit; overflow: hidden; background: var(--blue); }
.cover-image img { object-position: center 37%; }
.cover-image figcaption {
  position: absolute;
  right: 25px;
  bottom: 22px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.65);
  color: white;
  font-size: .75rem;
}

.name-band {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4.5vw, 75px);
  padding: 25px 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.7rem);
  letter-spacing: .1em;
}
.name-band i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.eyebrow {
  margin-bottom: 30px;
  color: var(--grey);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.opening {
  display: grid;
  grid-template-columns: 20% 50% 30%;
  padding: 150px 7vw 165px;
  background: var(--white);
}
.opening h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: .98;
}
.opening-copy { align-self: end; max-width: 560px; padding: 0 0 4px 4vw; color: #505154; }
.opening-copy p:last-child { margin-bottom: 0; }

.offers { padding: 125px 7vw 145px; background: var(--paper); }
.offers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}
.offers-head .eyebrow { margin: 0 0 11px; }
.offers-head h2 { margin: 0; font-size: clamp(3.4rem, 5vw, 5.8rem); line-height: .96; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.offer-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-grid h3 { margin: 0; font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1; }
.offer-grid p { max-width: 430px; margin: 45px 0 0; color: #56575a; }

.portfolio-lead {
  min-height: 660px;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-template-rows: auto 1fr;
  padding: 135px 7vw 110px;
  background: var(--black);
  color: var(--white);
}
.portfolio-lead .eyebrow { color: #858581; }
.portfolio-lead h2 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  line-height: .84;
}
.portfolio-index {
  grid-column: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line-light);
}
.portfolio-index p {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 22px 20px 0 0;
  border-right: 1px solid var(--line-light);
}
.portfolio-index p + p { padding-left: 20px; }
.portfolio-index p:last-child { border-right: 0; }
.portfolio-index span { font-family: var(--serif); font-size: 1.4rem; }
.portfolio-index small { margin-top: 7px; color: #888884; font-size: .75rem; }

.case { padding: 115px 6vw 135px; }
.case-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: clamp(45px, 7vw, 120px);
  margin-bottom: 75px;
  padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
}
.case-heading > div { min-width: 0; }
.case-kicker {
  margin: 0 0 22px;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .62;
}
.case-brand {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
  line-height: .9;
  letter-spacing: -.03em;
}
.case-intro { max-width: 430px; margin: 0; font-size: 1rem; line-height: 1.7; opacity: .72; }
.media { overflow: hidden; }
.media img { transition: transform .7s ease; }
.event-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "photo video";
  align-items: stretch;
  gap: clamp(22px, 3vw, 52px);
}
.event-photo,
.event-video { aspect-ratio: 9 / 16; }
.event-photo { grid-area: photo; }
.event-photo img { object-position: center center; }
.event-video {
  grid-area: video;
  width: 100%;
  background: var(--black);
}
.event-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

@media (min-width: 761px) {
  .event-layout {
    width: min(100%, 840px, 88svh);
    margin-inline: auto;
    gap: clamp(18px, 2vw, 30px);
  }
}

.case-dior-tour { background: #151516; color: var(--white); }
.case-dior-tour .case-heading { border-color: var(--line-light); }
.tour-stop + .tour-stop {
  margin-top: 120px;
  padding-top: 100px;
  border-top: 1px solid var(--line-light);
}
.stop-heading {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: baseline;
  gap: 25px;
  margin-bottom: 38px;
}
.stop-heading span,
.stop-heading time {
  color: #8f8f8c;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stop-heading h3 { margin: 0; font-size: clamp(2.6rem, 4vw, 4.4rem); line-height: 1; }
.stop-venue {
  margin: .65rem 0 0;
  color: #bdbdb8;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-fcc { background: var(--blue); color: var(--ink); }
.case-loreal { background: var(--warm); color: var(--ink); }

@media (hover:hover) { .media:hover img { transform: scale(1.018); } }

.about {
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: 930px;
  background: var(--black);
  color: var(--white);
}
.about-image { min-height: 780px; }
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 100px 7vw;
}
.about-copy .eyebrow { color: #858581; }
.about-copy h2 { margin-bottom: 48px; font-size: clamp(3.5rem, 5vw, 5.5rem); line-height: .96; }
.about-copy > p { max-width: 580px; color: #c4c4c0; line-height: 1.72; }
.about-copy .text-link { margin-top: 25px; color: var(--blue); }
.about-copy small { max-width: 520px; margin-top: 28px; color: #777773; font-size: .75rem; line-height: 1.65; }

.testimonials { padding: 145px 8vw 150px; background: var(--white); }
.testimonial-main {
  position: relative;
  max-width: 1120px;
  margin: 70px auto 105px;
  padding: clamp(46px, 5.5vw, 76px) clamp(34px, 6.5vw, 88px) clamp(42px, 5vw, 68px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--blue);
}
.testimonial-main::before {
  content: "“";
  position: absolute;
  top: -18px;
  right: 32px;
  color: rgba(201, 220, 227, .13);
  font-family: var(--serif);
  font-size: clamp(9rem, 17vw, 15rem);
  line-height: 1;
  pointer-events: none;
}
.testimonial-main > p:first-child {
  position: relative;
  z-index: 1;
  max-width: 40em;
  margin-bottom: 38px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -.018em;
}
.testimonial-main .testimonial-translation {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 0 32px;
  padding-top: 28px;
  color: #c8c8c3;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0;
  border-top: 1px solid var(--line-light);
}
.testimonial-translation span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.testimonial-main footer {
  position: relative;
  z-index: 1;
  color: #aaa9a4;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.testimonial-notes footer {
  color: var(--grey);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.testimonial-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-notes blockquote { min-height: 200px; padding: 35px 3.5vw 30px 0; border-right: 1px solid var(--line); }
.testimonial-notes blockquote + blockquote { padding-left: 3.5vw; }
.testimonial-notes blockquote:last-child { border-right: 0; }
.testimonial-notes p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; }
.testimonials > .text-link { margin-top: 50px; color: var(--ink); }

.trusted { padding: 125px 7vw 140px; background: var(--paper); text-align: center; }
.trusted .eyebrow { margin-bottom: 70px; }
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trusted-logos > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.trusted-logos > div:last-child { border-right: 0; }
.trusted-dior { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.2rem); letter-spacing: .05em; }
.trusted-loreal span { font-size: clamp(2rem, 3.4vw, 3.4rem); letter-spacing: -.06em; }
.trusted-fcc span { font-family: var(--serif); font-size: clamp(2.2rem, 3.7vw, 3.7rem); letter-spacing: .11em; }
.trusted-logos small { margin-top: 4px; font-size: .75rem; letter-spacing: .34em; }

.contact {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 8vw;
  padding: 140px 7vw 150px;
  background: var(--blue);
  color: var(--ink);
}
.contact-copy h2 { margin-bottom: 36px; font-size: clamp(4rem, 6.5vw, 7.2rem); line-height: .9; }
.contact-copy > p:not(.eyebrow) { max-width: 470px; }
.contact-copy > a { display: inline-block; margin-top: 25px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: .875rem; }
form { align-self: center; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
label {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  font-size: .875rem;
}
input, select, textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(17,18,20,.55);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}
textarea { min-height: 115px; padding: 14px; border: 1px solid rgba(17,18,20,.55); resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
input::placeholder, textarea::placeholder { color: #6f838b; }
form button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
form button span { margin-left: 10px; }
form button:hover, form button:focus-visible { background: transparent; color: var(--ink); }
#form-note { display: inline-block; margin: 0 0 0 15px; color: #5c7178; font-size: .75rem; }

.footer {
  min-height: 165px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 25px;
  padding: 45px 3.6vw;
  background: var(--black);
  color: #8f8f8b;
  font-size: .75rem;
}
.footer > span { color: var(--white); font-family: var(--display); font-size: 1.25rem; }
.footer p { margin: 0; }
.footer p:last-child { justify-self: end; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .cover { grid-template-columns: 48% 52%; }
  .cover h1 { font-size: clamp(4.35rem, 9vw, 6.2rem); }
  .opening { grid-template-columns: 1fr 2fr; }
  .opening-copy { grid-column: 2; padding: 55px 0 0; max-width: 720px; }
  .portfolio-lead { grid-template-columns: 1fr; }
  .portfolio-lead h2, .portfolio-index { grid-column: 1; }
  .portfolio-index { grid-template-columns: repeat(3, 1fr); }
  .portfolio-index p { border-bottom: 1px solid var(--line-light); }
  .case-heading { grid-template-columns: minmax(0, 1fr) minmax(250px, 360px); gap: 45px; }
  .about { grid-template-columns: 48% 52%; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .topbar { height: 68px; grid-template-columns: 1fr auto; padding: 0 6vw; }
  .topbar nav { display: none; }
  .cover { min-height: auto; grid-template-columns: 1fr; }
  .cover-copy { min-height: clamp(555px, 145vw, 620px); padding: 64px 7vw 40px; }
  .cover h1 { margin-top: 58px; font-size: clamp(4.2rem, 20vw, 5.8rem); }
  .cover-role { font-size: .82rem; letter-spacing: .17em; }
  .cover-location { padding-top: 45px; }
  .cover-image { min-height: clamp(500px, 135vw, 620px); }
  .name-band {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0 3vw;
    font-size: clamp(.68rem, 3vw, .82rem);
    letter-spacing: .06em;
  }
  .name-band i { display: none; }
  .name-band span {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }
  .name-band span:not(:first-child) { border-left: 1px solid var(--line); }
  .opening { display: block; padding: 100px 7vw 110px; }
  .opening h2 { font-size: clamp(2.9rem, 11.5vw, 3.8rem); line-height: 1.02; }
  .opening-copy { max-width: none; padding-top: 45px; }
  .offers { padding: 90px 7vw 105px; }
  .offers-head { display: block; }
  .offers-head h2 { font-size: 3rem; line-height: 1; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-grid article { min-height: 220px; }
  .offer-grid h3 { font-size: 1.95rem; }
  .portfolio-lead { min-height: 610px; padding: 95px 7vw 80px; }
  .portfolio-lead h2 { font-size: clamp(3.4rem, 14vw, 4.4rem); line-height: .94; }
  .portfolio-index { grid-template-columns: 1fr; margin-top: 75px; }
  .portfolio-index p { min-height: 100px; padding: 20px 12px 0 0; }
  .portfolio-index p + p { padding-left: 0; }
  .portfolio-index span { font-size: 1.15rem; }
  .case { padding: 75px 7vw 90px; }
  .case-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; padding-bottom: 30px; }
  .case-brand { font-size: clamp(3rem, 12vw, 4rem); line-height: .96; }
  .case-intro { max-width: 34rem; }
  .fcc-address { display: block; margin-top: .35em; }
  .tour-stop + .tour-stop { margin-top: 80px; padding-top: 70px; }
  .stop-heading { grid-template-columns: 1fr; gap: 4px; margin-bottom: 26px; }
  .stop-heading span { margin-bottom: 8px; }
  .stop-heading h3 { font-size: 2.65rem; }
  .stop-venue { margin-top: .45rem; }
  .stop-heading time { margin-top: 4px; }
  .event-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    grid-template-areas:
      "photo"
      "video";
  }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 650px; }
  .about-copy { padding: 95px 7vw 105px; }
  .about-copy h2 { font-size: clamp(2.75rem, 11.5vw, 3.7rem); line-height: 1; }
  .testimonials { padding: 100px 7vw 110px; }
  .testimonial-main {
    margin: 55px 0 80px;
    padding: 38px 28px 36px;
  }
  .testimonial-main::before {
    top: -8px;
    right: 12px;
    font-size: 9rem;
  }
  .testimonial-main > p:first-child {
    max-width: 30rem;
    font-size: 1.42rem;
    line-height: 1.55;
    letter-spacing: -.01em;
  }
  .testimonial-main .testimonial-translation {
    max-width: 30rem;
    padding-top: 24px;
    font-size: .98rem;
    line-height: 1.72;
  }
  .testimonial-notes { grid-template-columns: 1fr; }
  .testimonial-notes blockquote, .testimonial-notes blockquote + blockquote {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trusted { padding: 90px 7vw 100px; }
  .trusted .eyebrow { margin-bottom: 50px; }
  .trusted-logos { grid-template-columns: 1fr; }
  .trusted-logos > div { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trusted-logos > div:last-child { border-bottom: 0; }
  .contact { padding: 95px 7vw 105px; }
  .contact-copy h2 { font-size: 3.5rem; line-height: .96; }
  .form-pair { grid-template-columns: 1fr; gap: 0; }
  form button { width: 100%; }
  #form-note { display: block; margin: 14px 0 0; }
  .footer { grid-template-columns: 1fr; gap: 25px; padding: 45px 7vw; }
  .footer p:last-child { justify-self: start; }
}

@media (max-width: 420px) {
  .cover-copy { min-height: 580px; }
  .cover h1 { font-size: 4.45rem; }
  .cover-location { font-size: .68rem; }
  .cover-image { min-height: 560px; }
  .name-band { flex-wrap: wrap; }
  .name-band i { display: none; }
  .name-band span { width: calc(50% - 8px); text-align: center; }
  .name-band span:last-child { width: 100%; }
  .opening h2 { font-size: 2.85rem; line-height: 1.03; }
  .offers-head h2 { font-size: 2.7rem; }
  .portfolio-index { grid-template-columns: 1fr; }
  .portfolio-index p { border-right: 0; }
  .portfolio-index p + p { padding-left: 0; }
  .contact-copy h2 { font-size: 3.1rem; }
  .testimonial-main { padding: 34px 22px 32px; }
  .testimonial-main > p:first-child { font-size: 1.32rem; line-height: 1.58; }
}

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