:root {
  --ink: #0a0a0a;
  --ivory: #f1ece2;
  --paper: #f7f4ed;
  --gold: #caa358;
  --green: #1b3a2e;
  --brown: #3a2c22;
  --navy: #0d1b2a;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(10, 10, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

.announcement {
  height: 30px;
  padding: 0 3.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 3.2vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(241, 236, 226, 0.28);
  color: var(--ivory);
}

.brand {
  width: 126px;
  height: 38px;
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(26px, 3vw, 54px);
}

.nav a,
.header-link {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a::after,
.header-link::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav a:hover::after,
.header-link:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 30px);
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background: var(--brown);
  color: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 38%, rgba(202, 163, 88, 0.17), transparent 32%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.34), transparent 53%);
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 160px 5vw 9vh;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 1px;
  margin: 0 15px 3px 0;
  background: var(--gold);
}

.eyebrow.light {
  color: var(--gold);
}

.hero h1,
.collection h2,
.craft h2,
.private-access h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(70px, 9.3vw, 150px);
  line-height: 0.79;
}

.hero-intro {
  max-width: 420px;
  margin: 43px 0 36px 8.5vw;
  color: rgba(241, 236, 226, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.75;
}

.text-link {
  margin-left: 8.5vw;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.hero-visual {
  position: relative;
  min-height: calc(100vh - 30px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
  animation: heroReveal 1.25s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 44, 34, 0.5), transparent 28%, rgba(10, 10, 10, 0.2));
}

.image-note {
  position: absolute;
  z-index: 2;
  right: 3.2vw;
  bottom: 7vh;
  margin: 0;
  padding-left: 25px;
  border-left: 1px solid var(--gold);
  color: rgba(241, 236, 226, 0.68);
  font-family: Georgia, serif;
  font-size: 11px;
  line-height: 1.7;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: 3.2vw;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right top;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.hero-index i {
  width: 55px;
  height: 1px;
  display: block;
  background: rgba(241, 236, 226, 0.45);
}

.manifesto {
  min-height: 78vh;
  padding: 12vh 8vw;
  display: grid;
  grid-template-columns: 25% 75%;
  align-content: center;
  background: var(--ink);
  color: var(--ivory);
}

.manifesto .eyebrow {
  padding-top: 18px;
}

.manifesto-line {
  max-width: 980px;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.manifesto-copy {
  grid-column: 2;
  max-width: 520px;
  margin: 58px 0 0 23%;
  color: rgba(241, 236, 226, 0.62);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.9;
}

.collection {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--paper);
}

.editorial-image-wrap {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: var(--brown);
}

.editorial-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vertical-caption {
  position: absolute;
  left: 27px;
  bottom: 35px;
  color: var(--ivory);
  font-size: 8px;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.collection-copy {
  padding: 12vh 7vw 8vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection h2 {
  font-size: clamp(66px, 7.7vw, 122px);
  line-height: 0.85;
}

.collection-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 46px 0 42px;
  color: rgba(10, 10, 10, 0.65);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.85;
}

.product-data {
  margin: 0 0 48px;
  border-top: 1px solid var(--line-light);
}

.product-data div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-data dt {
  color: rgba(10, 10, 10, 0.48);
}

.product-data dd {
  margin: 0;
}

.dark-button {
  width: fit-content;
  padding: 17px 27px;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.dark-button:hover {
  background: transparent;
  color: var(--ink);
}

.craft {
  padding: 13vh 8vw 12vh;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 5vw;
  background: var(--green);
  color: var(--ivory);
}

.craft h2 {
  font-size: clamp(55px, 5.7vw, 91px);
  line-height: 0.94;
}

.craft-grid {
  display: grid;
  align-content: end;
}

.craft-grid article {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 50px 1fr 2.1fr;
  gap: 28px;
  align-items: baseline;
  border-top: 1px solid var(--line-dark);
}

.craft-grid article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.craft-grid span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.craft-grid h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.craft-grid p {
  margin: 0;
  color: rgba(241, 236, 226, 0.65);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.7;
}

.private-access {
  position: relative;
  min-height: 72vh;
  padding: 12vh 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--ivory);
}

.access-mark {
  position: absolute;
  width: min(62vw, 760px);
  opacity: 0.055;
  filter: grayscale(1);
}

.private-access > *:not(.access-mark) {
  position: relative;
  z-index: 1;
}

.private-access h2 {
  max-width: 900px;
  font-size: clamp(48px, 6vw, 94px);
  line-height: 0.95;
}

.private-access > p:not(.eyebrow) {
  max-width: 530px;
  margin: 27px auto 37px;
  color: rgba(10, 10, 10, 0.58);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.75;
}

.private-access form {
  width: min(550px, 100%);
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.private-access input {
  flex: 1;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 14px;
}

.private-access input::placeholder {
  color: rgba(10, 10, 10, 0.48);
}

.private-access button {
  padding: 18px 0 18px 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.success-message {
  width: min(550px, 100%);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
  font-family: Georgia, serif;
  font-size: 14px;
}

footer {
  min-height: 48vh;
  padding: 8vh 5vw 4vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4vw;
  align-items: end;
  background: var(--ink);
  color: var(--ivory);
}

.footer-lockup img {
  width: 168px;
}

footer p,
.footer-links a {
  margin: 0 0 8px;
  color: rgba(241, 236, 226, 0.62);
  font-family: Georgia, serif;
  font-size: 11px;
  line-height: 1.6;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-links a {
  position: relative;
  color: var(--ivory);
}

.copyright,
.domain {
  margin-top: 8vh;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.domain {
  grid-column: 3;
  justify-self: end;
}

.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;
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 116px;
  }

  .header-link {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 12;
    width: 38px;
    height: 38px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: var(--ivory);
  }

  .nav {
    position: fixed;
    inset: 30px 0 auto;
    height: 0;
    padding: 0 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    overflow: hidden;
    background: var(--ink);
    opacity: 0;
    transition: height 0.4s ease, opacity 0.35s ease;
  }

  .nav.is-open {
    height: calc(100vh - 30px);
    opacity: 1;
  }

  .nav a {
    font-family: "Times New Roman", Times, serif;
    font-size: 46px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 74vh;
    padding: 155px 7vw 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(68px, 19vw, 126px);
  }

  .hero-intro,
  .text-link {
    margin-left: 0;
  }

  .hero-intro {
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 76vh;
  }

  .hero-index {
    display: none;
  }

  .manifesto {
    min-height: auto;
    padding: 95px 7vw;
    grid-template-columns: 1fr;
  }

  .manifesto-line {
    font-size: clamp(46px, 12vw, 78px);
  }

  .manifesto-copy {
    grid-column: 1;
    margin: 40px 0 0 15%;
  }

  .collection {
    grid-template-columns: 1fr;
  }

  .editorial-image-wrap {
    min-height: 68vh;
  }

  .collection-copy {
    padding: 90px 7vw;
  }

  .craft {
    padding: 90px 7vw;
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 560px) {
  .announcement-copy {
    display: none;
  }

  .hero h1 {
    font-size: 21vw;
  }

  .hero-intro {
    max-width: 90%;
  }

  .image-note {
    right: 7vw;
    bottom: 28px;
  }

  .manifesto-copy {
    margin-left: 0;
  }

  .craft-grid article {
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .craft-grid p {
    grid-column: 2;
  }

  .private-access {
    padding: 90px 7vw;
  }

  .private-access form {
    align-items: stretch;
  }

  .private-access button {
    max-width: 105px;
    padding-left: 15px;
  }

  footer {
    padding: 70px 7vw 30px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-self: start;
    align-items: flex-start;
  }

  .copyright,
  .domain {
    margin-top: 30px;
  }

  .domain {
    grid-column: 1;
    justify-self: start;
    margin-top: -28px;
    margin-left: auto;
  }
}

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

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

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.private-access form.is-loading {
  opacity: 0.62;
}

.private-access button:disabled {
  cursor: wait;
}

.success-message.is-error {
  color: #7a1f1f;
  border-bottom-color: #7a1f1f;
}
