:root {
  --pendleton-ivory: #f4ecdf;
  --pendleton-tan: #c29f6c;
  --pendleton-aegean: #557a76;
  --pendleton-rosewood: #874d4a;
  --pendleton-chili: #a3563d;
  --pendleton-slate: #586166;
  --bg: #cbb08b;
  --sand: var(--pendleton-tan);
  --sage: var(--pendleton-aegean);
  --forest: #1d291f;
  --copper: #94462f;
  --copper-deep: #6f3834;
  --clay: #4f3527;
  --ink: #1a130e;
  --muted: #4a3b30;
  --line: rgba(67, 47, 32, 0.18);
  --line-strong: rgba(67, 47, 32, 0.28);
  --accent-stripe: linear-gradient(
    90deg,
    var(--pendleton-rosewood) 0%,
    var(--pendleton-rosewood) 18%,
    var(--pendleton-tan) 18%,
    var(--pendleton-tan) 36%,
    var(--pendleton-aegean) 36%,
    var(--pendleton-aegean) 54%,
    var(--pendleton-chili) 54%,
    var(--pendleton-chili) 72%,
    var(--pendleton-slate) 72%,
    var(--pendleton-slate) 100%
  );
  --surface-bg: rgba(243, 231, 213, 0.92);
  --surface-bg-soft: rgba(247, 239, 226, 0.62);
  --surface-bg-strong: rgba(244, 233, 217, 0.88);
  --shadow-soft: 0 5px 12px rgba(39, 24, 13, 0.06);
  --radius-xl: 12px;
  --radius-lg: 10px;
  --radius-md: 7px;
  --radius-sm: 6px;
  --space-section: clamp(1.4rem, 3vw, 2.25rem);
  --space-section-tight: clamp(0.82rem, 1.6vw, 1.12rem);
  --space-card: clamp(0.72rem, 1.35vw, 0.9rem);
  --space-card-lg: clamp(0.88rem, 1.8vw, 1.12rem);
  --space-gap: clamp(0.6rem, 1.1vw, 0.78rem);
  --space-gap-lg: clamp(0.75rem, 1.4vw, 0.95rem);
  --max-width: 1200px;
  --font-display: "Bitter", "Rockwell", "Book Antiqua", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.34) 0%, rgba(255, 248, 238, 0) 8rem),
    linear-gradient(180deg, #e2ccb0 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
}

p + p {
  margin-top: 0.82rem;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}

main {
  flex: 1 0 auto;
}

.site-shell::before,
.site-shell::after {
  content: none;
}

.wrap {
  width: min(calc(100% - 1.6rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(235, 218, 192, 0.98);
  border-bottom: 1px solid var(--line-strong);
  box-shadow:
    0 1px 0 rgba(255, 246, 233, 0.72),
    0 8px 18px rgba(30, 20, 12, 0.06);
  backdrop-filter: none;
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent-stripe);
  opacity: 0.62;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  padding: 0.28rem 0 0.32rem;
  position: relative;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  margin-top: 0.08rem;
  color: var(--copper-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.28rem;
  margin-left: auto;
  min-width: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-left: 0;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(67, 47, 32, 0.14);
  border-radius: 10px;
  background: rgba(248, 239, 226, 0.82);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 14px rgba(24, 16, 10, 0.08);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(250, 243, 232, 0.96);
  border-color: rgba(67, 47, 32, 0.22);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(85, 122, 118, 0.52);
  outline-offset: 2px;
}

.header-cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-left: 0;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(67, 47, 32, 0.14);
  border-radius: 10px;
  background: rgba(248, 239, 226, 0.82);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 14px rgba(24, 16, 10, 0.08);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.header-cart-button:hover {
  background: rgba(250, 243, 232, 0.96);
  border-color: rgba(67, 47, 32, 0.22);
}

.header-cart-button:focus-visible {
  outline: 2px solid rgba(85, 122, 118, 0.52);
  outline-offset: 2px;
}

.header-cart-icon {
  width: 1.08rem;
  height: 1.08rem;
}

.header-cart-badge {
  position: absolute;
  top: 0.12rem;
  right: 0.12rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(26, 19, 14, 0.94);
  color: #f8efe2;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(20, 12, 8, 0.14);
}

.header-cart-badge[hidden] {
  display: none;
}

.nav-toggle-box {
  position: relative;
  width: 1rem;
  height: 0.8rem;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.2s ease,
    transform 0.2s ease,
    opacity 0.16s ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 0;
}

.nav-toggle-bar:nth-child(2) {
  top: calc(50% - 1px);
}

.nav-toggle-bar:nth-child(3) {
  top: calc(100% - 2px);
}

.site-header.is-nav-open .nav-toggle {
  background: rgba(26, 19, 14, 0.94);
  border-color: rgba(26, 19, 14, 0.94);
  color: #f8efe2;
  box-shadow: 0 10px 18px rgba(20, 12, 8, 0.14);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.32rem 0.66rem;
  border: 1px solid rgba(67, 47, 32, 0.08);
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(26, 19, 14, 0.92);
  border-color: rgba(26, 19, 14, 0.92);
  color: #f8efe2;
  box-shadow: 0 8px 14px rgba(20, 12, 8, 0.1);
}

.nav-links a.nav-conversion:not([aria-current="page"]) {
  background: rgba(135, 77, 74, 0.14);
  border-color: rgba(135, 77, 74, 0.22);
  color: var(--copper-deep);
}

.nav-links a.nav-conversion:not([aria-current="page"]):hover {
  background: rgba(135, 77, 74, 0.24);
  border-color: rgba(135, 77, 74, 0.32);
  color: var(--ink);
}

.shopify-buy__cart-toggle,
.shopify-buy-frame--toggle,
iframe.shopify-buy-frame.shopify-buy-frame--toggle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.shopify-buy__cart-toggle__button {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero,
.page-hero {
  padding: clamp(0.6rem, 1.35vw, 1rem) 0 clamp(1.3rem, 3vw, 2rem);
}

.hero {
  position: relative;
}

.hero-grid,
.page-hero-grid,
.split-feature,
.contact-grid {
  display: grid;
  gap: var(--space-gap-lg);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.hero--immersive {
  --hero-min-height: clamp(31rem, 70vh, 40rem);
  --hero-image-position: center 68%;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(0.65rem, 1.4vw, 0.95rem) 0 clamp(1.35rem, 2.4vw, 2rem);
  background: #20150f;
}

.hero--immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.92) 0%, rgba(18, 12, 8, 0.62) 38%, rgba(18, 12, 8, 0.12) 76%),
    linear-gradient(180deg, rgba(17, 11, 8, 0.16) 0%, rgba(17, 11, 8, 0.1) 36%, rgba(17, 11, 8, 0.9) 100%);
}

.hero--immersive::after {
  content: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position);
}

.hero--immersive .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 38rem);
  width: min(calc(100% - 1.6rem), var(--max-width));
  margin: 0 auto;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.page-hero-grid.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.page-hero-grid > *,
.split-feature > * {
  align-self: start;
}

.surface-panel,
.page-hero-copy,
.cta-band,
.contact-focus {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surface-border-color, var(--line));
  border-radius: var(--surface-radius, var(--radius-xl));
  background: var(--surface-fill, var(--surface-bg-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    var(--surface-shadow, var(--shadow-soft));
}

.card,
.merch-card,
.quote-panel,
.credibility-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(67, 47, 32, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.34);
  box-shadow: none;
}

.page-hero-copy,
.cta-band,
.contact-focus,
.card {
  padding: var(--space-card-lg);
}

.hero--immersive .hero-copy {
  overflow: visible;
  padding: 0;
  max-width: 37rem;
  border: 0;
  background: none;
  box-shadow: none;
}

.page-hero-copy {
  --surface-fill: rgba(244, 233, 217, 0.82);
  --surface-radius: var(--radius-lg);
  --surface-shadow: none;
  max-width: 42rem;
  padding: clamp(0.82rem, 1.55vw, 1rem);
}

.hero-copy h1,
.page-hero-copy h1,
.section-head h1,
.section-head h2,
.gallery-intro h2,
.gallery-plan-copy h2,
.split-feature h2,
.cta-band h2,
.card h3,
.contact-focus h2,
.quote-panel blockquote {
  font-family: var(--font-display);
  line-height: 1.08;
  color: var(--ink);
}

.hero-copy h1,
.page-hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 0.62rem;
  font-size: clamp(2.5rem, 5.7vw, 4.6rem);
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
}

.hero--immersive .hero-copy h1 {
  min-block-size: 3.24em;
}

.hero--immersive .hero-copy h1,
.hero--immersive .hero-copy .lede,
.hero--immersive .hero-copy strong,
.hero--immersive .hero-copy a {
  color: #fff7ef;
  text-shadow: 0 12px 26px rgba(12, 7, 5, 0.45);
}

.hero--immersive .hero-copy .eyebrow,
.hero--immersive .hero-copy p,
.hero--immersive .hero-copy span {
  color: rgba(255, 242, 230, 0.9);
  text-shadow: 0 10px 22px rgba(12, 7, 5, 0.36);
}

.hero--immersive .pill {
  border-color: rgba(255, 248, 241, 0.24);
  background: rgba(255, 248, 241, 0.08);
}

.gallery-immersive-hero {
  --hero-image-position: center 68%;
}

.contact-immersive-hero {
  --hero-image-position: center 64%;
}

.collections-immersive-hero {
  --hero-image-position: 55% 14%;
}

.about-immersive-hero {
  --hero-image-position: center 56%;
}

.page-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 2.45vw, 2.12rem);
  line-height: 1.04;
}

.lede {
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.18vw, 1.03rem);
  line-height: 1.48;
  color: var(--muted);
}

.hero--immersive .lede {
  min-block-size: 2.96em;
}

.eyebrow {
  margin-bottom: 0.62rem;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff8f1;
  background: var(--copper-deep);
  border-color: rgba(94, 54, 48, 0.92);
  box-shadow: 0 10px 18px rgba(58, 31, 20, 0.14);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(36, 49, 40, 0.07);
  border-color: rgba(36, 49, 40, 0.14);
}

.btn-secondary:hover {
  background: rgba(35, 49, 40, 0.13);
}

.btn-ghost {
  color: #fff8f1;
  background: rgba(255, 248, 241, 0.08);
  border-color: rgba(255, 248, 241, 0.36);
}

.btn-ghost:hover {
  background: rgba(255, 248, 241, 0.14);
}

.btn-tertiary {
  color: var(--copper-deep);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.btn-tertiary:hover {
  background: rgba(111, 56, 52, 0.07);
  border-color: rgba(111, 56, 52, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-tertiary:hover {
  border-color: currentColor;
}

.hero--immersive .btn-primary {
  color: #fff8f1;
  background: var(--pendleton-rosewood);
  border-color: rgba(255, 248, 241, 0.2);
  box-shadow: 0 10px 18px rgba(10, 6, 4, 0.18);
}

.hero--immersive .btn-ghost,
.hero--immersive .btn-secondary {
  color: #fff8f1;
  background: rgba(85, 122, 118, 0.9);
  border-color: rgba(213, 235, 229, 0.32);
  box-shadow: 0 10px 18px rgba(10, 6, 4, 0.14);
}

.hero--immersive .btn-ghost:hover,
.hero--immersive .btn-secondary:hover {
  background: rgba(85, 122, 118, 1);
}

.hero--immersive .btn-tertiary {
  color: rgba(255, 248, 241, 0.94);
  background: rgba(26, 19, 14, 0.62);
  border-color: rgba(255, 248, 241, 0.28);
  box-shadow: 0 10px 18px rgba(10, 6, 4, 0.12);
  text-decoration: none;
  text-shadow: none;
}

.hero--immersive .btn-tertiary:hover {
  background: rgba(26, 19, 14, 0.76);
}

.hero--immersive .hero-copy .hero-hours-note {
  display: grid;
  align-self: center;
  gap: 0.06rem;
  text-shadow: 0 10px 22px rgba(12, 7, 5, 0.28);
}

.hero--immersive .hero-copy .hero-hours-note-label,
.hero--immersive .hero-copy .hero-hours-note-copy {
  display: block;
}

.hero--immersive .hero-copy .hero-hours-note-label {
  color: rgba(255, 242, 230, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero--immersive .hero-copy .hero-hours-note-copy {
  color: rgba(255, 242, 230, 0.9);
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.24;
  white-space: nowrap;
}

.home-overview-layout,
.home-gallery-layout {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.home-overview-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.home-overview-visuals,
.home-gallery-visuals,
.home-overview-content,
.home-gallery-copy,
.home-cta-copy {
  display: grid;
  align-content: start;
  gap: var(--space-gap-lg);
}

.home-section-head {
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0;
}

.home-section-head p {
  max-width: 36rem;
}

.home-rooted-section {
  padding-top: clamp(1.05rem, 2.4vw, 1.7rem);
}

.home-overview-photo,
.home-gallery-photo,
.home-cta-photo {
  margin: 0;
}

.home-overview-photo--main img {
  aspect-ratio: 4 / 3.1;
  object-position: center 48%;
}

.home-overview-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-gap);
  align-items: start;
}

.home-overview-support .home-overview-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(17rem, 28vw, 22rem);
}

.home-overview-support .home-overview-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.home-overview-grid {
  gap: var(--space-gap);
}

.home-overview-card {
  min-height: 100%;
  padding-top: calc(var(--space-card-lg) + 0.18rem);
  background: rgba(247, 239, 226, 0.42);
}

.home-overview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent-stripe);
  opacity: 0.58;
}

.home-rooted-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.05rem, 3vw, 2rem);
}

.home-rooted-copy {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  max-width: 38rem;
}

.home-rooted-copy .eyebrow {
  margin-bottom: 0;
}

.home-rooted-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 3.1vw, 2.45rem);
  line-height: 1.03;
  color: var(--ink);
}

.home-rooted-copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
}

.home-rooted-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.18rem;
  border-top: 1px solid rgba(67, 47, 32, 0.14);
  border-bottom: 1px solid rgba(67, 47, 32, 0.14);
}

.home-rooted-facts div {
  display: grid;
  align-content: start;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.6rem 0.68rem 0.62rem 0;
}

.home-rooted-facts div + div {
  padding-left: 0.68rem;
  border-left: 1px solid rgba(67, 47, 32, 0.12);
}

.home-rooted-facts span {
  color: var(--copper-deep);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
}

.home-rooted-facts strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.18;
}

.home-rooted-photo {
  margin: 0;
}

.home-rooted-photo img {
  aspect-ratio: 1242 / 783;
  object-position: center;
}

.home-merch-head {
  margin-bottom: clamp(0.72rem, 1.7vw, 1rem);
}

.home-merch-head h2 {
  max-width: 20ch;
}

.home-gallery-section {
  border-top: 1px solid rgba(67, 47, 32, 0.1);
  border-bottom: 1px solid rgba(67, 47, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(85, 122, 118, 0.1), rgba(85, 122, 118, 0.04)),
    rgba(234, 217, 191, 0.4);
}

.home-gallery-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
}

.home-gallery-notes {
  margin-top: 0;
}

.home-gallery-visuals {
  gap: var(--space-gap);
}

.home-gallery-photo--main img {
  aspect-ratio: 16 / 10;
  object-position: center 54%;
}

.home-gallery-support {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: var(--space-gap);
}

.home-gallery-support .home-gallery-photo img {
  aspect-ratio: 5 / 4;
  object-position: center;
}

.home-gallery-photo--portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 32%;
}

.home-gallery-copy .utility-links {
  margin-top: 0.1rem;
}

.cta-band.home-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  background: rgba(244, 232, 212, 0.78);
}

.home-cta-photo {
  align-self: stretch;
  justify-self: start;
  width: 100%;
  max-width: 34rem;
}

.home-cta-photo img {
  height: 100%;
  min-height: clamp(15rem, 27vw, 22rem);
  aspect-ratio: 4 / 3;
  object-position: center;
}

.home-cta-copy {
  align-content: center;
  gap: 0.9rem;
}

.home-cta-copy .button-row {
  margin-top: 0;
}

.cta-band.home-cta-band h2 {
  max-width: 14ch;
}

.about-history-overview,
.about-story-grid,
.about-present-grid {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.about-history-section,
.about-story-section,
.about-present-section {
  align-items: start;
}

.about-story-section,
.about-present-section {
  align-items: center;
}

.about-history-comparison {
  display: grid;
  gap: clamp(0.82rem, 1.8vw, 1.18rem);
}

.about-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-gap-lg);
  align-items: start;
}

.about-comparison-photo {
  align-self: stretch;
  margin: 0;
}

.about-comparison-photo img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.about-history-copy--comparison {
  max-width: 50rem;
}

.about-history-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.about-story-section {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.about-present-section {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.about-history-overview {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.about-history-copy,
.about-story-copy,
.about-story-visuals,
.about-present-copy,
.about-present-visuals {
  display: grid;
  align-content: start;
  gap: var(--space-gap-lg);
}

.about-history-copy h2,
.about-story-copy h2,
.about-present-copy h2,
.about-links-intro h2 {
  font-family: var(--font-display);
  line-height: 1.06;
  color: var(--ink);
}

.about-history-copy h2,
.about-story-copy h2,
.about-present-copy h2 {
  font-size: clamp(1.38rem, 2.35vw, 1.95rem);
}

.about-history-copy p,
.about-story-copy p,
.about-present-copy p,
.about-links-intro p,
.about-history-milestone p,
.about-link-card span {
  color: var(--muted);
}

.about-section-head {
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0;
}

.about-section-head p {
  max-width: 38rem;
}

.about-story-copy .note-list,
.about-present-copy .note-list {
  margin-top: 0;
}

.about-history-milestones {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
}

.about-history-milestone {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.72rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(67, 47, 32, 0.12);
}

.about-history-milestone > span {
  color: var(--copper-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-history-milestone strong,
.about-link-card strong {
  display: block;
  color: var(--ink);
}

.about-story-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
}

.about-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-gap);
}

.about-story-point {
  min-height: 100%;
}

.about-story-point .card-label {
  margin-bottom: 0.32rem;
}

.about-story-point p:last-child {
  margin-top: 0;
}

.about-story-photo,
.about-present-photo {
  margin: 0;
}

.about-story-photo--main img {
  aspect-ratio: 16 / 10;
  object-position: center 58%;
}

.about-present-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.about-present-notes {
  margin-top: 0;
}

.about-present-photo--main img {
  aspect-ratio: 16 / 10;
  object-position: center 46%;
}

.about-links-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(0.9rem, 2vw, 1.2rem);
  padding: var(--space-card-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(244, 233, 217, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    var(--shadow-soft);
}

.about-links-intro {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.about-links-intro h2 {
  font-size: clamp(1.55rem, 2.7vw, 2rem);
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-gap);
}

.about-link-card {
  display: grid;
  align-content: start;
  gap: 0.34rem;
  min-height: 100%;
  padding: var(--space-card);
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.42);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.about-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 86, 61, 0.24);
  background: rgba(248, 241, 230, 0.62);
}

.about-link-card--primary {
  border-color: rgba(111, 56, 52, 0.22);
  background:
    linear-gradient(180deg, rgba(135, 77, 74, 0.12), rgba(194, 159, 108, 0.08)),
    rgba(248, 241, 230, 0.58);
}

.about-link-card--primary strong {
  color: var(--copper-deep);
}

.about-link-card--quiet {
  background: rgba(247, 239, 226, 0.3);
}

.category-board,
.contact-panel,
.visit-panel,
.gallery-panel,
.collection-close {
  display: grid;
  gap: var(--space-gap-lg);
  padding: clamp(0.82rem, 1.7vw, 1.12rem);
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.34);
}

.category-board {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  margin-top: 0.85rem;
}

.category-board-lead strong,
.gallery-panel-lead h3,
.collection-close-lead h2,
.contact-block h2,
.visit-block h2 {
  font-family: var(--font-display);
  line-height: 1.08;
  color: var(--ink);
}

.category-board-lead strong {
  display: block;
  max-width: 19rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.category-board-lead p,
.gallery-panel-lead p,
.collection-close-lead p {
  margin-top: 0.58rem;
  color: var(--muted);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(67, 47, 32, 0.12);
}

.category-item {
  min-height: 5rem;
  padding: 0.18rem 0.78rem 0.72rem;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
}

.category-item:nth-child(-n + 2) {
  border-top: 0;
}

.category-item span,
.grouped-list strong {
  display: block;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-item strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.24;
}

.contact-panel,
.visit-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
}

.contact-block,
.visit-block {
  min-height: 100%;
  padding: 0.25rem 0.75rem;
  border-left: 1px solid rgba(67, 47, 32, 0.12);
}

.contact-block:first-child,
.visit-block:first-child {
  border-left: 0;
}

.contact-block h2,
.visit-block h2 {
  max-width: 16rem;
  margin-bottom: 0.62rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.contact-block h2 a,
.visit-block h2 a {
  text-decoration: none;
}

.contact-hours,
.visit-hours {
  display: grid;
  align-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-md);
  background: rgba(194, 159, 108, 0.1);
}

.hours-stack {
  display: grid;
  gap: 0.62rem;
}

.hours-stack strong,
.hours-stack span {
  display: block;
}

.hours-stack strong {
  color: var(--ink);
}

.hours-stack span {
  color: var(--muted);
}

.contact-overview-section {
  padding-top: clamp(1.05rem, 2.4vw, 1.7rem);
}

.contact-overview-layout,
.contact-arrival-layout {
  display: grid;
  gap: clamp(0.95rem, 2.8vw, 1.85rem);
}

.contact-overview-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.contact-overview-copy,
.contact-arrival-copy {
  display: grid;
  align-content: start;
  gap: var(--space-gap-lg);
}

.contact-overview-copy {
  max-width: 34rem;
}

.contact-overview-copy .eyebrow,
.contact-section-head {
  margin-bottom: 0;
}

.contact-overview-copy h2,
.contact-detail-card h3 {
  font-family: var(--font-display);
  line-height: 1.06;
  color: var(--ink);
}

.contact-overview-copy h2 {
  max-width: 13ch;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.contact-overview-copy p,
.contact-detail-card span,
.contact-hours-list span {
  color: var(--muted);
}

.contact-overview-actions {
  margin-top: 0.15rem;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-gap);
}

.contact-detail-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 0.82rem;
  min-height: clamp(9.6rem, 16vw, 12rem);
  overflow: hidden;
  padding: clamp(0.82rem, 1.6vw, 1.05rem);
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.46);
}

.contact-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent-stripe);
  opacity: 0.58;
}

.contact-detail-card--address {
  grid-column: 1 / -1;
  min-height: clamp(9.2rem, 16vw, 12rem);
  background:
    linear-gradient(145deg, rgba(135, 77, 74, 0.13), rgba(85, 122, 118, 0.1)),
    rgba(247, 239, 226, 0.5);
}

.contact-detail-card--hours {
  background:
    linear-gradient(145deg, rgba(85, 122, 118, 0.16), rgba(194, 159, 108, 0.1)),
    rgba(247, 239, 226, 0.48);
}

.contact-card-label {
  margin-bottom: 0.42rem;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-detail-card h3 {
  max-width: 16rem;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
}

.contact-detail-card--address h3 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 3.2vw, 2.24rem);
}

.contact-detail-card h3 a {
  text-decoration: none;
}

.contact-detail-card > .text-link {
  align-self: end;
  width: fit-content;
}

.contact-hours-list {
  display: grid;
  gap: 0;
}

.contact-hours-list div {
  padding: 0.62rem 0;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
}

.contact-hours-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-hours-list div:last-child {
  padding-bottom: 0;
}

.contact-hours-list strong,
.contact-hours-list span {
  display: block;
}

.contact-arrival-section {
  border-top: 1px solid rgba(67, 47, 32, 0.1);
  border-bottom: 1px solid rgba(67, 47, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(85, 122, 118, 0.1), rgba(85, 122, 118, 0.04)),
    rgba(234, 217, 191, 0.48);
}

.contact-arrival-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
}

.contact-arrival-photo {
  margin: 0;
}

.contact-arrival-photo img {
  aspect-ratio: 4 / 3;
  object-position: 43% 52%;
}

.contact-section-head {
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.contact-section-head p {
  max-width: 34rem;
}

.contact-note-list {
  margin-top: 0;
}

.contact-arrival-copy .utility-links {
  margin-top: 0.05rem;
}

.gallery-panel,
.collection-close {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.gallery-panel-lead h3,
.collection-close-lead h2 {
  max-width: 20rem;
  font-size: clamp(1.35rem, 2.3vw, 1.82rem);
}

.grouped-list {
  display: grid;
  gap: 0;
}

.grouped-list > div {
  padding: 0.72rem 0;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
}

.grouped-list > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.grouped-list > div:last-child {
  padding-bottom: 0;
}

.grouped-list span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  line-height: 1.4;
}

.collection-guide {
  display: grid;
  gap: clamp(0.82rem, 1.8vw, 1.18rem);
}

.collection-guide--front {
  gap: clamp(0.72rem, 1.7vw, 1.05rem);
}

.collection-lead-photo {
  display: none;
  margin: 0;
}

.collection-lead-photo img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.collection-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-gap);
}

.collection-guide-grid--collections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-guide-card {
  display: grid;
  align-content: start;
  gap: 0.38rem;
  min-height: 100%;
  padding: var(--space-card);
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.38);
}

.collection-guide-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.12;
  color: var(--ink);
}

.collection-guide-card p:last-child,
.collection-feature-copy p,
.collection-supply-grid span {
  color: var(--muted);
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: center;
}

.collection-feature--makers {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.collection-feature--goods {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.collection-feature-copy {
  display: grid;
  align-content: center;
  gap: var(--space-gap);
}

.collection-feature-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.06;
  color: var(--ink);
}

.collection-feature-list {
  margin-top: 0.15rem;
}

.collection-feature-visuals {
  align-items: start;
}

.collection-feature-photo {
  margin: 0;
}

.collection-feature-photo img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.collection-supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
  border-bottom: 1px solid rgba(67, 47, 32, 0.12);
}

.collection-supply-grid > div {
  padding: 0.7rem 0.72rem;
  border-left: 1px solid rgba(67, 47, 32, 0.12);
}

.collection-supply-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.collection-supply-grid strong,
.collection-supply-grid span {
  display: block;
}

.collection-supply-grid strong {
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.collection-supply-grid span {
  margin-top: 0.2rem;
  line-height: 1.38;
}

.gallery-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-gap);
  margin-top: 0.95rem;
}

.gallery-intro {
  display: grid;
  align-items: center;
}

.gallery-intro-copy {
  max-width: 56rem;
}

.gallery-mobile-lead-photo {
  display: none;
  margin: 0;
}

.gallery-intro-visual {
  align-self: center;
}

.gallery-highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(0.78rem, 1.8vw, 1.12rem);
  align-items: start;
  padding: clamp(0.72rem, 1.5vw, 0.95rem);
  border: 1px solid rgba(67, 47, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 226, 0.34);
}

.gallery-highlight-copy {
  display: grid;
  gap: 0.55rem;
}

.gallery-highlight-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.68rem);
  line-height: 1.08;
  color: var(--ink);
}

.gallery-highlight-copy p {
  color: var(--muted);
}

@media (min-width: 901px) {
  .page-gallery .gallery-intro,
  .collection-feature--pendleton {
    align-items: start;
  }

  .page-gallery .gallery-intro-visual {
    align-self: start;
  }

  .collection-feature--pendleton .collection-feature-copy {
    align-content: start;
    padding-top: clamp(0.12rem, 0.45vw, 0.32rem);
  }
}

.gallery-newspaper-photo img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: rgba(232, 215, 188, 0.44);
}

.gallery-moccasins-photo img {
  aspect-ratio: 4 / 5;
  object-position: center 52%;
}

.framed-photo {
  padding: 0.2rem;
  border: 1px solid rgba(67, 47, 32, 0.16);
  border-radius: calc(var(--radius-lg) + 1px);
  background: rgba(248, 239, 226, 0.88);
  box-shadow: none;
  align-self: start;
}

.framed-photo img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.page-hero-photo img,
.hero-image-frame img {
  aspect-ratio: 16 / 10;
}

.gallery-hero-photo img,
.gallery-detail-frame img {
  object-position: center 28%;
}

.archive-photo-frame img {
  aspect-ratio: 1042 / 546;
  object-position: center;
}

.category-closeup-frame img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.tall-photo img {
  aspect-ratio: 4 / 5;
}

.wide-photo img,
.detail-photo img,
.mixed-merch-frame img {
  aspect-ratio: 5 / 4;
}

.mixed-merch-frame--browse img {
  object-position: 24% 52%;
}

.mixed-merch-frame--textiles img {
  object-position: 84% 46%;
}

.panorama-photo img,
.wide-interior-frame img {
  aspect-ratio: 1795 / 686;
  object-position: center;
}

.wagon-feature-frame img {
  aspect-ratio: 16 / 10;
  object-position: center 56%;
}

.home-feature-frame {
  width: min(100%, 36rem);
  margin-inline: auto;
}

.home-feature-frame img {
  aspect-ratio: 4 / 3;
  object-position: center 42%;
}

.home-category-layout.home-category-layout--images {
  grid-template-columns: 1fr;
  gap: clamp(0.82rem, 1.8vw, 1.18rem);
}

.media-pair.media-pair--home {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.media-pair--home .home-jewelry-photo img {
  aspect-ratio: 4 / 3;
  object-position: center 36%;
}

.media-pair--home .home-coyote-photo img {
  aspect-ratio: auto;
  object-position: center top;
}

.home-coyote-photo {
  width: min(100%, 22rem);
  justify-self: center;
}

.interior-panorama-frame img {
  aspect-ratio: 1036 / 466;
  object-position: center;
}

.photo-stack,
.media-pair,
.home-category-layout {
  display: grid;
  gap: var(--space-gap);
}

.photo-stack {
  gap: var(--space-gap);
}

.photo-grid {
  display: grid;
  gap: var(--space-gap);
  margin-top: 0.9rem;
}

.photo-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid .framed-photo {
  margin: 0;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.gallery-photo-grid img {
  aspect-ratio: 5 / 4;
}

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

.gallery-guns-photo img {
  aspect-ratio: 1323 / 828;
  object-fit: contain;
  object-position: left center;
  background: rgba(232, 215, 188, 0.44);
}

.gallery-plan-copy {
  max-width: 48rem;
}

.home-category-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  align-items: start;
  margin-top: 0.78rem;
}

.home-category-layout .category-board {
  margin-top: 0;
}

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

.media-pair .framed-photo,
.photo-stack .framed-photo {
  margin: 0;
}

.media-pair img {
  object-position: center;
}

.split-feature--history {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.history-photo-stack {
  display: grid;
  gap: clamp(0.6rem, 1.5vw, 0.9rem);
  align-self: start;
}

.history-photo {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px);
  border: 1px solid rgba(67, 47, 32, 0.1);
  background: rgba(244, 232, 213, 0.55);
  box-shadow: 0 10px 24px rgba(28, 18, 10, 0.06);
}

.history-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.history-photo--store img {
  aspect-ratio: 1042 / 546;
}

.history-photo--gallery img {
  aspect-ratio: 4 / 3;
}

.media-pair--portrait img {
  aspect-ratio: 4 / 5;
}

.gallery-art-frame img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.section {
  padding: var(--space-section) 0;
}

.section-tight {
  padding: var(--space-section-tight) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(234, 217, 191, 0.5) 0%, rgba(225, 205, 174, 0.7) 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.82rem;
}

.section-head h1,
.section-head h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.38rem, 2.35vw, 1.95rem);
  line-height: 1.06;
}

.section-head p {
  max-width: 34rem;
  line-height: 1.48;
  color: var(--muted);
}

.shop-embed-shell {
  min-height: clamp(10rem, 26vh, 18rem);
  padding: clamp(0.82rem, 1.55vw, 1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(244, 233, 217, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    var(--shadow-soft);
  overflow-x: auto;
}

.shop-notes {
  margin-top: clamp(0.95rem, 2vw, 1.25rem);
}

.section-head--compact {
  margin-bottom: 0.68rem;
}

.shop-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: var(--space-card-lg);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.card:hover {
  border-color: rgba(163, 86, 61, 0.24);
  background: rgba(248, 241, 230, 0.6);
}

.card-label {
  margin-bottom: 0.45rem;
  color: var(--copper-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
  line-height: 1.1;
}

.card > * + .utility-links {
  margin-top: 1rem;
}

.card p {
  color: var(--muted);
}

.split-feature {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.gallery-intro p,
.gallery-plan-copy p,
.split-feature p {
  color: var(--muted);
}

.note-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.note-item {
  display: grid;
  grid-template-columns: minmax(0, 9rem) minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  padding: 0.78rem 0;
  border-top: 1px solid rgba(67, 47, 32, 0.12);
  background: none;
}

.note-list > *:last-child {
  border-bottom: 1px solid rgba(67, 47, 32, 0.12);
}

.note-item strong {
  font-size: 0.92rem;
  color: var(--ink);
}

.note-item span {
  color: var(--muted);
}

.merch-grid {
  display: grid;
  gap: var(--space-gap-lg);
}

.credibility-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr) auto;
  gap: 0.8rem 1rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: var(--space-card);
}

.credibility-strip h3,
.merch-card-copy h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  color: var(--ink);
}

.credibility-strip h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
}

.credibility-strip p,
.merch-card-copy p {
  color: var(--muted);
}

.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 0.82rem;
  margin-top: 0;
}

.compact-links a {
  white-space: nowrap;
  font-size: 0.88rem;
}

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

.merch-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 0.72rem;
  padding: 0.62rem;
}

.merch-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.merch-card .framed-photo {
  margin: 0;
}

.merch-card-copy {
  padding-right: 0.2rem;
}

.merch-card-aside {
  margin-top: 0.7rem;
}

.merch-card-aside img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.merch-card-copy h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.08;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(71, 52, 37, 0.1);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  background: rgba(194, 159, 108, 0.08);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.utility-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.utility-links.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 0.82rem;
  margin-top: 0;
}

.utility-links a {
  color: var(--copper-deep);
  font-weight: 800;
  text-decoration: none;
}

.utility-links a:hover {
  text-decoration: underline;
}

.shop-support-actions {
  margin-top: 0.75rem;
}

.text-link {
  color: var(--copper-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.15rem;
  padding: var(--space-card-lg);
  background: rgba(244, 232, 212, 0.72);
}

.cta-band h2 {
  max-width: 12ch;
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 3.7vw, 2.6rem);
}

.cta-band p {
  max-width: 30rem;
  color: var(--muted);
}

.cta-band .button-row {
  margin-top: 0;
}

.footer {
  position: relative;
  margin-top: clamp(0.7rem, 1.2vw, 1rem);
  padding: 0.85rem 0 calc(0.8rem + env(safe-area-inset-bottom));
  color: rgba(244, 236, 223, 0.82);
  border-top: 1px solid rgba(194, 159, 108, 0.18);
  background: linear-gradient(180deg, rgba(28, 40, 34, 0.98) 0%, rgba(19, 27, 23, 0.99) 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent-stripe);
  opacity: 0.68;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: 0.7rem 1.2rem;
}

.footer-brand {
  margin-bottom: 0.18rem;
  color: #fff6ea;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-branding {
  display: grid;
  gap: 0.22rem;
  max-width: 24rem;
}

.footer-location {
  color: rgba(244, 236, 223, 0.82);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.32rem;
  color: #fff6ea;
  font-weight: 700;
  text-decoration: none;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.15rem;
  width: min(100%, 24rem);
  justify-self: end;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.18rem;
}

.footer-links .footer-primary-link {
  color: #fff6ea;
  font-weight: 900;
}

.footer-heading {
  margin: 0 0 0.18rem;
  color: rgba(244, 236, 223, 0.54);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: rgba(244, 236, 223, 0.86);
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.mobile-bottom-cta {
  display: none;
}

.hero-copy,
.page-hero-copy,
.page-hero-photo {
  animation: fade-rise 0.45s ease both;
}

.page-home .hero-copy {
  animation: none;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .footer-link-groups {
    width: min(100%, 24rem);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .page-hero-grid.reverse,
  .split-feature,
  .contact-grid,
  .contact-overview-layout,
  .contact-arrival-layout,
  .credibility-strip,
  .collection-feature,
  .collection-feature--makers,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .contact-panel,
  .gallery-panel,
  .collection-close {
    grid-template-columns: 1fr;
  }

  .gallery-highlight-grid,
  .gallery-highlight-card {
    grid-template-columns: 1fr;
  }

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

  .contact-block,
  .contact-block:first-child {
    padding: 0.7rem 0;
    border-left: 0;
    border-top: 1px solid rgba(67, 47, 32, 0.12);
  }

  .contact-block:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .credibility-strip {
    align-items: start;
  }

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

  .home-overview-layout,
  .home-rooted-layout,
  .home-gallery-layout,
  .cta-band.home-cta-band,
  .about-history-overview,
  .about-story-grid,
  .about-present-grid,
  .about-links-band {
    grid-template-columns: 1fr;
  }

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

  .about-story-points,
  .about-links-grid {
    grid-template-columns: 1fr;
  }

  .merch-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

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

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

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

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

  .about-comparison-grid {
    gap: var(--space-gap);
  }

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

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    width: 100%;
  }

  .hero--immersive {
    --hero-min-height: clamp(25rem, 58vh, 31rem);
  }

  .contact-immersive-hero {
    --hero-image-position: center 62%;
  }

  .collections-immersive-hero {
    --hero-image-position: 54% 12%;
  }

  .about-immersive-hero {
    --hero-image-position: center 54%;
  }

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

  .page-hero-grid.reverse > .page-hero-copy {
    order: 1;
  }

  .page-hero-grid.reverse > figure {
    order: 2;
  }

  .about-hero-grid > .page-hero-copy {
    order: 1;
  }

  .about-hero-grid > figure {
    order: 2;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding-top: calc(2.6rem + env(safe-area-inset-top));
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    padding-top: env(safe-area-inset-top);
    background: rgba(235, 218, 192, 0.98);
    box-shadow:
      0 1px 0 rgba(255, 246, 233, 0.68),
      0 4px 12px rgba(30, 20, 12, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::after {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 5.55rem);
  }

  html.js .nav-toggle {
    display: inline-flex;
  }

  html.js .nav-links {
    position: absolute;
    top: calc(100% + 0.18rem);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.12rem;
    padding: 0.28rem;
    border: 1px solid rgba(67, 47, 32, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(243, 231, 213, 0.99);
    box-shadow: 0 10px 18px rgba(20, 12, 8, 0.08);
    max-height: min(22rem, calc(100svh - 4rem));
    overflow-y: auto;
  }

  html.js .site-header.is-nav-open .nav-links {
    display: grid;
  }

  html.js .nav-links a {
    min-height: 2.22rem;
    justify-content: flex-start;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(67, 47, 32, 0.08);
    border-radius: calc(var(--radius-sm) + 1px);
    background: rgba(249, 243, 233, 0.82);
    box-shadow: none;
    white-space: normal;
  }

  html.js .nav-links a[aria-current="page"] {
    background: rgba(26, 19, 14, 0.94);
    border-color: rgba(26, 19, 14, 0.94);
    color: #f8efe2;
  }

  html.js .nav-links a.nav-conversion:not([aria-current="page"]) {
    background: rgba(135, 77, 74, 0.14);
    border-color: rgba(135, 77, 74, 0.22);
    color: var(--copper-deep);
  }

  body.has-mobile-bottom-cta .footer {
    padding-bottom: calc(4.8rem + env(safe-area-inset-bottom));
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(6.4rem, 0.42fr);
    gap: 0.46rem;
    align-items: center;
    padding: 0.5rem 0.62rem calc(0.56rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(194, 159, 108, 0.3);
    background:
      linear-gradient(90deg, rgba(135, 77, 74, 0.18), rgba(85, 122, 118, 0.16)),
      linear-gradient(180deg, #1d291f 0%, #111c17 100%);
    box-shadow:
      0 -1px 0 rgba(255, 246, 233, 0.08),
      0 -10px 22px rgba(20, 12, 8, 0.28);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 140ms ease,
      visibility 0s linear 140ms;
  }

  .mobile-bottom-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-bottom-cta::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: var(--accent-stripe);
    opacity: 0.7;
  }

  .mobile-bottom-cta a {
    min-width: 0;
    min-height: 2.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
  }

  .mobile-bottom-cta__primary {
    border: 1px solid rgba(255, 246, 234, 0.22);
    background: #874d4a;
    color: #fff6ea;
    box-shadow: inset 0 1px 0 rgba(255, 246, 234, 0.16);
  }

  .mobile-bottom-cta__secondary {
    border: 1px solid rgba(244, 236, 223, 0.22);
    background: rgba(255, 246, 234, 0.08);
    color: rgba(255, 246, 234, 0.92);
  }

}

@media (max-width: 640px) {
  .site-shell {
    padding-top: calc(3.05rem + env(safe-area-inset-top));
  }

  .wrap {
    width: min(calc(100% - 1.1rem), var(--max-width));
    min-width: 0;
  }

  .photo-grid--three {
    grid-template-columns: 1fr;
  }

  .about-comparison-grid {
    grid-template-columns: 1fr;
  }

  .home-overview-support,
  .home-gallery-support,
  .home-overview-grid {
    grid-template-columns: 1fr;
  }

  .home-rooted-copy {
    max-width: none;
  }

  .home-rooted-copy h2,
  .home-rooted-copy p {
    max-width: none;
  }

  .home-rooted-facts {
    grid-template-columns: 1fr;
  }

  .home-rooted-facts div {
    padding: 0.5rem 0;
  }

  .home-rooted-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(67, 47, 32, 0.12);
    border-left: 0;
  }

  .home-overview-support .home-overview-photo {
    height: auto;
  }

  .home-overview-support .home-overview-photo img {
    height: auto;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.34rem;
    padding: 0.22rem 0 0.24rem;
    min-height: 2.75rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.42rem, 6.4vw, 1.82rem);
  }

  .hero--immersive .hero-copy .hero-hours-note {
    flex-basis: 100%;
  }

  .hero--immersive .hero-copy .hero-hours-note-label {
    font-size: 0.54rem;
  }

  .hero--immersive .hero-copy .hero-hours-note-copy {
    font-size: 0.68rem;
    white-space: normal;
  }

  .split-feature--history {
    gap: 0.72rem;
  }

  .hero--immersive {
    --hero-min-height: clamp(15.5rem, 44svh, 18rem);
    --hero-image-position: center 58%;
    padding-top: 0.12rem;
    padding-bottom: 0.58rem;
  }

  .hero--immersive::before {
    background:
      linear-gradient(180deg, rgba(18, 12, 8, 0.08) 0%, rgba(18, 12, 8, 0.34) 24%, rgba(18, 12, 8, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 12, 8, 0.74) 0%, rgba(18, 12, 8, 0.2) 62%);
  }

  .gallery-immersive-hero {
    --hero-image-position: center 58%;
  }

  .contact-immersive-hero {
    --hero-image-position: center 60%;
  }

  .collections-immersive-hero {
    --hero-image-position: 52% 10%;
  }

  .hero--immersive .hero-grid {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .about-immersive-hero {
    --hero-image-position: center 52%;
  }

  .hero--immersive .hero-copy {
    max-width: 16.8rem;
  }

  .hero--immersive .hero-copy h1 {
    min-block-size: 2.94em;
    margin-bottom: 0.3rem;
    font-size: clamp(1.54rem, 7.2vw, 1.94rem);
    line-height: 0.98;
  }

  .hero--immersive .lede {
    min-block-size: 3.96em;
    max-width: 16.4rem;
    font-size: 0.8rem;
    line-height: 1.32;
  }

  .hero--immersive .eyebrow {
    margin-bottom: 0.24rem;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }

  .button-row {
    gap: 0.38rem;
    margin-top: 0.64rem;
  }

  .btn {
    min-height: 2.24rem;
    padding: 0 0.76rem;
    font-size: 0.75rem;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .page-hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .page-hero-copy .button-row .btn:first-child {
    grid-column: auto;
  }

  .hero--immersive .button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.32rem;
    margin-top: 0.46rem;
  }

  .hero--immersive .button-row .btn {
    width: auto;
  }

  .hero--immersive .btn {
    min-height: 2.06rem;
    padding: 0 0.5rem;
    font-size: 0.68rem;
  }

  .hero--immersive .btn-primary {
    box-shadow: 0 10px 18px rgba(10, 6, 4, 0.18);
  }

  .hero--immersive .hero-copy .hero-hours-note {
    gap: 0.04rem;
  }

  .hero--immersive .hero-copy .hero-hours-note-label {
    font-size: 0.56rem;
  }

  .hero--immersive .hero-copy .hero-hours-note-copy {
    font-size: 0.72rem;
  }

  .category-board,
  .contact-panel,
  .contact-detail-grid,
  .gallery-panel,
  .collection-close {
    grid-template-columns: 1fr;
  }

  .contact-detail-card,
  .contact-detail-card--address {
    grid-row: auto;
    min-height: auto;
  }

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

  .collection-lead-photo {
    display: block;
  }

  .collection-feature-photo--desktop-origin {
    display: none;
  }

  .page-gallery .gallery-intro-visual {
    display: none;
  }

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

  .collection-supply-grid > div,
  .collection-supply-grid > div:first-child {
    padding: 0.58rem 0;
    border-left: 0;
    border-top: 1px solid rgba(67, 47, 32, 0.12);
  }

  .collection-supply-grid > div:first-child {
    border-top: 0;
  }

  .category-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .category-item {
    min-height: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .category-item:nth-child(-n + 2) {
    border-top: 1px solid rgba(67, 47, 32, 0.12);
  }

  .category-item:first-child {
    border-top: 0;
  }

  .contact-hours {
    padding: 0.62rem;
    border: 1px solid rgba(67, 47, 32, 0.12);
  }

  .hours-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .hero-copy .button-row,
  .page-hero-copy .button-row {
    width: 100%;
  }

  .page-hero {
    padding-top: 0.08rem;
    padding-bottom: 0.62rem;
  }

  .brand {
    max-width: none;
    min-width: 0;
  }

  .brand-copy strong {
    max-width: 100%;
    overflow: visible;
    font-size: clamp(0.78rem, 3.55vw, 0.9rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-overflow: clip;
    white-space: normal;
  }

  .brand-copy span {
    overflow: visible;
    font-size: clamp(0.54rem, 2.5vw, 0.62rem);
    letter-spacing: 0.08em;
    line-height: 1.06;
    white-space: normal;
  }

  .nav-toggle {
    width: 2.34rem;
    height: 2.34rem;
    border-radius: 7px;
  }

  .header-cart-button {
    width: 2.34rem;
    height: 2.34rem;
    border-radius: 7px;
  }

  .header-cart-icon {
    width: 1.04rem;
    height: 1.04rem;
  }

  .header-cart-badge {
    top: 0.04rem;
    right: 0.04rem;
    min-width: 0.92rem;
    height: 0.92rem;
    font-size: 0.56rem;
  }

  .nav-toggle-box {
    width: 1rem;
    height: 0.78rem;
  }

  html.js .nav-links a {
    min-height: 2.12rem;
    padding: 0.52rem 0.68rem;
  }

  .section,
  .section-tight {
    padding: 0.72rem 0;
  }

  .section-head {
    gap: 0.36rem;
    margin-bottom: 0.58rem;
  }

  .section-head p {
    max-width: none;
  }

  .section-head h2,
  .gallery-intro h2,
  .split-feature h2,
  .contact-overview-copy h2,
  .contact-focus h2 {
    font-size: clamp(1.18rem, 5.4vw, 1.48rem);
    line-height: 1.05;
  }

  .lede,
  .section-head p,
  .gallery-intro p,
  .split-feature p,
  .card p,
  .merch-card-copy p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .eyebrow,
  .card-label,
  .contact-card-label,
  .category-item span,
  .grouped-list strong {
    font-size: 0.7rem;
  }

  .page-hero-copy {
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0.08rem 0 0;
  }

  .note-item {
    grid-template-columns: 1fr;
    gap: 0.24rem;
    padding: 0.58rem 0;
  }

  .merch-card {
    grid-template-columns: 1fr;
    gap: 0.48rem;
    padding: 0.48rem;
  }

  .merch-card-copy h3 {
    margin-bottom: 0.34rem;
    font-size: 1.06rem;
  }

  .category-board,
  .contact-panel,
  .gallery-panel,
  .collection-close {
    gap: 0.52rem;
    padding: 0.64rem;
  }

  .collection-guide,
  .collection-feature,
  .collection-feature-copy {
    gap: 0.62rem;
  }

  .collection-guide-card {
    gap: 0.28rem;
    padding: 0.62rem;
  }

  .gallery-highlight-grid {
    gap: 0.58rem;
  }

  .gallery-highlight-card {
    gap: 0.52rem;
    padding: 0.64rem;
  }

  .page-gallery .gallery-mobile-lead-photo {
    display: block;
    margin: 0 0 0.72rem;
  }

  .page-gallery .gallery-mobile-lead-photo img {
    aspect-ratio: 16 / 10;
  }

  .gallery-photo-grid--reduced {
    grid-template-columns: 1fr;
  }

  .category-board {
    margin-top: 0.58rem;
  }

  .category-board-lead strong,
  .gallery-panel-lead h3,
  .collection-close-lead h2,
  .contact-block h2,
  .collection-feature-copy h2,
  .gallery-highlight-copy h3 {
    font-size: clamp(1.04rem, 4.8vw, 1.28rem);
  }

  .category-board-lead p,
  .gallery-panel-lead p,
  .collection-close-lead p {
    margin-top: 0.36rem;
  }

  .category-item {
    padding-top: 0.52rem;
    padding-bottom: 0.52rem;
  }

  .grouped-list > div {
    padding: 0.55rem 0;
  }

  .home-category-layout {
    gap: 0.52rem;
    margin-top: 0.58rem;
  }

  .media-pair.media-pair--home {
    grid-template-columns: 1fr;
  }

  .home-coyote-photo {
    width: min(100%, 20rem);
  }

  .photo-stack {
    gap: 0.52rem;
  }

  .media-pair--portrait img {
    aspect-ratio: 4 / 3;
  }

  .pill-list {
    gap: 0.34rem;
    margin-top: 0.62rem;
  }

  .pill {
    padding: 0.32rem 0.48rem;
    font-size: 0.7rem;
  }

  .compact-links {
    gap: 0.28rem 0.68rem;
  }

  .home-overview-content,
  .home-gallery-copy,
  .home-cta-copy,
  .contact-overview-copy,
  .contact-arrival-copy,
  .about-history-copy,
  .about-story-copy,
  .about-story-visuals,
  .about-present-copy,
  .about-present-visuals,
  .about-links-intro {
    gap: 0.62rem;
  }

  .cta-band.home-cta-band {
    gap: 0.62rem;
  }

  .page-home .hero--immersive {
    --hero-min-height: clamp(19.5rem, 52svh, 24rem);
    --hero-image-position: center 56%;
    padding-top: 0.36rem;
    padding-bottom: 0.9rem;
  }

  .page-home .hero--immersive::before {
    background:
      linear-gradient(180deg, rgba(18, 12, 8, 0.06) 0%, rgba(18, 12, 8, 0.24) 28%, rgba(18, 12, 8, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 12, 8, 0.78) 0%, rgba(18, 12, 8, 0.18) 66%);
  }

  .page-home .section,
  .page-home .section-tight {
    padding: 1rem 0;
  }

  .page-home .home-rooted-section {
    padding-top: 0.85rem;
  }

  .page-home .home-rooted-layout,
  .page-home .home-overview-layout,
  .page-home .home-gallery-layout,
  .page-home .cta-band.home-cta-band {
    gap: 0.82rem;
  }

  .page-home .home-rooted-photo,
  .page-home .home-gallery-photo--main {
    order: -1;
  }

  .page-home .home-rooted-photo img,
  .page-home .home-overview-photo--main img,
  .page-home .home-gallery-photo--main img,
  .page-home .home-cta-photo img {
    aspect-ratio: 16 / 10;
  }

  .page-home .home-rooted-copy,
  .page-home .home-overview-content,
  .page-home .home-gallery-copy,
  .page-home .home-cta-copy {
    gap: 0.72rem;
  }

  .page-home .home-rooted-facts {
    padding: 0 0.68rem;
    border: 1px solid rgba(67, 47, 32, 0.13);
    border-radius: var(--radius-lg);
    background:
      linear-gradient(90deg, rgba(135, 77, 74, 0.08), rgba(85, 122, 118, 0.07)),
      rgba(247, 239, 226, 0.44);
  }

  .page-home .home-overview-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .page-home .home-overview-support .home-overview-photo {
    aspect-ratio: 1;
    height: auto;
  }

  .page-home .home-overview-support .home-overview-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .page-home .home-overview-photo--article img {
    object-position: center 34%;
  }

  .page-home .home-overview-photo--coyote img {
    object-position: center 38%;
  }

  .page-home .home-overview-card {
    padding: 0.72rem 0.76rem 0.76rem;
    border-color: rgba(67, 47, 32, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 248, 238, 0.48), rgba(255, 248, 238, 0.18)),
      rgba(247, 239, 226, 0.48);
  }

  .page-home .home-gallery-section {
    background:
      linear-gradient(180deg, rgba(85, 122, 118, 0.14), rgba(135, 77, 74, 0.06)),
      rgba(234, 217, 191, 0.48);
  }

  .page-home .cta-band.home-cta-band {
    padding: 0.72rem;
    background:
      linear-gradient(145deg, rgba(135, 77, 74, 0.12), rgba(85, 122, 118, 0.08)),
      rgba(244, 232, 212, 0.82);
  }

  .page-home .home-cta-photo img {
    min-height: 0;
  }

  .page-home .home-cta-band .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }

  .page-home .home-cta-band .btn {
    width: 100%;
  }

  .page-home .home-cta-band .btn-tertiary {
    width: auto;
    justify-self: start;
    padding-inline: 0;
  }

  .home-cta-photo {
    max-width: none;
  }

  .home-overview-photo--main img,
  .home-gallery-photo--main img,
  .home-cta-photo img,
  .contact-arrival-photo img,
  .about-story-photo--main img,
  .about-present-photo--main img {
    aspect-ratio: 4 / 3;
  }

  .about-history-milestone {
    grid-template-columns: 1fr;
    gap: 0.18rem;
    padding: 0.66rem 0;
  }

  .compact-links a {
    font-size: 0.78rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .nav-bar,
  .brand-copy,
  .section-head,
  .card,
  .merch-card,
  .framed-photo,
  .cta-band,
  .contact-detail-card,
  .gallery-highlight-card,
  .collection-guide-card,
  .shop-embed-shell {
    min-width: 0;
  }

  .utility-links a,
  .text-link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .framed-photo,
  .framed-photo img,
  .shop-embed-shell,
  .shop-embed-shell iframe,
  .shop-embed-shell img,
  .shop-embed-shell button,
  .shop-embed-shell [class*="shopify-buy"] {
    max-width: 100%;
  }

  #shopify-cart-root.shopify-buy-frame--cart {
    max-width: min(100vw, 350px) !important;
  }

  .footer {
    margin-top: 0.52rem;
    padding-top: 0.72rem;
  }

  .footer-grid {
    gap: 0.75rem;
  }

  .footer-branding {
    padding-bottom: 0.42rem;
    border-bottom: 1px solid rgba(194, 159, 108, 0.14);
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0.9rem;
  }

  .footer-links {
    gap: 0.22rem;
  }

  .footer-heading {
    margin-bottom: 0.14rem;
  }

  .footer p,
  .footer a {
    font-size: 0.76rem;
  }

  .page-about .page-hero-grid {
    gap: 0.5rem;
  }

  .page-about .page-hero {
    padding-bottom: 0.72rem;
  }

  .page-about main > .section:first-of-type {
    padding-top: 0.72rem;
  }

  .page-about .note-list {
    margin-top: 0.82rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
