:root {
  color-scheme: light;
  --forest: #282c11;
  --forest-deep: #191d0a;
  --olive: #64652b;
  --olive-light: #898650;
  --cream: #faf0e1;
  --paper: #fffaf1;
  --mustard: #b7ac2c;
  --walnut: #8a5637;
  --brick: #a65f47;
  --ink: #28271f;
  --muted: #6d695d;
  --line: rgba(40, 39, 31, 0.22);
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --header-height: 78px;
  --shell: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-is-open,
body.lightbox-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

::selection {
  background: var(--mustard);
  color: var(--forest-deep);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.page-blank {
  min-height: clamp(300px, 48vh, 560px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--forest);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--ink {
  color: var(--olive);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: var(--forest);
  border-bottom: 1px solid rgba(250, 240, 225, 0.18);
}

.site-header__inner {
  width: min(1240px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand__crop {
  position: relative;
  display: block;
  width: 216px;
  height: 58px;
  overflow: hidden;
}

.brand__crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 238px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 52px);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 11px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--mustard);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(250, 240, 225, 0.36);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.6rem;
}

.button {
  min-height: 54px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--forest {
  background: var(--forest);
  color: var(--cream);
}

.button--forest:hover {
  background: var(--olive);
}

.button--line {
  border-color: currentColor;
  color: var(--forest);
}

.button--line:hover {
  background: var(--forest);
  color: var(--cream);
}

.button--cream {
  background: var(--cream);
  color: var(--forest);
}

.button--cream:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading h2 {
  max-width: 780px;
  margin-top: 14px;
}

.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
}

.site-footer__inner {
  min-height: 138px;
  padding-block: 36px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.site-footer__brand span {
  display: block;
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--mustard);
}

.site-footer__address {
  justify-self: end;
  color: rgba(250, 240, 225, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.site-footer__legal {
  padding-block: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  border-top: 1px solid rgba(250, 240, 225, 0.14);
  color: rgba(250, 240, 225, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.site-footer__legal nav {
  display: flex;
  gap: 22px;
}

.site-footer__legal a {
  color: rgba(250, 240, 225, 0.62);
  transition: color 200ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--mustard);
}

.site-footer__legal a[aria-current="page"] {
  color: var(--cream);
}

.social-link {
  padding: 8px;
  margin: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 240, 225, 0.68);
  font-size: 1.35rem;
  line-height: 1;
  transition: color 200ms ease, transform 220ms var(--ease);
}

.site-footer__legal .social-link:hover,
.site-footer__legal .social-link:focus-visible {
  color: var(--mustard);
  transform: translateY(-2px);
}

.nav-social {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
    --shell: min(100% - 36px, 680px);
  }

  .site-header__inner {
    width: min(100% - 28px, 740px);
  }

  .brand__crop {
    width: 178px;
    height: 52px;
  }

  .brand__crop img {
    width: 202px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    padding: 48px 28px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--forest);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 240ms ease, transform 240ms var(--ease), visibility 240ms;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(250, 240, 225, 0.22);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-social {
    width: 100%;
    margin-top: 44px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    color: var(--cream);
    font-size: 2.1rem;
    line-height: 1;
    transition: color 200ms ease, transform 220ms var(--ease);
  }

  .site-nav .nav-social:hover,
  .site-nav .nav-social:focus-visible {
    color: var(--mustard);
    transform: translateY(-2px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer__address {
    justify-self: start;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 460px) {
  :root {
    --shell: min(100% - 28px, 420px);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
