:root {
  /* ---------------------------------------------------------
     BRAND COLORS
     Change these values to recolor the entire website.
     --------------------------------------------------------- */
  --ink: #171411;
  --soft-ink: #2a2520;
  --cream: #f5efe4;
  --paper: #e8dfd1;
  --white: #fffdf8;
  --red: #d9583b;
  --red-dark: #aa3927;
  --gold: #d8a64b;
  --line: rgba(23, 20, 17, 0.18);
  --max: 1240px;
  --serif:
    Iowan Old Style, Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  --sans: Arial, Helvetica Neue, Helvetica, sans-serif;
}

/* BASE / RESET */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.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;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 15px clamp(24px, 4vw, 68px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.3s ease,
    min-height 0.3s ease,
    border-color 0.3s ease;
}
.site-header.scrolled {
  min-height: 72px;
  background: rgba(23, 20, 17, 0.93);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.08);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex: 0 0 auto;
}
.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand-sub {
  margin-top: 7px;
  font-size: 0.63rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  opacity: 0.67;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}
.site-nav > a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}
.site-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.site-nav .nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 860px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}
.hero-image {
  z-index: -3;
  background: url("assets/eolia_flea_market.webp") 58% 50% / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(17, 14, 12, 0.94) 0%,
      rgba(17, 14, 12, 0.75) 37%,
      rgba(17, 14, 12, 0.14) 69%,
      rgba(17, 14, 12, 0.05) 100%
    ),
    linear-gradient(0deg, rgba(17, 14, 12, 0.72) 0%, transparent 45%);
}
.hero-grain {
  z-index: -1;
  opacity: 0.21;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-content {
  position: relative;
  padding-bottom: clamp(88px, 12vh, 140px);
}
.eyebrow,
.kicker {
  margin: 0 0 20px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.route-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  letter-spacing: 0;
  font-size: 0.78rem;
}
h1,
h2,
h3,
p {
  text-wrap: pretty;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 9vw, 8.6rem);
  line-height: 0.8;
  letter-spacing: -0.075em;
  font-weight: 700;
}
h1 em,
h2 em {
  color: var(--red);
  font-weight: 400;
}
.hero-copy {
  max-width: 620px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.65vw, 1.38rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 13px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--red);
  color: var(--white);
}
.button-primary:hover {
  background: #eb6748;
}
.text-link {
  color: var(--white);
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link:hover {
  text-decoration-color: var(--red);
}
.hero-note {
  position: absolute;
  right: clamp(28px, 5vw, 76px);
  bottom: clamp(34px, 6vh, 66px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 34px;
  border-left: 3px solid var(--red);
  text-align: right;
}
.hero-note span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
}
.hero-note strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

/* MOVING CATEGORY TICKER */
.ticker {
  overflow: hidden;
  padding: 17px 0 16px;
  color: var(--white);
  background: var(--red);
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  animation: ticker 28s linear infinite;
}
.ticker-track i {
  font-size: 0.46rem;
  font-style: normal;
  color: var(--gold);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   INTRODUCTION
   ========================================================= */
.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 128px);
}
.intro {
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}
.kicker {
  color: var(--red-dark);
}
.intro h2,
.collection h2,
.story h2,
.pull-quote h2,
.visit h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.065em;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 0.91;
}
.intro-copy {
  padding: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: rgba(23, 20, 17, 0.72);
}
.intro-copy p {
  margin: 0 0 24px;
}
.intro-copy strong {
  color: var(--ink);
}

/* =========================================================
   OPEN COLLECTION LIST
   ========================================================= */
.collection {
  padding: clamp(74px, 9vw, 126px) 0 clamp(96px, 12vw, 168px);
  background: var(--paper);
}
.collection-head {
  display: grid;
  grid-template-columns: 0.56fr 1fr 0.54fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  padding-bottom: clamp(46px, 6vw, 78px);
}
.collection-head .kicker {
  align-self: start;
  padding-top: 9px;
}
.collection-head h2 {
  font-size: clamp(3rem, 5.2vw, 5.7rem);
}
.collection-head > p:last-child {
  margin: 0;
  padding-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.55;
  color: rgba(23, 20, 17, 0.66);
}
.collection-list {
  border-top: 2px solid var(--ink);
}
.collection-row {
  display: grid;
  grid-template-columns: 0.56fr 1fr 0.54fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(34px, 4.2vw, 56px) 0;
  border-bottom: 1px solid rgba(23, 20, 17, 0.28);
  transition: color 0.2s ease;
}
.collection-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red-dark);
}
.collection-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.05em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.collection-row > p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(23, 20, 17, 0.64);
}
.collection-row:hover h3 {
  color: var(--red-dark);
  transform: translateX(8px);
}
.collection-note {
  max-width: 680px;
  margin: 46px 0 0 auto;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  color: rgba(23, 20, 17, 0.68);
}
.collection-note strong {
  color: var(--ink);
}

/* =========================================================
   BRAND STORY
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}
.story-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset -80px 0 100px rgba(23, 20, 17, 0.24);
  pointer-events: none;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 22px;
  margin: 0;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(245, 239, 228, 0.92);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}
.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px);
}
.kicker-light {
  color: #f08a70;
}
.story h2 {
  max-width: 650px;
}
.story-standout {
  margin: 12px 0 0 !important;
  color: var(--red) !important;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 4.25rem) !important;
  font-style: italic;
  line-height: 1 !important;
  letter-spacing: -0.045em;
}
.story-content > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.68);
}
.story-lines {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.story-lines p {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.5;
}
.story-lines strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   LARGE BRAND MOMENT
   ========================================================= */
.pull-quote {
  color: var(--ink);
  background: var(--gold);
}
.pull-quote-inner {
  padding-block: clamp(90px, 11vw, 150px);
}
.pull-quote p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}
.pull-quote h2 {
  max-width: 1050px;
  margin: 22px 0 42px;
  font-size: clamp(3.7rem, 8vw, 8rem);
  line-height: 0.88;
}
.pull-quote h2 em {
  color: var(--red-dark);
}
.text-link-dark {
  color: var(--ink);
  text-decoration-color: rgba(23, 20, 17, 0.35);
}

/* =========================================================
   VISIT / CALL TO ACTION
   ========================================================= */
.visit {
  position: relative;
  padding-block: clamp(90px, 12vw, 160px);
  color: var(--white);
  background: var(--red-dark);
  overflow: hidden;
}
.visit::before {
  content: "61";
  position: absolute;
  right: -2vw;
  top: -16vw;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: min(52vw, 720px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}
.visit-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(52px, 8vw, 116px);
  align-items: center;
}
.visit-marker {
  aspect-ratio: 1;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  text-align: center;
}
.visit-marker span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}
.visit-marker strong {
  font-family: var(--serif);
  font-size: clamp(4.6rem, 9vw, 7.8rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
}
.visit-marker small {
  margin-top: 15px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}
.visit-copy {
  max-width: 840px;
}
.visit-copy > p:not(.kicker) {
  max-width: 640px;
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.76);
}
.visit h2 em {
  color: var(--white);
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.button-cream {
  color: var(--ink);
  background: var(--cream);
}
.button-cream:hover {
  background: var(--white);
}
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}
.button-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}
.review-button-placeholder {
  display: none !important;
}

/* FOOTER */
.footer {
  padding: 74px 0 100px;
  color: var(--white);
  background: var(--ink);
}
.footer-main {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(46px, 7vw, 96px);
  align-items: stretch;
}
.brand-footer {
  color: var(--white);
}
.footer-line {
  margin: 22px 0 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}
.footer-address {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  font-style: normal;
}
.footer-address strong {
  color: var(--white);
}
.footer-address span {
  display: inline-block;
  max-width: 390px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.5;
}
.footer-map {
  min-height: 330px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 312px;
  display: block;
  filter: saturate(0.72) contrast(1.05);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 5px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-meta {
  text-align: right;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.footer-meta p {
  margin: 4px 0;
}
.mobile-dock {
  display: none;
}

/* SCROLL-IN ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TABLET LAYOUT
   ========================================================= */
@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    padding-inline: 24px;
  }
  .menu-button {
    display: block;
    z-index: 2;
    color: var(--white);
  }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    color: var(--white);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .site-nav > a {
    font-family: var(--serif);
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    text-transform: none;
  }
  .site-nav .nav-cta {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero-note {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr 0.85fr;
  }
  .intro-copy {
    padding-top: 0;
  }
  .collection-head,
  .collection-row {
    grid-template-columns: 0.42fr 1fr;
  }
  .collection-head > p:last-child,
  .collection-row > p:last-child {
    grid-column: 2;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-media {
    min-height: 520px;
  }
  .story-media::after {
    box-shadow: inset 0 -70px 90px rgba(23, 20, 17, 0.28);
  }
  .visit-inner {
    grid-template-columns: 210px 1fr;
    gap: 52px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: start;
  }
  .footer-address {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
  }
}

/* =========================================================
   MOBILE LAYOUT
   ========================================================= */
@media (max-width: 640px) {
  body {
    padding-bottom: 60px;
  }
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }
  .brand-name {
    font-size: 1.35rem;
  }
  .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.15em;
  }
  .hero {
    min-height: 760px;
    align-items: flex-end;
  }
  .hero-image {
    background-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(17, 14, 12, 0.96) 0%,
      rgba(17, 14, 12, 0.76) 54%,
      rgba(17, 14, 12, 0.19) 100%
    );
  }
  .hero-content {
    padding-bottom: 70px;
  }
  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .route-mark {
    width: 34px;
    height: 34px;
  }
  h1 {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
    line-height: 0.82;
  }
  .hero-copy {
    margin-top: 26px;
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
    margin-top: 28px;
  }
  .ticker-track {
    gap: 24px;
  }
  .section {
    padding-block: 78px;
  }
  .intro {
    display: block;
  }
  .intro h2,
  .collection h2,
  .story h2,
  .pull-quote h2,
  .visit h2 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }
  .intro-copy {
    margin-top: 34px;
  }
  .collection {
    padding-block: 76px 98px;
  }
  .collection-head,
  .collection-row {
    display: block;
  }
  .collection-head .kicker {
    padding-top: 0;
  }
  .collection-head h2 {
    margin-top: 18px;
  }
  .collection-head > p:last-child {
    margin-top: 28px;
  }
  .collection-row {
    padding: 34px 0 38px;
  }
  .collection-row h3 {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .collection-row > p:last-child {
    margin-top: 20px;
  }
  .collection-row:hover h3 {
    transform: none;
  }
  .collection-note {
    margin-top: 40px;
  }
  .story-media {
    min-height: 430px;
  }
  .story-content {
    padding: 78px 24px 84px;
  }
  .story-standout {
    font-size: 2.5rem !important;
  }
  .story-lines p {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .pull-quote-inner {
    padding-block: 86px 96px;
  }
  .pull-quote h2 {
    margin-bottom: 34px;
  }
  .visit {
    padding-block: 92px 110px;
  }
  .visit-inner {
    display: block;
  }
  .visit-marker {
    width: 142px;
    margin-bottom: 54px;
  }
  .visit-marker strong {
    font-size: 4rem;
  }
  .footer {
    padding: 64px 0;
  }
  .footer-brand-block {
    display: block;
  }
  .footer-address {
    margin-top: 42px;
  }
  .footer-map {
    min-height: 270px;
  }
  .footer-map iframe {
    min-height: 252px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-meta {
    text-align: left;
  }
  .mobile-dock {
    position: fixed;
    z-index: 45;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
  .mobile-dock a:first-child {
    color: var(--ink);
    background: var(--red);
  }
}

/* ACCESSIBILITY: TURN OFF MOTION WHEN REQUESTED */
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
