:root {
  --black: #1b1a17;
  --bone: #e7e0cf;
  --bone-2: #ddd4be;
  --navy: #38485a;
  --redwood: #7a4a32;
  --red: #b3493a;
  --fog: #73766f;
  --fog-2: #b7b8b0;
  --ink: #211f1b;
  --paper: #e7e0cf;
  --line: rgba(33, 31, 27, 0.18);
  --line-strong: rgba(33, 31, 27, 0.34);
  --shadow: 0 24px 70px rgba(27, 26, 23, 0.12);
  --maxw: 1120px;
  --header-h: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(179, 73, 58, 0.08), transparent 28rem),
    linear-gradient(180deg, #ece5d6 0%, var(--paper) 24rem, #dcd3bd 100%);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.glyph-source {
  position: absolute;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--black);
  color: var(--bone);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.page {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.serif {
  font-family: "Newsreader", Georgia, serif;
}

.wordmark {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow,
.hero-topline,
.drop-lockup span,
.product-meta,
.place-number,
.pending,
.artifact-header span,
.footer-place {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(231, 224, 207, 0);
  background: rgba(231, 224, 207, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(231, 224, 207, 0.9);
}

.nav-shell {
  width: min(100% - 28px, 1180px);
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-brand,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-brand {
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-glyph {
  width: 34px;
  height: 34px;
  color: var(--redwood);
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  padding: 0 10px;
  color: rgba(33, 31, 27, 0.72);
  text-decoration: none;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: var(--ink);
  outline: 2px solid var(--redwood);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-h));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(118deg, transparent 0 49%, rgba(122, 74, 50, 0.28) 49.15% 49.4%, transparent 49.55%),
    linear-gradient(164deg, transparent 0 55%, rgba(56, 72, 90, 0.2) 55.15% 55.35%, transparent 55.5%),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(33, 31, 27, 0.06) 47px, transparent 48px),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(33, 31, 27, 0.045) 69px, transparent 70px);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 74%, transparent 100%);
}

.hero-inner {
  position: relative;
  min-height: calc(88svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(18px, 2.5vw, 22px);
  padding-block: 22px 26px;
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--redwood);
}

.hero-topline span:last-child {
  color: var(--fog);
}

.hero-mark {
  margin-block: auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.hero-glyph {
  width: clamp(76px, 14vw, 108px);
  height: clamp(76px, 14vw, 108px);
  color: var(--ink);
  margin-bottom: 0;
}

.hero .wordmark {
  font-size: clamp(3rem, 9vw, 7rem);
}

.hero-tag {
  margin: 4px 0 0;
  color: var(--redwood);
  font-size: clamp(1.28rem, 4.6vw, 1.8rem);
  font-style: italic;
}

.hero-copy {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy p {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.14rem, 3.8vw, 1.55rem);
  line-height: 1.28;
}

.drop-lockup {
  width: min(100%, 700px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 14px 18px;
  border-block: 1px solid var(--line-strong);
  text-align: center;
}

.drop-lockup strong {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.drop-lockup p {
  margin: 8px 0 0;
  color: rgba(33, 31, 27, 0.72);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 18px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid var(--redwood);
  outline-offset: 4px;
}

.button-primary {
  background: var(--ink);
  color: var(--bone);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--redwood);
  border-color: var(--redwood);
}

.button-secondary {
  background: rgba(231, 224, 207, 0.2);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(33, 31, 27, 0.06);
}

.atmosphere {
  border-bottom: 1px solid var(--line);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(40px, 8vw, 96px);
  padding-block: clamp(72px, 12vw, 128px);
}

.atmosphere-lines p {
  margin: 0;
  font-size: clamp(2rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-style: italic;
}

.atmosphere-note {
  align-self: end;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.atmosphere-note p {
  max-width: 360px;
  margin: 0;
  color: rgba(33, 31, 27, 0.78);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
}

.atmosphere-note p + p {
  margin-top: 8px;
}

.section {
  padding-block: clamp(72px, 10vw, 126px);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(34px, 8vw, 92px);
}

.section-kicker {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  display: grid;
  gap: 22px;
}

.section-kicker span,
.section-head .eyebrow,
.place-intro .eyebrow,
.mark-copy .eyebrow,
.story-card .eyebrow {
  color: var(--redwood);
}

.section-kicker svg {
  width: 88px;
  height: 88px;
  color: var(--redwood);
}

h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.45rem, 7vw, 5.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.prose {
  max-width: 720px;
}

.prose p,
.story-copy p,
.artifact-card p {
  margin: 0;
  font-size: clamp(1.08rem, 2.5vw, 1.34rem);
  line-height: 1.55;
}

.prose p + p,
.story-copy p + p,
.artifact-card p + p {
  margin-top: 22px;
}

.section-body h2 + .prose,
.mark-copy h2 + .prose {
  margin-top: 30px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 740px;
  text-align: right;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(231, 224, 207, 0.5);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(33, 31, 27, 0.08);
  pointer-events: none;
}

.product-card-featured {
  min-height: 520px;
  grid-column: span 2;
  grid-row: span 2;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(122, 74, 50, 0.13), transparent 44%),
    rgba(221, 212, 190, 0.74);
  box-shadow: var(--shadow);
}

.product-artifact {
  min-height: 255px;
  display: grid;
  place-items: center;
  position: relative;
}

.relic-board {
  width: min(44vw, 158px);
  height: min(58vw, 318px);
  border-radius: 50% 50% 46% 46% / 10% 10% 38% 38%;
  background:
    linear-gradient(90deg, transparent 0 31%, rgba(33, 31, 27, 0.16) 31.4% 32%, transparent 32.4% 66%, rgba(33, 31, 27, 0.13) 66.4% 67%, transparent 67.4%),
    linear-gradient(180deg, #93603d 0%, #7a4a32 46%, #5d3727 100%);
  box-shadow: inset 0 0 0 1px rgba(33, 31, 27, 0.34), inset 0 0 28px rgba(231, 224, 207, 0.12), 0 24px 42px rgba(33, 31, 27, 0.18);
  transform: rotate(-2deg);
  position: relative;
}

.relic-board::before {
  content: "";
  position: absolute;
  inset: 18px 22px;
  border: 1px solid rgba(231, 224, 207, 0.32);
  border-radius: 50% 50% 46% 46% / 10% 10% 38% 38%;
}

.relic-line {
  position: absolute;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(231, 224, 207, 0.36);
}

.relic-line-a {
  top: 26%;
}

.relic-line-b {
  top: 49%;
}

.relic-line-c {
  top: 71%;
}

.engraving {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: min(72%, 290px);
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(33, 31, 27, 0.28);
  background: rgba(231, 224, 207, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-copy {
  position: relative;
  z-index: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--redwood);
}

.product-card h3 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(1.18rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
  max-width: 510px;
  color: rgba(33, 31, 27, 0.74);
}

.product-card h3 + p,
.product-copy h3 + p {
  margin-top: 12px;
}

.artifact-line {
  color: var(--ink);
  font-style: italic;
}

.product-subline {
  color: var(--ink);
  font-weight: 700;
}

.hangtag-line {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--fog);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--red);
  opacity: 0.78;
}

.product-mark svg {
  width: 84px;
  height: 84px;
}

.product-mark-redwood {
  color: var(--redwood);
}

.product-mark-navy {
  color: var(--navy);
}

.postcard-stack {
  position: absolute;
  top: 26px;
  right: 22px;
  width: 124px;
  height: 76px;
}

.postcard-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(33, 31, 27, 0.3);
  background: rgba(231, 224, 207, 0.82);
}

.postcard-stack span:first-child {
  transform: rotate(-7deg);
}

.postcard-stack span:last-child {
  transform: translate(12px, 8px) rotate(3deg);
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(33, 31, 27, 0.18) 52.5% 53%, transparent 53.5%),
    rgba(221, 212, 190, 0.92);
}

.story-section {
  background: var(--black);
  color: var(--bone);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.story-card {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid rgba(231, 224, 207, 0.22);
  background:
    linear-gradient(120deg, rgba(179, 73, 58, 0.14), transparent 45%),
    rgba(27, 26, 23, 0.72);
}

.story-card h2 {
  margin-top: 24px;
}

.story-copy {
  margin-top: 32px;
}

.story-copy p {
  color: rgba(231, 224, 207, 0.86);
}

.source-line {
  margin: 34px 0 0;
  color: var(--fog-2);
  font-size: clamp(1.08rem, 3vw, 1.4rem);
  font-style: italic;
}

.mark-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
}

.mark-display {
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(56, 72, 90, 0.1), transparent),
    rgba(221, 212, 190, 0.35);
}

.mark-display svg {
  width: min(60vw, 310px);
  height: min(60vw, 310px);
  color: var(--redwood);
}

.place-intro {
  width: min(100%, 760px);
  margin-bottom: 40px;
}

.place-intro h2 {
  margin-top: 18px;
}

.place-intro p {
  margin: 22px 0 0;
  color: rgba(33, 31, 27, 0.74);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.place-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.place-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  padding-block: 18px;
}

.place-number {
  color: var(--redwood);
}

.place-item h3 {
  margin: 0;
  font-size: clamp(1.06rem, 2.6vw, 1.45rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.place-item p {
  margin: 7px 0 0;
  color: var(--fog);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
}

.audio-action,
.pending {
  text-align: right;
  text-decoration: none;
}

.audio-action {
  width: 292px;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
}

.pending {
  color: var(--redwood);
}

.relic-audio {
  width: 100%;
  height: 40px;
  display: block;
  accent-color: var(--redwood);
}

.audio-fallback {
  display: none;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-action.has-audio-error {
  align-items: center;
}

.audio-action.has-audio-error .relic-audio {
  display: none;
}

.audio-action.has-audio-error .audio-fallback {
  display: inline-flex;
}

.place-item-muted {
  color: rgba(33, 31, 27, 0.52);
}

.place-item-muted .pending {
  color: var(--fog);
}

.artifact-section {
  background: linear-gradient(180deg, rgba(122, 74, 50, 0.07), rgba(56, 72, 90, 0.08));
}

.artifact-shell {
  display: grid;
  place-items: center;
}

.artifact-card {
  width: min(100%, 680px);
  padding: clamp(24px, 6vw, 54px);
  border: 1px solid rgba(33, 31, 27, 0.34);
  background: rgba(231, 224, 207, 0.72);
  box-shadow: var(--shadow);
}

.artifact-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.artifact-header svg {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  color: var(--redwood);
}

.artifact-header div {
  display: grid;
  gap: 6px;
}

.artifact-header strong {
  font-size: clamp(1.28rem, 4vw, 2rem);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.artifact-signoff {
  color: var(--redwood);
  font-size: clamp(1.25rem, 3.4vw, 1.75rem);
  font-style: italic;
}

.site-footer {
  padding-block: clamp(52px, 8vw, 90px);
  background: var(--black);
  color: var(--bone);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) auto;
  gap: 32px;
  align-items: end;
}

.site-footer svg {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  color: var(--bone);
}

.site-footer .wordmark {
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(231, 224, 207, 0.72);
}

.footer-lines p {
  margin: 0;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-style: italic;
  line-height: 1.05;
}

.footer-place {
  color: var(--fog-2);
  text-align: right;
}

@media (max-width: 900px) {
  :root {
    --header-h: 106px;
  }

  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding-inline: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .atmosphere-grid,
  .section-grid,
  .mark-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    position: static;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .section-kicker svg {
    width: 62px;
    height: 62px;
  }

  .section-head {
    display: grid;
    justify-items: start;
  }

  .section-head h2 {
    text-align: left;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-featured {
    grid-column: 1 / -1;
  }

  .mark-display {
    min-height: 310px;
  }

  .footer-place {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 102px;
  }

  .page {
    width: min(100% - 28px, var(--maxw));
  }

  .nav-brand {
    font-size: 0.66rem;
  }

  .nav-links a {
    min-height: 34px;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .hero-inner {
    min-height: auto;
    gap: 20px;
    padding-block: 18px 22px;
  }

  .hero-topline {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-glyph {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
  }

  .drop-lockup {
    padding-inline: 10px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .atmosphere-grid {
    padding-block: 64px;
  }

  .atmosphere-lines p {
    font-size: clamp(2.35rem, 13vw, 4.6rem);
  }

  .section {
    padding-block: 64px;
  }

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

  .product-card,
  .product-card-featured {
    min-height: 300px;
  }

  .product-card-featured {
    min-height: 560px;
  }

  .engraving {
    width: 88%;
    right: 50%;
    transform: translateX(50%);
  }

  .place-item {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
  }

  .audio-action,
  .pending {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .audio-action {
    width: 100%;
    justify-content: flex-start;
  }

  .artifact-header {
    align-items: flex-start;
  }

  .artifact-header svg {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 360px) {
  .wordmark {
    letter-spacing: 0.09em;
  }

  .hero .wordmark {
    font-size: clamp(2.65rem, 14vw, 3rem);
  }

  .nav-brand {
    letter-spacing: 0.11em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
