:root {
  --paper: #f4ede4;
  --paper-deep: #e9ded1;
  --ink: #282829;
  --muted: #6e675f;
  --gold: #a97836;
  --gold-light: #d9b77f;
  --line: rgba(40, 40, 41, 0.2);
  --dark-line: rgba(244, 237, 228, 0.26);
  --display: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 5rem;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 237, 228, 0.95);
}

.site-header__inner,
.section-shell,
.site-footer__inner {
  width: min(calc(100% - 3rem), var(--shell));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark__dark {
  color: var(--ink);
}

.wordmark__gold {
  color: var(--gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3.2vw, 3.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  color: var(--muted);
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 0.12rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--ink);
}

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

.hero {
  display: grid;
  width: min(calc(100% - 3rem), 1440px);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 10rem);
}

.hero__copy {
  max-width: 38rem;
  padding-left: clamp(0rem, 2vw, 2rem);
}

.ornament {
  display: flex;
  width: min(11.5rem, 70%);
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ornament span {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--ink);
}

.ornament i {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__fact,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.approach h2,
.closing h2 {
  margin: 1.15rem 0 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3.8rem, 7.7vw, 8.3rem);
}

.hero__body {
  max-width: 25rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 3.25rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link__arrow {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 0.8;
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.text-link:hover .text-link__arrow,
.text-link:focus-visible .text-link__arrow {
  transform: translate(0.2rem, 0.2rem);
}

.brand-mark {
  position: relative;
  display: grid;
  width: min(100%, 43rem, calc(100svh - var(--header-height) - 10rem));
  margin: 0 0 0 auto;
  place-items: center;
}

.brand-mark__line {
  position: absolute;
  top: 7%;
  right: 7%;
  bottom: 7%;
  left: 7%;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-8deg) scaleX(0.83);
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

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

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.section-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.approach h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6.2vw, 7.1rem);
}

.approach__intro {
  max-width: 38rem;
  margin: 0 0 clamp(3.5rem, 8vw, 7rem);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: minmax(10rem, 0.68fr) minmax(0, 1.32fr);
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0 1.75rem;
}

.principle h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.principle p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.closing {
  border-top: 1px solid var(--gold);
  background: var(--ink);
  color: var(--paper);
}

.closing__inner {
  width: min(calc(100% - 3rem), 920px);
  margin: 0 auto;
  padding: clamp(6rem, 13vw, 13rem) 0 clamp(6.5rem, 14vw, 14rem);
  text-align: center;
}

.closing .section-label {
  color: var(--gold-light);
}

.closing h2 {
  color: var(--gold-light);
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.closing p:last-child {
  max-width: 32rem;
  margin: 2rem auto 0;
  color: rgba(244, 237, 228, 0.72);
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--dark-line);
  background: var(--ink);
  color: rgba(244, 237, 228, 0.72);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy > * {
  animation: rise-in 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero__copy > *:nth-child(3) {
  animation-delay: 150ms;
}

.hero__copy > *:nth-child(4) {
  animation-delay: 220ms;
}

.hero__copy > *:nth-child(5) {
  animation-delay: 300ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .hero__copy {
    max-width: 40rem;
    padding-left: 0;
  }

  .brand-mark {
    width: min(100%, 36rem);
    margin: 0 auto;
  }

  .approach__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .section-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header__inner,
  .section-shell,
  .site-footer__inner,
  .closing__inner,
  .hero {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 0;
  }

  .nav-list {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(3.4rem, 17vw, 5.8rem);
  }

  .hero__body {
    max-width: 19rem;
    font-size: 1.35rem;
  }

  .brand-mark {
    width: min(100%, 24rem);
  }

  .approach__grid {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .approach h2 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.35rem 0 1.5rem;
  }

  .closing__inner {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }

  .closing h2 {
    font-size: clamp(3.3rem, 16vw, 5.8rem);
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
