:root {
  --paper: #f4f3ee;
  --surface: #fbfaf6;
  --ink: #0e0e0c;
  --muted: #6b6b63;
  --line: #dcdcd3;
  --acid: #d6ff30;
  color-scheme: light;
}
.dark {
  --paper: #141414;
  --surface: #1e1e1e;
  --ink: #f4f4f0;
  --muted: #aaa9a1;
  --line: #373733;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
::selection {
  background: var(--acid);
  color: #0e0e0c;
}
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: 8px;
  left: 16px;
  transform: translateY(-160%);
  padding: 10px 20px;
  background: var(--acid);
  color: #0e0e0c;
  z-index: 20;
}
.skip:focus {
  transform: none;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 13px 18px 13px 26px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
}
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.wordmark {
  display: block;
  width: 90px;
}
.wordmark img {
  width: 100%;
  height: auto;
}
.logo-dark,
.dark .logo-light {
  display: none;
}
.dark .logo-dark {
  display: block;
}
.brand-label {
  font-size: 12px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 20px;
  white-space: nowrap;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.nav-link:hover,
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.languages {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 11px;
}
.languages a {
  padding: 6px 9px;
  border-radius: 20px;
  color: var(--muted);
}
.languages a[aria-current] {
  background: var(--ink);
  color: var(--paper);
}
.theme {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 100px;
  background: var(--acid);
  color: #0e0e0c;
  padding: 17px 26px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #00000014;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.small {
  padding: 12px 19px;
  font-size: 12px;
  gap: 20px;
}
.hero {
  padding-top: 76px;
  padding-bottom: 32px;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eyebrow,
.edition,
.index,
.hero-note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.edition {
  color: var(--muted);
}
h1 {
  font-size: clamp(64px, 8.8vw, 132px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.065em;
  margin: 43px 0 38px;
}
h1 em {
  display: inline-block;
  letter-spacing: -0.045em;
  position: relative;
  z-index: 0;
}
h1 em:after {
  content: "";
  position: absolute;
  left: -3%;
  right: -4%;
  bottom: 8%;
  height: 14%;
  background: var(--acid);
  z-index: -1;
  transform: rotate(-2deg);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.intro {
  max-width: 490px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-note {
  font-size: 9px;
  color: var(--muted);
  margin-top: 60px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.work {
  padding-top: 38px;
  padding-bottom: 115px;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-top h2 {
  font-size: 10px;
}
.index {
  color: var(--muted);
  font-size: 9px;
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.product-content {
  padding: 45px 42px;
}
.product-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
.product-icon {
  background: var(--acid);
  border-radius: 11px;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
}
.product-icon img {
  width: 24px;
  height: auto;
}
.category {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.2px;
  margin-top: 40px;
}
.product h3 {
  font-size: clamp(27px, 2.6vw, 37px);
  line-height: 1.2;
  letter-spacing: -1.4px;
  font-weight: 500;
  margin: 13px 0 20px;
}
.product-description {
  max-width: 440px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.product .button {
  margin-top: 30px;
  font-size: 12px;
  padding: 14px 22px;
}
.product-foot {
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
}
.product-preview {
  align-self: stretch;
  background: #e6e7db;
  padding: 60px 0 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-left: 1px solid var(--line);
}
.dark .product-preview {
  background: #25271f;
}
.preview-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: #fbfaf6;
  color: #6b6b63;
  padding: 12px 20px;
  font-size: 9px;
  border: 1px solid #ddd;
  border-bottom: 0;
  border-radius: 12px 0 0 0;
}
.preview-dots {
  font-size: 8px;
  color: #b7b8b0;
  letter-spacing: 3px;
}
.product-preview img {
  width: 100%;
  height: auto;
  border-radius: 0 0 0 12px;
  box-shadow: 0 20px 40px #00000012;
  transition: transform 0.3s;
}
.product-preview:hover img {
  transform: translateY(-3px);
}
.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-block: 0 130px;
}
.studio h2 {
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1.06;
  letter-spacing: -2.9px;
  font-weight: 500;
  margin: 28px 0;
}
.studio-intro > p:last-child {
  max-width: 390px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.principles {
  list-style: none;
  padding: 0;
  margin: 0;
}
.principles li {
  display: flex;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 25px 0 28px;
}
.number {
  font-size: 11px;
  color: var(--muted);
  padding-top: 5px;
}
.principles h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.principles p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
}
.contact {
  background: var(--acid);
  color: #0e0e0c;
}
.contact-inner {
  padding-block: 65px 78px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-top: 32px;
}
.contact h2 {
  font-size: clamp(56px, 6.8vw, 98px);
  line-height: 1;
  letter-spacing: -4px;
  font-weight: 500;
}
.contact-copy {
  max-width: 320px;
  padding-bottom: 6px;
}
.contact-copy p {
  font-size: 15px;
  line-height: 1.7;
}
.email-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  letter-spacing: -0.8px;
  border-bottom: 1px solid #0e0e0c;
  padding-block: 22px 12px;
  margin-bottom: 12px;
}
.email-link:hover span {
  transform: translate(3px, -3px);
}
.email-link span {
  transition: transform 0.2s;
}
.address {
  font-size: 11px;
}
.contact :focus-visible {
  outline-color: #0e0e0c;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-block: 40px;
}
.footer .wordmark {
  width: 78px;
}
.footer p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 11px;
}
.footer-right > span {
  color: var(--muted);
}
@media (min-width: 1500px) {
  h1 {
    font-size: 142px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  nav {
    gap: 18px;
  }
  .brand-label {
    display: none;
  }
  .hero {
    padding-top: 62px;
  }
  .studio {
    gap: 50px;
  }
  .product-content {
    padding: 35px 28px;
  }
  .product-preview {
    padding-left: 24px;
  }
  .nav-contact {
    display: none;
  }
  .hero-note {
    margin-top: 45px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header {
    padding: 12px 14px 12px 19px;
    margin-top: 16px;
    gap: 12px;
  }
  .wordmark {
    width: 73px;
  }
  nav {
    gap: 9px;
  }
  .nav-link {
    display: none;
  }
  .languages a {
    padding: 5px 8px;
  }
  .theme {
    width: 32px;
    height: 32px;
  }
  .hero {
    padding-top: 46px;
  }
  .edition {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  h1 {
    font-size: clamp(53px, 12vw, 82px);
    letter-spacing: -3.6px;
    line-height: 1.08;
    margin: 31px 0 25px;
  }
  .hero-bottom {
    display: block;
  }
  .intro {
    font-size: 15px;
    line-height: 1.8;
    max-width: 430px;
  }
  .hero-bottom .button {
    margin-top: 26px;
    padding: 15px 22px;
    font-size: 12px;
  }
  .hero-note {
    margin-top: 42px;
    line-height: 1.8;
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .work {
    padding-top: 15px;
    padding-bottom: 70px;
  }
  .section-top {
    margin-bottom: 18px;
  }
  .index {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .product {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .product-content {
    padding: 28px 24px;
  }
  .product-heading {
    font-size: 23px;
  }
  .category {
    margin-top: 30px;
  }
  .product h3 {
    font-size: 29px;
    letter-spacing: -1.3px;
  }
  .product-description {
    font-size: 13px;
  }
  .product-foot {
    font-size: 9px;
  }
  .product-preview {
    padding: 28px 0 28px 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .preview-bar {
    font-size: 8px;
  }
  .studio {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 65px;
  }
  .studio h2 {
    font-size: 46px;
    letter-spacing: -2px;
    margin-block: 20px;
  }
  .studio-intro > p:last-child {
    font-size: 14px;
  }
  .principles li {
    gap: 20px;
    padding-block: 22px;
  }
  .principles h3 {
    font-size: 18px;
  }
  .contact-inner {
    padding-block: 45px 50px;
  }
  .contact-row {
    display: block;
    margin-top: 28px;
  }
  .contact h2 {
    font-size: 64px;
    letter-spacing: -3px;
  }
  .contact-copy {
    margin-top: 30px;
    max-width: 100%;
    padding: 0;
  }
  .contact-copy p {
    font-size: 14px;
    max-width: 320px;
  }
  .email-link {
    font-size: 24px;
  }
  .footer {
    align-items: flex-start;
    gap: 25px;
    padding-block: 32px;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer p {
    font-size: 10px;
    max-width: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Gathr uses an editorial product panel while its application is in development. */
.gathr-product {
  margin-top: 28px;
}
.gathr-word {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 49px;
  line-height: 1;
  letter-spacing: -2px;
}
.gathr-poster {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  padding: 48px 40px;
  background: #e8e1f2;
  color: #211a2e;
  border-left: 1px solid var(--line);
}
.gathr-poster > p {
  font-size: clamp(36px, 3.6vw, 53px);
  line-height: 1.1;
  letter-spacing: -2px;
}
.saved-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.saved-tags span {
  font-size: 11px;
  border: 1px solid #bcb3c9;
  border-radius: 50px;
  padding: 8px 14px;
}
.poster-url {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding-top: 15px;
  border-top: 1px solid #bcb3c9;
}
.gathr-poster:hover .poster-url > span {
  transform: translate(3px, -3px);
}
@media (max-width: 700px) {
  .gathr-poster {
    padding: 35px 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
    gap: 28px;
  }
  .gathr-poster > p {
    font-size: 40px;
  }
  .footer-right {
    gap: 13px;
  }
}
