:root {
  --ink: #1b1a17;
  --paper: #f4efe4;
  --paper-bright: #fffaf0;
  --stone: #c7b7a3;
  --brass: #a27b43;
  --rust: #9c4f32;
  --sage: #6f7356;
  --cream: #eadfc9;
  --line: rgba(27, 26, 23, 0.24);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid #2274a5;
  outline-offset: 4px;
}

.concept-bar {
  position: relative;
  z-index: 20;
  padding: 0.55rem clamp(1rem, 3vw, 3rem);
  color: var(--paper-bright);
  background: var(--rust);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept-bar p {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}

.concept-bar strong {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 5.2rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 228, 0.94);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.wordmark-river {
  position: relative;
  width: 2.2rem;
  height: 1.9rem;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 42% 48%;
  transform: rotate(-8deg);
}

.wordmark-river::before,
.wordmark-river::after {
  position: absolute;
  right: 0.25rem;
  left: 0.25rem;
  height: 0.28rem;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.wordmark-river::before {
  top: 0.55rem;
  transform: rotate(8deg);
}

.wordmark-river::after {
  top: 1rem;
  transform: rotate(-5deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.desktop-nav a:not(:hover) {
  text-decoration-color: transparent;
}

.desktop-nav .nav-visit {
  padding: 0.75rem 1.1rem;
  color: var(--paper-bright);
  background: var(--ink);
  text-decoration: none;
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--max);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 8rem) clamp(1rem, 4vw, 4.5rem) clamp(4rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.story h2,
.visit-questions h2,
.visit h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(3.8rem, 7.6vw, 8rem);
}

.hero h1 em {
  color: var(--rust);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 13rem;
  gap: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--rust);
}

.button-dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.text-link {
  padding: 0.35rem 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 0.65rem;
}

.hero-art {
  position: relative;
  width: min(100%, 510px);
  margin: 0 auto;
}

.art-frame {
  position: relative;
  padding: 0.75rem;
  background: var(--ink);
  box-shadow: 22px 22px 0 var(--stone);
  transform: rotate(1.5deg);
}

.art-frame::before {
  position: absolute;
  top: -1.2rem;
  left: 12%;
  width: 5.8rem;
  height: 2.3rem;
  background: rgba(226, 207, 164, 0.75);
  content: "";
  transform: rotate(-5deg);
}

.art-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.art-tag {
  position: absolute;
  padding: 0.45rem 0.7rem;
  color: var(--paper-bright);
  background: var(--rust);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.art-tag-top {
  top: 2rem;
  right: -1.3rem;
}

.art-tag-bottom {
  bottom: 1.8rem;
  left: -1.4rem;
  background: var(--sage);
}

.hero-art figcaption {
  margin-top: 2.2rem;
  padding-left: 0.2rem;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.visit-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  color: var(--paper-bright);
  background: var(--ink);
}

.visit-ribbon p,
.visit-ribbon a {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
  margin: 0;
  padding: 1.5rem;
  border-right: 1px solid rgba(244, 239, 228, 0.2);
  text-decoration: none;
}

.visit-ribbon a:hover {
  background: var(--rust);
}

.visit-ribbon span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-size: 0.78rem;
}

.visit-ribbon strong {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ribbon-number {
  color: var(--stone);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.categories {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 4vw, 4.5rem);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-intro h2 {
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.section-intro > p {
  max-width: 430px;
  margin: 0 0 0.6rem;
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--ink);
  grid-column: span 4;
  grid-template-rows: minmax(285px, 1fr) auto;
  isolation: isolate;
}

.category-card:nth-child(2),
.category-card:nth-child(7) {
  grid-column: span 5;
}

.category-card:nth-child(3),
.category-card:nth-child(8) {
  grid-column: span 3;
}

.category-card:nth-child(4),
.category-card:nth-child(5) {
  grid-column: span 6;
}

.category-art {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--stone);
}

.category-art::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image: radial-gradient(rgba(27, 26, 23, 0.15) 0.55px, transparent 0.55px);
  background-size: 4px 4px;
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.category-copy {
  position: relative;
  min-height: 150px;
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--paper-bright);
}

.category-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 0.75rem;
}

.category-card h3 {
  max-width: 85%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.category-card p {
  max-width: 27rem;
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.card-garden .category-art {
  background: #89906f;
}

.motif-garden span:nth-child(1) {
  position: absolute;
  bottom: -1rem;
  left: 22%;
  width: 38%;
  height: 45%;
  border: 3px solid var(--ink);
  border-radius: 8% 8% 24% 24%;
  background: var(--rust);
  transform: perspective(300px) rotateX(-10deg);
}

.motif-garden span:nth-child(2),
.motif-garden span:nth-child(3),
.motif-garden span:nth-child(4) {
  position: absolute;
  bottom: 36%;
  left: 40%;
  width: 3px;
  height: 44%;
  background: var(--ink);
  transform-origin: bottom;
}

.motif-garden span:nth-child(2) {
  transform: rotate(-22deg);
}

.motif-garden span:nth-child(3) {
  height: 52%;
  transform: rotate(4deg);
}

.motif-garden span:nth-child(4) {
  transform: rotate(28deg);
}

.motif-garden span:nth-child(2)::before,
.motif-garden span:nth-child(3)::before,
.motif-garden span:nth-child(4)::before {
  position: absolute;
  top: 12%;
  left: -0.7rem;
  width: 1.5rem;
  height: 2.8rem;
  border: 2px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: var(--cream);
  content: "";
}

.card-barware .category-art {
  background: var(--brass);
}

.motif-barware span {
  position: absolute;
  bottom: 16%;
  width: 24%;
  height: 56%;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 12% 12%;
  background: rgba(244, 239, 228, 0.35);
}

.motif-barware span::after {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  width: 3px;
  height: 3rem;
  background: var(--ink);
  box-shadow: -1.6rem 3rem 0 0 var(--ink);
  content: "";
}

.motif-barware span:nth-child(1) {
  left: 8%;
  transform: rotate(-6deg) scale(0.76);
}

.motif-barware span:nth-child(2) {
  left: 28%;
  transform: rotate(3deg) scale(0.95);
}

.motif-barware span:nth-child(3) {
  right: 25%;
  transform: rotate(-3deg) scale(0.82);
}

.motif-barware span:nth-child(4) {
  right: 5%;
  transform: rotate(8deg) scale(0.68);
}

.card-eclectic .category-art {
  background: #d7a062;
}

.motif-eclectic span:nth-child(1) {
  position: absolute;
  top: 16%;
  left: 17%;
  width: 66%;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--rust);
}

.motif-eclectic span:nth-child(1)::before,
.motif-eclectic span:nth-child(1)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29%;
  height: 3px;
  background: var(--ink);
  content: "";
  transform-origin: left;
}

.motif-eclectic span:nth-child(1)::before {
  transform: rotate(-72deg);
}

.motif-eclectic span:nth-child(1)::after {
  width: 22%;
  transform: rotate(24deg);
}

.motif-eclectic span:nth-child(2),
.motif-eclectic span:nth-child(3),
.motif-eclectic span:nth-child(4) {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.motif-eclectic span:nth-child(2) {
  top: 9%;
  right: 12%;
}

.motif-eclectic span:nth-child(3) {
  bottom: 15%;
  left: 8%;
}

.motif-eclectic span:nth-child(4) {
  right: 8%;
  bottom: 8%;
}

.card-bohemian .category-art {
  background: var(--rust);
}

.motif-bohemian span:nth-child(1) {
  position: absolute;
  inset: 12% 24%;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 8% 8%;
  background: var(--cream);
}

.motif-bohemian span:nth-child(1)::before {
  position: absolute;
  inset: 14%;
  border: 2px solid var(--rust);
  border-radius: 50% 50% 8% 8%;
  background: repeating-radial-gradient(circle at 50% 30%, transparent 0 13px, var(--rust) 14px 16px);
  content: "";
}

.motif-bohemian span:nth-child(2),
.motif-bohemian span:nth-child(3),
.motif-bohemian span:nth-child(4) {
  position: absolute;
  bottom: 5%;
  width: 3px;
  height: 18%;
  background: var(--ink);
}

.motif-bohemian span:nth-child(2) {
  left: 35%;
}

.motif-bohemian span:nth-child(3) {
  left: 50%;
}

.motif-bohemian span:nth-child(4) {
  left: 65%;
}

.card-glass .category-art {
  background: #91a7a4;
}

.motif-glass span {
  position: absolute;
  bottom: 13%;
  border: 3px solid var(--ink);
  background: rgba(255, 250, 240, 0.4);
}

.motif-glass span:nth-child(1) {
  left: 12%;
  width: 21%;
  height: 53%;
  border-radius: 45% 45% 16% 16%;
}

.motif-glass span:nth-child(2) {
  left: 36%;
  width: 28%;
  height: 67%;
  border-radius: 32% 32% 10% 10%;
  background: rgba(156, 79, 50, 0.45);
}

.motif-glass span:nth-child(3) {
  right: 11%;
  width: 22%;
  height: 43%;
  border-radius: 50% 50% 9% 9%;
  background: rgba(244, 239, 228, 0.55);
}

.motif-glass span:nth-child(4) {
  top: 10%;
  right: 8%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brass);
}

.card-farmhouse .category-art {
  background: #c6a984;
}

.motif-farmhouse span:nth-child(1) {
  position: absolute;
  right: 15%;
  bottom: 12%;
  width: 55%;
  height: 68%;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: -10px 10px 0 var(--sage);
}

.motif-farmhouse span:nth-child(1)::before,
.motif-farmhouse span:nth-child(1)::after {
  position: absolute;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--ink);
  content: "";
}

.motif-farmhouse span:nth-child(1)::before {
  top: 32%;
}

.motif-farmhouse span:nth-child(1)::after {
  top: 65%;
}

.motif-farmhouse span:nth-child(2),
.motif-farmhouse span:nth-child(3),
.motif-farmhouse span:nth-child(4) {
  position: absolute;
  z-index: 2;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brass);
}

.motif-farmhouse span:nth-child(2) {
  top: 35%;
  right: 22%;
}

.motif-farmhouse span:nth-child(3) {
  top: 55%;
  right: 47%;
}

.motif-farmhouse span:nth-child(4) {
  right: 29%;
  bottom: 21%;
}

.card-industrial .category-art {
  background: #74705f;
}

.motif-industrial span:nth-child(1) {
  position: absolute;
  top: 18%;
  left: 23%;
  width: 54%;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: repeating-conic-gradient(var(--rust) 0 10deg, var(--cream) 11deg 34deg);
  box-shadow: inset 0 0 0 2rem var(--cream), inset 0 0 0 2.25rem var(--ink);
}

.motif-industrial span:nth-child(2) {
  position: absolute;
  top: 43%;
  left: 47%;
  z-index: 2;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--brass);
}

.motif-industrial span:nth-child(3),
.motif-industrial span:nth-child(4) {
  position: absolute;
  bottom: 6%;
  width: 3px;
  height: 23%;
  background: var(--ink);
}

.motif-industrial span:nth-child(3) {
  left: 36%;
  transform: rotate(10deg);
}

.motif-industrial span:nth-child(4) {
  right: 36%;
  transform: rotate(-10deg);
}

.card-century .category-art {
  background: #d28a63;
}

.motif-century span:nth-child(1) {
  position: absolute;
  right: 11%;
  bottom: 13%;
  left: 11%;
  height: 31%;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 12% 12%;
  background: var(--sage);
  box-shadow: inset 0 0 0 0.9rem #aeb18f;
}

.motif-century span:nth-child(1)::before,
.motif-century span:nth-child(1)::after {
  position: absolute;
  bottom: -38%;
  width: 3px;
  height: 42%;
  background: var(--ink);
  content: "";
}

.motif-century span:nth-child(1)::before {
  left: 18%;
  transform: rotate(8deg);
}

.motif-century span:nth-child(1)::after {
  right: 18%;
  transform: rotate(-8deg);
}

.motif-century span:nth-child(2),
.motif-century span:nth-child(3),
.motif-century span:nth-child(4) {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--cream);
  clip-path: polygon(45% 0, 56% 42%, 100% 50%, 57% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

.motif-century span:nth-child(2) {
  top: 18%;
  left: 20%;
  transform: scale(2.2);
}

.motif-century span:nth-child(3) {
  top: 33%;
  right: 18%;
  transform: scale(1.35);
}

.motif-century span:nth-child(4) {
  top: 9%;
  right: 39%;
}

.category-note {
  display: flex;
  gap: 1rem;
  max-width: 650px;
  margin: 2rem 0 0 auto;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.category-note span {
  color: var(--rust);
  font-size: 1.4rem;
}

.category-note p {
  margin: 0;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: clamp(3rem, 8vw, 9rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 6rem);
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--sage);
}

.story::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 55%;
  height: 100%;
  border-left: 2px solid rgba(244, 239, 228, 0.22);
  border-radius: 50% 0 0 50%;
  content: "";
  transform: skewX(-11deg);
}

.story-heading,
.story-copy,
.story-scorecard {
  position: relative;
  z-index: 2;
}

.story h2 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.story-copy {
  align-self: end;
  padding-bottom: 1.5rem;
}

.story-copy p {
  max-width: 560px;
  line-height: 1.75;
}

.story-copy .story-lead {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.25;
}

.text-link-light {
  display: inline-block;
  margin-top: 1rem;
}

.story-scorecard {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-top: 1px solid rgba(244, 239, 228, 0.45);
  border-bottom: 1px solid rgba(244, 239, 228, 0.45);
}

.story-scorecard div {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem 1.5rem 0;
  border-right: 1px solid rgba(244, 239, 228, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-scorecard div + div {
  padding-left: 1.5rem;
}

.story-scorecard div:last-child {
  border-right: 0;
}

.score-value {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.visit-questions {
  display: grid;
  grid-template-columns: 0.72fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 6rem);
}

.visit-questions h2 {
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.questions-list details {
  border-top: 1px solid var(--ink);
}

.questions-list details:last-child {
  border-bottom: 1px solid var(--ink);
}

.questions-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  list-style: none;
}

.questions-list summary::-webkit-details-marker {
  display: none;
}

.questions-list summary::after {
  position: absolute;
  top: 1.3rem;
  right: 0;
  color: var(--rust);
  content: "+";
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 400;
}

.questions-list details[open] summary::after {
  content: "×";
}

.questions-list details p {
  max-width: 650px;
  margin: -0.25rem 0 1.5rem;
  padding-right: 3rem;
  line-height: 1.7;
}

.visit {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 8vw, 8rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 6rem);
  color: var(--paper-bright);
  background: var(--rust);
}

.visit h2 {
  max-width: 780px;
  font-size: clamp(4rem, 7vw, 7.7rem);
}

.visit address {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: normal;
}

.button-paper {
  color: var(--ink);
  border-color: var(--paper-bright);
  background: var(--paper-bright);
}

.button-outline {
  color: var(--paper-bright);
  border-color: var(--paper-bright);
}

.button-outline:hover {
  box-shadow: 5px 5px 0 var(--ink);
  background: rgba(27, 26, 23, 0.12);
}

.hours-card {
  align-self: end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.hours-kicker {
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.hours-card dd {
  margin: 0;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.65fr auto;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 4vw, 4.5rem);
  color: var(--paper-bright);
  background: var(--ink);
}

.wordmark-footer .wordmark-river {
  border-color: var(--paper-bright);
}

.wordmark-footer .wordmark-river::before,
.wordmark-footer .wordmark-river::after {
  border-color: var(--paper-bright);
}

.footer-brand p {
  max-width: 310px;
  margin: 1rem 0 0;
  color: var(--stone);
  font-family: var(--serif);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-links p {
  margin: 0 0 0.5rem;
  color: var(--stone);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  text-underline-offset: 0.25rem;
}

.footer-concept {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  text-align: right;
  text-transform: uppercase;
}

.footer-concept strong {
  color: var(--paper-bright);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.footer-concept span {
  color: var(--stone);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 6rem);
  }

  .category-card,
  .category-card:nth-child(n) {
    grid-column: span 6;
  }

  .story,
  .visit {
    gap: 3rem;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-concept {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 239, 228, 0.2);
    text-align: left;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .concept-bar p span {
    display: none;
  }

  .concept-bar p {
    justify-content: center;
  }

  .site-header {
    min-height: 4.6rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .menu-lines,
  .menu-lines::before {
    display: block;
    width: 1.3rem;
    height: 1px;
    background: var(--ink);
    content: "";
  }

  .menu-lines::before {
    transform: translateY(5px);
  }

  .mobile-nav[open] .menu-lines {
    transform: rotate(45deg);
  }

  .mobile-nav[open] .menu-lines::before {
    transform: rotate(-90deg);
  }

  .mobile-nav nav {
    position: absolute;
    top: 2rem;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(82vw, 300px);
    padding: 0.7rem;
    border: 1px solid var(--ink);
    background: var(--paper-bright);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .mobile-nav nav a {
    padding: 0.85rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.15rem;
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
    color: var(--paper-bright);
    background: var(--rust);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 16.5vw, 6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-art {
    width: min(91%, 470px);
    margin-top: 1.5rem;
  }

  .visit-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .visit-ribbon p,
  .visit-ribbon a {
    min-height: 110px;
    border-bottom: 1px solid rgba(244, 239, 228, 0.2);
  }

  .section-intro,
  .story,
  .visit-questions,
  .visit {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 1.5rem;
  }

  .section-intro h2,
  .story h2,
  .visit-questions h2,
  .visit h2 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

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

  .category-card,
  .category-card:nth-child(n) {
    min-height: 410px;
    grid-column: span 1;
    grid-template-rows: 245px auto;
  }

  .category-art {
    min-height: 245px;
  }

  .category-card h3 {
    font-size: 2rem;
  }

  .story-scorecard {
    grid-template-columns: 1fr;
  }

  .story-scorecard div,
  .story-scorecard div + div {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    align-items: end;
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.45);
  }

  .story-scorecard div:last-child {
    border-bottom: 0;
  }

  .score-value {
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .wordmark {
    gap: 0.5rem;
    font-size: 1.02rem;
  }

  .wordmark-river {
    width: 1.75rem;
    height: 1.5rem;
  }

  .wordmark-river::before {
    top: 0.4rem;
  }

  .wordmark-river::after {
    top: 0.75rem;
  }

  .hero {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
    gap: 1rem;
  }

  .hero-actions .button,
  .visit-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .visit-ribbon {
    grid-template-columns: 1fr;
  }

  .visit-ribbon p,
  .visit-ribbon a {
    min-height: auto;
  }

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

  .category-card,
  .category-card:nth-child(n) {
    min-height: 470px;
    grid-template-rows: 300px auto;
  }

  .category-art {
    min-height: 300px;
  }

  .category-note {
    margin-top: 1rem;
  }

  .story,
  .visit-questions,
  .visit {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .story-scorecard div,
  .story-scorecard div + div {
    grid-template-columns: 0.85fr 1fr;
  }

  .hours-card dl div {
    gap: 0.75rem;
    font-size: 0.76rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-concept {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .mobile-nav,
  .desktop-nav,
  .hero-actions,
  .visit-actions {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
