:root {
  --primary: #3B4A5A;
  --secondary: #2A3542;
  --accent: #556779;
  --background: #F8F8F6;
  --background-about: #F3F4F2;
  --background-tint: #F0F2F1;
  --background-step: #E9ECEB;
  --text: #1F1F1F;
  --white: #FFFFFF;
  --line: rgba(42, 53, 66, .18);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  color-scheme: only light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background-color: var(--background);
  color: var(--text);
  color-scheme: only light;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

button,
a,
input,
select,
textarea {
  font: inherit;
  color-scheme: light;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(85, 103, 121, .45);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--secondary);
  color: var(--white);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 17px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  background: rgba(248, 248, 246, .86);
  color: var(--text);
  backdrop-filter: blur(16px);
  transition: min-height .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  border-bottom-color: var(--line);
  background: rgba(248, 248, 246, .96);
}

.site-brand {
  width: fit-content;
  color: var(--secondary);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(31, 31, 31, .5);
  font-size: 12px;
}

.language-switch button {
  min-width: 34px;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--text);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 130px clamp(24px, 8vw, 140px) 80px;
  overflow: hidden;
  background-color: var(--background);
  color: var(--text);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, rgba(248,248,246,.98) 12%, rgba(248,248,246,.88) 47%, rgba(248,248,246,.36) 100%);
}

.hero-mark {
  position: absolute;
  z-index: -3;
  right: -4vw;
  bottom: 1vh;
  width: min(74vw, 1120px);
  height: min(58vw, 720px);
  overflow: hidden;
  opacity: .19;
  mix-blend-mode: multiply;
}

.hero-mark img {
  width: 100%;
  height: auto;
  transform: translateY(-9%);
}

.hero-content {
  width: min(860px, 78vw);
}

.eyebrow,
.section-number {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--secondary);
  font-family: var(--display);
  font-size: clamp(50px, 6.4vw, 104px);
  font-weight: 400;
  line-height: .98;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 28px;
  color: var(--primary);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--accent);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-index {
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  bottom: 25px;
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 140px) 0;
}

.about,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(360px, 1.28fr);
  gap: clamp(56px, 8vw, 124px);
}

.about {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background-color: var(--background-about);
  box-shadow: 0 0 0 100vmax var(--background-about);
  clip-path: inset(0 -100vmax);
  color: var(--text);
}

.about::before {
  position: absolute;
  z-index: -1;
  bottom: -4%;
  left: -11vw;
  width: min(700px, 56vw);
  height: 58%;
  content: "";
  pointer-events: none;
  opacity: .72;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 520' fill='none'%3E%3Cpath d='M18 384C168 358 216 177 402 166C557 157 590 286 742 246' stroke='%23556779' stroke-opacity='.17' stroke-width='1.5'/%3E%3Cpath d='M86 445C246 433 295 268 454 269C585 270 621 354 724 343' stroke='%233B4A5A' stroke-opacity='.11' stroke-width='1.1'/%3E%3C/svg%3E");
}

.section-heading {
  display: contents;
}

.section-heading > div {
  grid-column: 1;
}

.section-heading h2,
.photographs h2 {
  margin: 0;
  color: var(--secondary);
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.section-number {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.about-copy,
.contact-content {
  grid-column: 2;
  padding-top: 40px;
}

.about-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.7;
}

.approach {
  border-top: 1px solid var(--line);
  background-color: var(--background);
  color: var(--text);
}

.approach .section-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(56px, 8vw, 124px);
}

.approach .section-heading > div {
  grid-column: 2;
}

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

.principles li {
  display: grid;
  grid-template-columns: 80px minmax(180px, .7fr) minmax(280px, 1.3fr);
  align-items: start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.principles li > span {
  color: var(--accent);
  font-size: 12px;
}

.principles h3 {
  margin: 0;
  color: var(--primary);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
}

.principles p {
  max-width: 610px;
  margin: 5px 0 0;
  color: #3b3b3b;
  font-size: 18px;
}

.collaborations {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--background-step);
  color: var(--text);
}

.collaborations::before {
  position: absolute;
  z-index: -1;
  top: 3%;
  left: -9%;
  width: min(700px, 54vw);
  height: 94%;
  content: "";
  pointer-events: none;
  opacity: .75;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 500' fill='none'%3E%3Cpath d='M-22 344C126 330 153 195 296 178C433 162 497 255 708 209' stroke='%233B4A5A' stroke-opacity='.14' stroke-width='1.45'/%3E%3Cpath d='M-42 406C101 398 198 279 323 280C442 281 512 338 674 308' stroke='%23556779' stroke-opacity='.09' stroke-width='1.1'/%3E%3C/svg%3E");
}

.collaborations-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(360px, 1.28fr);
  gap: clamp(56px, 8vw, 124px);
  padding: clamp(78px, 9vw, 140px) 0;
}

.collaborations .section-heading {
  display: contents;
}

.collaborations .section-heading > div {
  grid-column: 1;
}

.collaborations .section-heading h2 {
  margin: 0;
  color: var(--secondary);
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.collaborations-copy {
  grid-column: 2;
  padding-top: 34px;
}

.collaborations-copy p {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.68;
}

.photographs {
  background-color: var(--secondary);
  color: var(--white);
}

.photographs-inner {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  min-height: min(72vh, 740px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px minmax(0, 760px) 1fr;
  align-items: center;
  gap: 50px;
  padding: clamp(78px, 9vw, 130px) 0;
  overflow: hidden;
}

.photographs-copy {
  grid-column: 2;
}

.photographs .section-number,
.photographs .eyebrow {
  color: rgba(255, 255, 255, .62);
}

.photographs h2 {
  color: var(--white);
}

.photographs-copy p:last-child {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 19px;
}

.photographs-line {
  position: absolute;
  right: -9%;
  bottom: 15%;
  width: 46%;
  height: 160px;
  transform: rotate(-7deg);
  border-top: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.photographs-line span {
  position: absolute;
  top: 52px;
  right: 7%;
  width: 72%;
  height: 100px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 60vh;
  align-content: center;
  background-color: var(--background-tint);
  box-shadow: 0 0 0 100vmax var(--background-tint);
  clip-path: inset(0 -100vmax);
  color: var(--text);
}

.contact::after {
  position: absolute;
  z-index: -1;
  bottom: -20%;
  left: -13vw;
  width: min(720px, 58vw);
  height: 68%;
  content: "";
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 820 500' fill='none'%3E%3Cpath d='M18 372C170 339 227 172 410 169C568 166 633 299 802 238' stroke='%233B4A5A' stroke-opacity='.14' stroke-width='1.35'/%3E%3Cpath d='M89 438C252 408 305 281 464 281C602 281 680 347 809 314' stroke='%23556779' stroke-opacity='.09' stroke-width='1.05'/%3E%3C/svg%3E");
}

.contact-content > p {
  max-width: 650px;
  margin: 0 0 44px;
  font-size: clamp(18px, 1.7vw, 22px);
}

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

.social-groups h3 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
}

.social-links a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--secondary);
  text-decoration: none;
}

.site-footer {
  position: relative;
  min-height: 176px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px clamp(24px, 5vw, 80px);
  overflow: hidden;
  background-color: var(--secondary);
  color: var(--white);
}

.site-footer::before {
  position: absolute;
  right: 12%;
  bottom: -18px;
  width: min(640px, 48vw);
  height: 112px;
  content: "";
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 112' fill='none'%3E%3Cpath d='M5 84C133 76 179 28 318 30C446 32 491 78 635 51' stroke='white' stroke-opacity='.24' stroke-width='1.3'/%3E%3Cpath d='M126 104C244 88 282 58 391 61C491 64 535 88 614 80' stroke='white' stroke-opacity='.13' stroke-width='1.05'/%3E%3C/svg%3E");
}

.site-footer strong {
  font-family: var(--display);
  font-size: 24px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.footer-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
}

.footer-meta a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}

.footer-meta {
  grid-column: 2;
  justify-self: end;
  color: rgba(255,255,255,.55);
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 110px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 12px 20px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 93svh;
    padding: 150px 24px 74px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 66px);
    line-height: 1.01;
  }

  .hero-mark {
    right: -42%;
    bottom: 5%;
    width: 130vw;
    height: 85vw;
    opacity: .15;
  }

  .about::before {
    display: none;
  }

  .hero-index {
    display: none;
  }

  .section-shell,
  .photographs-inner,
  .collaborations-inner {
    width: min(100% - 40px, 680px);
  }

  .about,
  .contact,
  .approach .section-heading,
  .collaborations-inner {
    display: block;
  }

  .section-number {
    margin-bottom: 44px;
  }

  .about-copy,
  .contact-content,
  .collaborations-copy {
    padding-top: 48px;
  }

  .principles {
    margin-top: 60px;
  }

  .principles li {
    grid-template-columns: 42px 1fr;
    gap: 8px 18px;
    padding: 28px 0;
  }

  .principles h3 {
    grid-column: 2;
  }

  .principles p {
    grid-column: 2;
    font-size: 16px;
  }

  .photographs-inner {
    min-height: 74svh;
    display: block;
  }

  .photographs-copy {
    grid-column: auto;
    padding-top: 30px;
  }

  .photographs-line {
    right: -25%;
    bottom: 6%;
    width: 75%;
  }

  .collaborations::before {
    top: 18%;
    left: -52%;
    width: 120vw;
    height: 58%;
    opacity: .66;
  }

  .contact::after {
    display: none;
  }

  .social-groups {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 164px;
    gap: 22px;
    padding: 34px 24px max(36px, env(safe-area-inset-bottom));
  }

  .site-footer::before {
    right: -34%;
    bottom: -20px;
    width: 108vw;
    opacity: .95;
  }

  .footer-meta {
    grid-column: auto;
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-shell,
  .photographs-inner,
  .collaborations-inner {
    width: calc(100% - 32px);
  }
}

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

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

@media print {
  .site-header,
  .skip-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }
}
