@font-face {
  font-family: "FG Fraunces";
  src: url("../assets/fonts/Fraunces-VF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f4efe4;
  --paper-raised: #fffaf0;
  --ink: #182019;
  --ink-soft: #4f554d;
  --line: #182019;
  --yellow: #f3db14;
  --yellow-ink: #191b12;
  --cyan: #55c6cf;
  --pink: #cc1d62;
  --coral: #ef6b46;
  --navy: #202650;
  --moss: #667d41;
  --focus: #006c9f;
  --shadow: 0 18px 36px rgb(36 29 15 / 16%);
  --max: 1440px;
  --gutter: clamp(1rem, 4vw, 4.5rem);
  --display: "FG Fraunces", serif;
  --body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #101711;
  --paper-raised: #19221a;
  --ink: #f4f0e4;
  --ink-soft: #bec6b8;
  --line: #f4f0e4;
  --yellow: #ffe32d;
  --yellow-ink: #161912;
  --cyan: #6cd6de;
  --pink: #ff5e98;
  --coral: #ff7c54;
  --navy: #252f64;
  --moss: #8eaa5b;
  --focus: #76dcff;
  --shadow: 0 18px 38px rgb(0 0 0 / 38%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--pink) var(--paper);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--pink);
  color: #fff;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  flex: 0 0 auto;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  translate: 0 -180%;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  border-bottom: 2px solid var(--line);
  background: var(--yellow);
  color: var(--yellow-ink);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ticker__viewport { min-width: 0; overflow: hidden; }

.ticker__control {
  min-width: 126px;
  min-height: 2.25rem;
  padding: 0 13px;
  border: 0;
  border-right: 2px solid var(--line);
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticker__control svg { display: inline-block; width: 15px; height: 15px; margin-right: 7px; fill: none; stroke: currentColor; stroke-width: 1.7; vertical-align: middle; }
.ticker__control .ticker__play { display: none; }
.ticker__control[aria-pressed="true"] .ticker__pause { display: none; }
.ticker__control[aria-pressed="true"] .ticker__play { display: inline-block; }
.ticker__control b { font: inherit; }

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker__track.is-paused { animation-play-state: paused; }

.ticker__run {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  white-space: nowrap;
}

.ticker__run span {
  padding: 0 1.1rem;
}

.ticker__run i {
  width: .55rem;
  height: .55rem;
  background: var(--pink);
  rotate: 45deg;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.25rem);
  max-width: var(--max);
  min-height: 6.25rem;
  margin: 0 auto;
  padding: .9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
}

.brand__mark {
  width: 1.65rem;
  height: 2.6rem;
  color: var(--pink);
}

.brand__word {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  letter-spacing: -.035em;
  line-height: 1;
}

.brand__word b {
  font-weight: 700;
}

.brand__word em {
  color: var(--pink);
  font-weight: 400;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(.9rem, 2vw, 1.9rem);
}

.primary-nav a,
.direction-link {
  position: relative;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav__directions {
  display: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: .18rem;
  background: var(--pink);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  scale: 1;
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.direction-link {
  color: var(--ink-soft);
  text-decoration: underline;
}

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.theme-toggle {
  min-width: 5.75rem;
  border-radius: 999px;
  padding: .5rem .85rem;
}

.theme-toggle:hover,
.menu-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

.theme-toggle svg,
.menu-toggle svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-toggle__moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle__moon {
  display: block;
}

.menu-toggle {
  display: none;
  padding: .55rem .75rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr);
  max-width: var(--max);
  min-height: min(760px, calc(100vh - 8.5rem));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 7rem) var(--gutter) 2.5rem;
}

.hero__directions {
  display: none;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  margin-bottom: 1.2rem;
  color: var(--pink);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero__directions svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.035em;
}

h1 {
  max-width: 10.8ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.55rem, 7.4vw, 6rem);
  line-height: .9;
  text-wrap: balance;
}

h1 span {
  position: relative;
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

h1 span::after {
  position: absolute;
  right: 0;
  bottom: -.1em;
  left: .05em;
  height: .11em;
  background: var(--yellow);
  content: "";
  z-index: -1;
  rotate: -1deg;
}

.hero__lede {
  max-width: 62ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 3.2rem;
  padding: .8rem 1.1rem;
  border: 1px solid transparent;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.button svg,
.text-link svg,
.material svg,
.fly-note svg,
.service-row > svg,
.footer__close svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.button--pink {
  background: var(--pink);
  color: #fff;
}

html[data-theme="dark"] .button--pink {
  color: #101711;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 900;
  text-decoration-color: var(--pink);
}

.text-link:hover svg,
.fly-note a:hover svg,
.footer__close a:hover svg {
  translate: .3rem 0;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: auto 0 0;
  padding-top: 3.5rem;
}

.hero__proof div {
  padding: 0 clamp(.7rem, 2vw, 1.3rem);
  border-left: 1px solid var(--line);
}

.hero__proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__proof dt,
.hero__proof span {
  display: block;
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__proof dd {
  margin: .12rem 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.specimen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--cyan);
  color: #152125;
}

.specimen::before,
.specimen::after {
  position: absolute;
  content: "";
}

.specimen::before {
  width: 14rem;
  height: 14rem;
  top: -5.5rem;
  right: -4rem;
  border: 1px solid #152125;
  border-radius: 50%;
}

.specimen::after {
  width: 18rem;
  height: 1px;
  right: -5rem;
  bottom: 8rem;
  background: #152125;
  rotate: -23deg;
}

.specimen__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 37rem);
  margin: 0 auto;
  padding: clamp(.75rem, 1.6vw, 1.2rem);
  background: #fffaf0;
  box-shadow: var(--shadow);
  rotate: 1.25deg;
  transition: rotate 280ms ease;
}

.specimen__frame.is-changing {
  rotate: -1deg;
}

.specimen__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e3ddcf;
  transition: opacity 140ms ease, filter 180ms ease;
}

.specimen__frame.is-changing .specimen__image {
  opacity: .45;
  filter: saturate(.7);
}

.specimen__label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1rem;
  align-items: end;
  padding: 1rem .2rem .15rem;
  color: #182019;
}

.specimen__label span {
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.specimen__label strong {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1;
}

.specimen__pin {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid #182019;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 3px 6px rgb(0 0 0 / 25%);
}

.specimen__pin--one {
  top: .55rem;
  left: .55rem;
}

.specimen__pin--two {
  top: .55rem;
  right: .55rem;
  background: var(--yellow);
}

.swatches {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 31rem);
  margin: -1.2rem auto 0;
}

.swatch {
  position: relative;
  min-height: 4.25rem;
  padding: 1.3rem .5rem .5rem;
  border: 1px solid #152125;
  border-left: 0;
  color: #111;
  cursor: pointer;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.swatch:first-child {
  border-left: 1px solid #152125;
}

.swatch::before {
  position: absolute;
  top: .55rem;
  left: 50%;
  width: 1.7rem;
  height: .22rem;
  background: #111;
  content: "";
  translate: -50% 0;
  scale: 0 1;
  transition: scale 160ms ease;
}

.swatch:hover,
.swatch.is-active {
  transform: translateY(-.45rem);
}

.swatch.is-active::before {
  scale: 1;
}

.swatch--yellow { background: #f5dd12; }
.swatch--cyan { background: #b9eef4; }
.swatch--navy { background: #252858; color: #fff; }
.swatch--navy::before { background: #fff; }

.specimen__note {
  position: relative;
  z-index: 1;
  margin: .85rem auto 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.material-index {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, .75fr);
  gap: 1.5rem 4rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.fly-bench__intro h2,
.river__copy h2,
.services__heading h2,
.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: .94;
  text-wrap: balance;
}

.section-heading p {
  max-width: 50ch;
  margin-bottom: .9rem;
  color: var(--ink-soft);
}

.section-heading .text-link {
  grid-column: 2;
}

.material-shelf {
  display: grid;
  grid-template-columns: 1.45fr .72fr .95fr;
  grid-template-rows: repeat(2, minmax(18rem, auto));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.material {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--ink);
  isolation: isolate;
  text-decoration: none;
}

.material img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(.98);
  transition: scale 450ms cubic-bezier(.2,.8,.2,1), filter 250ms ease;
}

.material::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62%;
  background: rgb(11 15 14 / 74%);
  content: "";
}

.material:hover img {
  scale: 1.045;
  filter: saturate(1.12) contrast(1.03);
}

.material__code {
  width: fit-content;
  margin-bottom: .55rem;
  padding: .23rem .45rem;
  background: var(--yellow);
  color: var(--yellow-ink);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.material strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1;
}

.material small {
  max-width: 38ch;
  margin-top: .55rem;
  color: #f4f0e4;
  font-size: .85rem;
}

.material > svg {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  transition: translate 180ms ease;
}

.material:hover > svg {
  translate: .35rem 0;
}

.material--loose {
  grid-row: 1 / 3;
}

.material--strung {
  grid-column: 2;
}

.material--banded {
  grid-column: 3;
}

.material--quill {
  grid-column: 2;
  grid-row: 2;
}

.material--all {
  grid-column: 3;
  grid-row: 2;
  align-items: flex-start;
  justify-content: center;
  background: var(--pink);
  color: #fff;
}

.material--all::after {
  display: none;
}

.material--all .material__code {
  background: var(--ink);
  color: var(--paper);
}

.material--all strong {
  max-width: 8ch;
}

.material--all small {
  margin-bottom: 1.4rem;
}

.material--all .button {
  position: relative;
  z-index: 2;
}

html[data-theme="dark"] .material--all,
html[data-theme="dark"] .material--all strong,
html[data-theme="dark"] .material--all small {
  color: #101711;
}

.material__burst {
  position: absolute;
  z-index: -1;
  top: -2.5rem;
  right: -3.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  rotate: 9deg;
}

.material__burst img {
  position: absolute;
  inset: 0;
  opacity: .38;
}

.material__burst img:last-child {
  clip-path: inset(50% 0 0);
  rotate: 180deg;
}

.fly-bench {
  display: grid;
  grid-template-columns: minmax(20rem, .7fr) minmax(0, 1.3fr);
  max-width: var(--max);
  margin: 0 auto;
  color: #f5f0e7;
  background: #202650;
}

.fly-bench__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  border-right: 1px solid rgb(255 255 255 / 54%);
}

.fly-bench__intro h2 {
  margin-bottom: 1.5rem;
}

.fly-bench__intro p {
  max-width: 48ch;
  margin-bottom: 2rem;
  color: #d9ddf5;
}

.fly-cabinet {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  padding: clamp(2rem, 5vw, 4.5rem);
  gap: .75rem;
}

.fly-drawer {
  position: relative;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 8rem;
  overflow: hidden;
  border: 1px solid #f5f0e7;
  color: #f5f0e7;
  text-decoration: none;
}

.fly-drawer img {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  object-fit: cover;
  border-right: 1px solid #f5f0e7;
  filter: saturate(.8);
  transition: filter 200ms ease, scale 320ms ease;
}

.fly-drawer span,
.fly-drawer strong {
  padding-right: 1rem;
  padding-left: 1rem;
}

.fly-drawer span {
  align-self: end;
  color: #cfd4ed;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fly-drawer strong {
  align-self: start;
  font-family: var(--display);
  font-size: 1.55rem;
}

.fly-drawer:hover img {
  filter: saturate(1.15);
  scale: 1.04;
}

.fly-drawer--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(12rem, 1.2fr) 1fr;
  min-height: 12rem;
}

.fly-drawer--pink {
  background: #a82059;
}

.fly-drawer--coral {
  background: #a9472e;
}

.fly-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  border-top: 1px solid rgb(255 255 255 / 54%);
  background: var(--cyan);
  color: #102023;
}

.fly-note p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
}

.fly-note a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.river {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(21rem, .9fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  gap: clamp(3rem, 7vw, 7rem);
}

.river__images {
  position: relative;
  min-height: 43rem;
}

.river figure {
  margin: 0;
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.river figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.river figcaption {
  padding: .65rem .8rem;
  border-top: 1px solid var(--line);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.river__primary {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 4rem;
  left: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  rotate: -1.5deg;
}

.river__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: 13rem auto;
  width: 53%;
  rotate: 3deg;
}

.river__copy {
  align-self: center;
}

.river__copy h2 {
  margin-bottom: 1.5rem;
}

.river__lead {
  max-width: 42ch;
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
}

.river__copy > p:not(.river__lead) {
  max-width: 60ch;
  color: var(--ink-soft);
}

.river__facts {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.river__facts li {
  display: grid;
  grid-template-columns: minmax(7rem, .7fr) 1.3fr;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}

.river__facts strong {
  font-family: var(--display);
  font-size: 1.1rem;
}

.river__facts span {
  color: var(--ink-soft);
  font-size: .84rem;
}

.services {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  border-top: 1px solid var(--line);
}

.services__heading {
  display: grid;
  grid-template-columns: 1fr 25rem;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.services__heading h2 {
  max-width: 11ch;
}

.services__heading p {
  margin: 0;
  color: var(--ink-soft);
}

.service-ledger {
  border-top: 2px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 6rem 1fr 11rem 2rem;
  gap: 1.5rem;
  align-items: center;
  min-height: 9.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-row__stamp {
  width: 4.5rem;
  padding: .42rem .2rem;
  border: 1px solid var(--line);
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  rotate: -4deg;
}

.service-row__copy {
  display: grid;
  gap: .35rem;
}

.service-row__copy strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.service-row__copy small {
  max-width: 55ch;
  color: var(--ink-soft);
  font-size: .87rem;
}

.service-row img,
.service-row__colour {
  width: 100%;
  height: 7rem;
  object-fit: cover;
  filter: saturate(.75);
  transition: filter 220ms ease, scale 220ms ease;
}

.service-row__colour {
  display: block;
  background: var(--yellow);
}

.service-row > svg {
  transition: translate 180ms ease;
}

.service-row:hover img {
  filter: saturate(1.05);
  scale: 1.025;
}

.service-row:hover > svg {
  translate: .35rem 0;
}

.newsletter {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: calc(var(--max) - 2 * var(--gutter));
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 2px solid var(--line);
  background: var(--yellow);
  color: var(--yellow-ink);
}

.newsletter__seal svg {
  width: 7rem;
  fill: var(--pink);
  stroke: var(--yellow-ink);
  stroke-width: 1.2;
}

.newsletter__seal svg path:last-child {
  fill: var(--yellow);
}

.newsletter h2 {
  max-width: 13ch;
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.newsletter p {
  max-width: 63ch;
  margin: 0;
}

.newsletter .button {
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: #171f19;
  color: #f4f0e4;
}

.brand--footer .brand__word {
  color: #f4f0e4;
}

.footer__brand p {
  max-width: 24ch;
  margin: 1rem 0 0;
  color: #bdc6bb;
  font-size: .82rem;
}

.footer__brand p + p {
  margin-top: .2rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.footer__nav h3 {
  margin: 0 0 .45rem;
  color: var(--yellow);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__close a,
.footer__legal a {
  color: #f4f0e4;
}

.footer__nav a {
  font-size: .87rem;
}

.footer__close {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 2rem;
  border-left: 1px solid #778278;
}

.footer__close span {
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.05;
}

.footer__close a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #778278;
  color: #aeb8ad;
  font-size: .7rem;
}

.footer__legal p {
  margin: 0;
}

.footer__legal div {
  display: flex;
  gap: 1rem;
}

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .7rem;
    border: 1px solid var(--line);
    background: var(--paper-raised);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: .85rem;
    border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 68%);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav__directions {
    display: block;
    color: var(--pink);
  }

  .primary-nav a::after {
    display: none;
  }

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

  .direction-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .86fr);
  }

  .hero__proof {
    padding-top: 2.5rem;
  }

  .hero__proof span {
    display: none;
  }

  .material-shelf {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(3, minmax(17rem, auto));
  }

  .material--loose {
    grid-row: 1 / 3;
  }

  .material--strung { grid-column: 2; grid-row: 1; }
  .material--banded { grid-column: 2; grid-row: 2; }
  .material--quill { grid-column: 1; grid-row: 3; }
  .material--all { grid-column: 2; grid-row: 3; }

  .fly-bench {
    grid-template-columns: 1fr;
  }

  .fly-bench__intro {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 54%);
  }

  .newsletter {
    grid-template-columns: 6rem 1fr;
  }

  .newsletter__seal svg {
    width: 6rem;
  }

  .newsletter .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer__close {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 0 0;
    border-top: 1px solid #778278;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1rem;
  }

  .ticker {
    grid-template-columns: 42px minmax(0, 1fr);
    font-size: .65rem;
  }

  .ticker__control { min-width: 42px; width: 42px; padding: 0; }
  .ticker__control svg { margin: 0; }
  .ticker__control b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 4.9rem;
  }

  .brand__mark {
    width: 1.35rem;
    height: 2.1rem;
  }

  .brand__word {
    font-size: 1.55rem;
  }

  .menu-toggle span,
  .theme-toggle__text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-toggle,
  .theme-toggle {
    min-width: 2.75rem;
    width: 2.75rem;
    padding: .5rem;
  }

  .header-actions {
    gap: 0;
  }

  .primary-nav {
    position: fixed;
    top: 7.15rem;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: none;
  }

  .primary-nav a {
    padding: 1.1rem .5rem;
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .hero__copy {
    min-height: 39rem;
    padding: 4.25rem var(--gutter) 2.5rem;
  }

  .hero__directions {
    display: inline-flex;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 17vw, 5.4rem);
  }

  .hero__lede {
    font-size: 1rem;
  }

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

  .hero__proof {
    margin-top: 3.2rem;
    padding-top: 0;
  }

  .hero__proof dt {
    font-size: .58rem;
  }

  .hero__proof dd {
    font-size: 1.65rem;
  }

  .specimen {
    min-height: 35rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specimen__frame {
    rotate: .5deg;
  }

  .material-index {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-heading,
  .services__heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading h2,
  .fly-bench__intro h2,
  .river__copy h2,
  .services__heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .section-heading .text-link {
    grid-column: 1;
  }

  .material-shelf {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .material,
  .material--loose,
  .material--strung,
  .material--banded,
  .material--quill,
  .material--all {
    grid-column: 1;
    grid-row: auto;
    min-height: 20rem;
  }

  .material--loose {
    min-height: 30rem;
  }

  .material--all {
    min-height: 24rem;
  }

  .fly-bench__intro {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .fly-cabinet {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .fly-drawer,
  .fly-drawer--wide {
    grid-column: 1;
    grid-template-columns: 7.2rem 1fr;
    min-height: 8.5rem;
  }

  .fly-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .river {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
    gap: 4rem;
  }

  .river__images {
    min-height: 32rem;
  }

  .river__primary {
    right: 2rem;
    bottom: 3rem;
  }

  .river__secondary {
    grid-template-rows: 9rem auto;
    width: 58%;
  }

  .services__heading {
    margin-bottom: 2.5rem;
  }

  .service-row {
    grid-template-columns: 4.5rem 1fr 1.5rem;
    gap: .75rem;
    min-height: 8rem;
  }

  .service-row__stamp {
    width: 3.8rem;
    font-size: .95rem;
  }

  .service-row img,
  .service-row__colour {
    display: none;
  }

  .newsletter {
    grid-template-columns: 1fr;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .newsletter__seal svg {
    width: 4.75rem;
  }

  .newsletter .button {
    grid-column: 1;
    justify-self: stretch;
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .footer__brand,
  .footer__close,
  .footer__legal {
    grid-column: 1 / -1;
  }

  .footer__legal {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: .35rem;
  }

  .brand__word {
    font-size: 1.35rem;
  }

  .hero__proof div {
    padding: 0 .45rem;
  }

  .hero__proof dt {
    min-height: 2.2em;
  }

  .specimen {
    min-height: 31rem;
  }

  .swatch {
    min-height: 4.6rem;
  }

  .fly-drawer,
  .fly-drawer--wide {
    grid-template-columns: 6.4rem 1fr;
  }

  .fly-drawer strong {
    font-size: 1.32rem;
  }

  .river__images {
    min-height: 27rem;
  }

  .river__secondary {
    grid-template-rows: 7.5rem auto;
  }

  .service-row__copy small {
    font-size: .78rem;
  }

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

  .footer__nav {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .ticker__track {
    animation: none;
  }
}
