@font-face {
  font-family: "Archivo Black";
  src: url("assets/fonts/archivo-black.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-400.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-500.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-600.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --ink: #131514;
  --paper: #f3f0e8;
  --white: #fffef8;
  --orange: #ff5a36;
  --blue: #1748e8;
  --yellow: #e9ff54;
  --line: rgba(19, 21, 20, 0.24);
  --page-pad: 64px;
  --display: "Archivo Black", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

body,
a,
button {
  cursor: default;
}

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

a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1,
h2,
h3,
.wordmark {
  font-family: var(--display);
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar,
.site-header,
.hero,
.work-section,
.services-section,
.process-section,
.site-footer {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.utility-bar {
  display: grid;
  min-height: 34px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.utility-bar span:nth-child(2) {
  text-align: center;
}

.utility-bar span:last-child {
  text-align: right;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.94);
  backdrop-filter: blur(12px);
}

.wordmark {
  font-size: 18px;
  text-transform: uppercase;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header .language-switcher {
  justify-self: end;
  gap: 12px;
}

.language-switcher a {
  padding: 6px 0;
  color: rgba(19, 21, 20, 0.5);
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: var(--ink);
}

.language-switcher a[aria-current="page"] {
  border-bottom: 2px solid var(--blue);
}

.site-header nav a,
.header-email,
.site-footer nav a {
  transition: color 160ms ease;
}

.site-header nav a:hover,
.header-email:hover,
.site-footer nav a:hover {
  color: var(--orange);
}

.header-email {
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  display: flex;
  min-height: 690px;
  padding-top: 52px;
  padding-bottom: 42px;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  display: flex;
  margin: 28px 0 44px;
  flex-direction: column;
  font-size: 152px;
  line-height: 0.83;
  text-transform: uppercase;
}

h1 span:last-child {
  align-self: flex-end;
  color: var(--blue);
}

.hero-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: end;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.hero-footer > p {
  max-width: 590px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.3;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.action-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.action-link {
  min-width: 190px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 72px;
}

.section-heading > p,
.contact-section > p,
.vertical-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 62px;
  line-height: 1.02;
}

.work-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.75fr);
  align-items: start;
  gap: 52px;
  padding: 42px 0 96px;
  border-top: 1px solid var(--ink);
}

.project-florista {
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.65fr);
}

.project-florista .project-image {
  grid-column: 2;
}

.project-florista .project-copy {
  grid-column: 1;
  grid-row: 1;
}

.project-image {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.project-image img {
  aspect-ratio: 1.44;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project-image:hover img {
  transform: scale(1.025);
}

.project-copy {
  padding-top: 2px;
}

.project-index,
.project-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-index {
  margin-bottom: 52px;
}

.project-type {
  margin-bottom: 10px;
  color: var(--blue);
}

.project-copy h3 {
  margin-bottom: 24px;
  font-size: 52px;
  line-height: 1;
}

.project-copy > p:not(.project-type) {
  font-size: 17px;
  line-height: 1.55;
}

.project-copy ul {
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.project-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
}

.text-link {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}

.work-disclosure {
  max-width: 650px;
  margin: 0 0 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(19, 21, 20, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.services-section {
  padding-top: 112px;
  padding-bottom: 112px;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.service-grid article {
  min-height: 310px;
  padding: 28px 34px 34px 0;
}

.service-grid article + article {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.service-grid span {
  color: var(--yellow);
  font-size: 12px;
}

.service-grid h3 {
  margin: 72px 0 20px;
  font-size: 32px;
}

.service-grid p {
  margin-bottom: 0;
  color: rgba(255, 254, 248, 0.72);
  line-height: 1.55;
}

.process-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 94px;
  grid-template-columns: 0.45fr 0.8fr 1.4fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--ink);
}

.process-list span,
.process-list strong {
  font-size: 12px;
  text-transform: uppercase;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(19, 21, 20, 0.68);
}

.scope-note {
  display: grid;
  margin-top: 78px;
  padding: 34px 0;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.scope-note p,
.scope-note strong {
  margin-bottom: 0;
  text-transform: uppercase;
}

.scope-note p {
  font-size: 12px;
  font-weight: 600;
}

.scope-note strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
}

.scope-note span {
  line-height: 1.5;
}

.about-section {
  display: grid;
  min-height: 720px;
  padding: 110px var(--page-pad);
  grid-template-columns: 0.6fr 2fr;
  gap: 48px;
  background: var(--blue);
  color: var(--white);
}

.about-section h2 {
  margin-bottom: 50px;
  font-size: 88px;
  line-height: 0.95;
}

.about-section > div > p {
  max-width: 760px;
  font-size: 23px;
  line-height: 1.45;
}

.about-section dl {
  max-width: 760px;
  margin: 72px 0 0;
}

.about-section dl > div {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.about-section dl > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.about-section dt {
  font-size: 11px;
  text-transform: uppercase;
}

.about-section dd {
  margin: 0;
}

.about-section dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  padding: 110px var(--page-pad) 52px;
  background: var(--orange);
}

.contact-section h2 {
  max-width: 1000px;
  margin: 90px 0 70px;
  font-size: 88px;
  line-height: 0.93;
}

.contact-section > a {
  display: flex;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 36px;
  overflow-wrap: anywhere;
}

.contact-foot {
  display: flex;
  margin-top: 48px;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  min-height: 110px;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 34px;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 11px;
  text-transform: uppercase;
}

.legal-page {
  min-height: 100vh;
  padding: 48px var(--page-pad) 100px;
}

.legal-header {
  display: flex;
  padding-bottom: 32px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.legal-content {
  display: grid;
  max-width: 1100px;
  margin-top: 80px;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
}

.legal-content h1 {
  display: block;
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
}

.legal-copy h2 {
  margin: 48px 0 14px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  line-height: 1.65;
}

.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  :root {
    --page-pad: 32px;
  }

  h1 {
    font-size: 112px;
  }

  .hero-footer {
    grid-template-columns: 1.4fr 1fr;
  }

  .hero-footer .action-link {
    grid-column: 2;
  }

  .project,
  .project-florista {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  }

  .about-section h2,
  .contact-section h2 {
    font-size: 72px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
  }

  .utility-bar {
    grid-template-columns: 1fr 1fr;
  }

  .utility-bar span:nth-child(2) {
    text-align: right;
  }

  .utility-bar span:last-child {
    display: none;
  }

  .site-header {
    min-height: 62px;
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .site-header .language-switcher {
    display: flex;
    grid-column: 2;
    gap: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 670px;
    padding-top: 32px;
    background-size: 50% 100%, 50% 100%;
  }

  h1 {
    margin: 62px 0;
    font-size: 72px;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-footer > p {
    font-size: 20px;
  }

  .hero-footer .action-link {
    grid-column: auto;
  }

  .action-link {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 48px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .work-section,
  .services-section,
  .process-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .project,
  .project-florista {
    display: flex;
    padding: 28px 0 72px;
    flex-direction: column;
    gap: 28px;
  }

  .project-florista .project-image,
  .project-florista .project-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .project-index {
    margin-bottom: 28px;
  }

  .project-copy h3 {
    font-size: 42px;
  }

  .work-disclosure {
    margin-left: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 250px;
    padding: 28px 0;
  }

  .service-grid article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .service-grid h3 {
    margin-top: 54px;
  }

  .process-list li {
    min-height: 130px;
    grid-template-columns: 0.35fr 1fr;
    gap: 16px;
  }

  .process-list p {
    grid-column: 2;
    margin-top: -18px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-section {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-section h2,
  .contact-section h2 {
    font-size: 52px;
  }

  .about-section > div > p {
    font-size: 19px;
  }

  .about-section dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section {
    padding-top: 76px;
  }

  .contact-section h2 {
    margin-top: 70px;
  }

  .contact-section > a {
    font-size: 22px;
  }

  .contact-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer {
    min-height: 180px;
    padding-top: 28px;
    padding-bottom: 28px;
    grid-template-columns: 1fr auto;
    align-content: center;
  }

  .site-footer > p:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .legal-page {
    padding-top: 28px;
  }

  .legal-content {
    margin-top: 56px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-content h1 {
    font-size: 52px;
  }
}

:lang(zh-CN) .section-heading h2,
:lang(zh-CN) .project-copy h3,
:lang(zh-CN) .service-grid h3,
:lang(zh-CN) .about-section h2,
:lang(zh-CN) .contact-section h2 {
  line-height: 1.12;
}

@media (max-width: 390px) {
  h1 {
    font-size: 64px;
  }

  .contact-section > a {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
