@font-face {
  font-family: "Brandon Grotesque";
  src: url("../fonts/brandon-grotesque-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Brandon Grotesque";
  src: url("../fonts/brandon-grotesque-regular-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ivory: #f0e9de;
  --muted: rgba(240, 233, 222, .66);
  --hairline: rgba(240, 233, 222, .22);
  --site-header-height: 88px;
  --display-heading-size: clamp(42px, 4.5vw, 76px);
  color-scheme: dark;
  background: #000;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { background: #000; }
body { color: var(--ivory); overflow-x: hidden; background: #080706; }
body.menu-open { overflow: hidden; }
main { padding-top: var(--site-header-height); }
img { display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.menu-topline,
.site-menu nav,
h1,
h2,
.availability {
  font-family: "Brandon Grotesque", sans-serif;
  font-weight: 700;
}

.eyebrow,
.supporting-copy,
.menu-footnote,
blockquote {
  font-family: "Brandon Grotesque", sans-serif;
  font-style: italic;
  font-weight: 400;
}

.site-header {
  --logo-half-width: 14px;
  --header-item-gap: 24px;
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--site-header-height);
  padding: 0 42px;
  display: block;
  overflow: hidden;
  background: #000;
}

.brand-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: auto;
  min-width: 0;
  height: 61px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-items: center;
}
.header-wordmark,
.shop-link {
  position: relative;
  color: var(--ivory);
  font-family: "Brandon Grotesque", sans-serif;
  font-size: 15.4px;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1;
}
.header-wordmark::after,
.shop-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
}
.header-wordmark:hover::after,
.header-wordmark:focus-visible::after,
.shop-link:hover::after,
.shop-link:focus-visible::after { transform: scaleX(1); }
.header-logo {
  width: auto;
  height: 61px;
  object-fit: contain;
  object-position: center top;
  filter: none;
  background: transparent;
}
.shop-link {
  position: absolute;
  top: 50%;
  left: calc(50% + var(--logo-half-width) + var(--header-item-gap));
  transform: translateY(-50%);
  z-index: 3;
  margin: 0;
  padding: 0;
}
.header-wordmark {
  position: absolute;
  top: 50%;
  right: calc(50% + var(--logo-half-width) + var(--header-item-gap));
  transform: translateY(-50%);
  z-index: 3;
  white-space: nowrap;
}
.brand-trigger:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }
.shop-link:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }

.site-menu {
  position: fixed;
  z-index: 60;
  inset: 0;
  padding: 28px 42px 36px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #080706;
  visibility: hidden;
  opacity: 0;
}
.site-menu.is-open { visibility: visible; opacity: 1; }
.menu-topline { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .12em; }
.menu-topline button { padding: 0; border: 0; background: none; color: var(--muted); cursor: pointer; letter-spacing: .12em; }
.site-menu nav { align-self: center; display: grid; width: min(820px, 86vw); }
.site-menu nav a {
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 30px;
  border-bottom: 1px solid rgba(240,233,222,.12);
  font-size: clamp(44px, 6.2vw, 100px);
  line-height: .95;
  letter-spacing: -.04em;
}
.site-menu nav a:hover,
.site-menu nav a:focus-visible { padding-left: 14px; color: #c99c63; outline: 0; }
.site-menu nav span { color: var(--muted); font-size: 11px; font-style: italic; font-weight: 400; letter-spacing: .12em; }
.menu-footnote { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .14em; }

.media-chapter {
  position: relative;
  height: 118svh;
  overflow: hidden;
  background: #000;
}

.media-sticky {
  position: relative;
  height: 118svh;
  overflow: hidden;
  background: #000;
}

.media-chapter--hero,
.media-chapter--hero .media-sticky { height: calc(100svh - var(--site-header-height)); }

.media-chapter--relief,
.media-chapter--filament,
.media-chapter--control {
  height: auto;
  aspect-ratio: 6016 / 2665;
}
.media-chapter--relief .media-sticky,
.media-chapter--filament .media-sticky,
.media-chapter--control .media-sticky { height: 100%; }

.media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-chapter--hero .media-image {
  object-position: center;
}
.media-chapter--relief .media-image,
.media-chapter--filament .media-image,
.media-chapter--control .media-image {
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center;
}

h1, h2 {
  margin: 15px 0 0;
  font-size: var(--display-heading-size);
  line-height: .81;
  letter-spacing: -.043em;
}
.eyebrow { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .16em; }
.supporting-copy {
  width: min(470px, 100%);
  margin: 25px 0 0;
  color: rgba(240,233,222,.78);
  font-size: 17px;
  line-height: 1.5;
}
.availability {
  margin-top: 28px;
  padding-bottom: 6px;
  display: inline-block;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
}

.text-chapter {
  position: relative;
  min-height: auto;
  padding: clamp(56px, 7vh, 88px) 6vw;
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(280px, .75fr);
  gap: 5vw;
  align-items: center;
  background: #0a0908;
  border-top: 1px solid rgba(240,233,222,.08);
  border-bottom: 1px solid rgba(240,233,222,.08);
}

.text-chapter__title h1,
.text-chapter__title h2 { margin: 0; font-size: var(--display-heading-size); }
.text-chapter__body {
  align-self: center;
  max-width: 520px;
  color: rgba(240,233,222,.72);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
}
.text-chapter__body p { margin: 0; }

.site-footer {
  min-height: auto;
  padding: 34px 6vw 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 3vw;
  align-items: start;
  background: #080706;
  border-top: 1px solid rgba(240,233,222,.12);
}
.footer-location,
.footer-meta {
  font-family: "Brandon Grotesque", sans-serif;
  font-style: italic;
  font-weight: 400;
}
.footer-nav { display: grid; align-content: start; gap: 8px; font-family: "Brandon Grotesque", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.footer-nav a,
.footer-location a,
.footer-meta a { width: fit-content; border-bottom: 1px solid transparent; }
.footer-nav a:hover,
.footer-location a:hover,
.footer-meta a:hover { border-color: currentColor; }
.footer-location { color: var(--muted); font-size: 10px; line-height: 1.5; letter-spacing: .08em; }
.footer-location p { margin: 0 0 8px; color: var(--ivory); }
.footer-location address { margin-bottom: 8px; font: inherit; }
.footer-meta { display: grid; align-content: start; gap: 9px; color: var(--muted); font-size: 9px; line-height: 1.5; letter-spacing: .1em; }

@media (max-width: 767px) {
  :root {
    --site-header-height: 64px;
    --display-heading-size: clamp(34px, 9.5vw, 44px);
  }
  .site-header {
    --logo-half-width: 12px;
    --header-item-gap: 16px;
    height: var(--site-header-height);
    padding: 0 18px;
  }
  .brand-trigger { min-width: 0; height: 53px; gap: 0; }
  .header-wordmark,
  .shop-link { font-size: 13.2px; }
  .header-logo { height: 53px; }
  .site-menu { padding: 22px 18px 26px; }
  .site-menu nav { width: 100%; }
  .site-menu nav a { padding: 12px 0; gap: 18px; font-size: clamp(40px,13vw,64px); }

  .media-chapter,
  .media-sticky { height: 108svh; }
  .media-chapter--hero,
  .media-chapter--hero .media-sticky { height: calc(100svh - var(--site-header-height)); }
  .media-chapter--relief,
  .media-chapter--filament,
  .media-chapter--control {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }
  .media-image { width: 100%; height: 100%; }
  .media-chapter--hero .media-image { object-position: center top; }
  .media-chapter--relief .media-image,
  .media-chapter--filament .media-image,
  .media-chapter--control .media-image {
    object-fit: cover;
    object-position: 50% 50%;
  }
  h1, h2 { line-height: .83; }
  .eyebrow { font-size: 9px; }
  .supporting-copy { width: min(355px,91vw); margin-top: 20px; font-size: 14px; }

  .text-chapter {
    min-height: auto;
    padding: 46px 20px 42px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  .text-chapter__body { align-self: auto; font-size: 16px; }

  .site-footer {
    min-height: auto;
    padding: 28px 20px 22px;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: auto;
    gap: 22px 18px;
  }
  .footer-location,
  .footer-meta { align-self: start; }
}
