@font-face {
  font-family: "Meridian Utility";
  src: local("Arial");
  font-weight: 400 900;
}

:root {
  --ink: #15223d;
  --ink-deep: #0b1428;
  --blue: #2247c7;
  --blue-bright: #315be4;
  --sky: #9db8ff;
  --mist: #e7ecfa;
  --paper: #f4f5ef;
  --orange: #ff5a36;
  --lemon: #f0f48b;
  --rule: rgba(21, 34, 61, 0.22);
  --display: "Arial Black", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --utility: "Meridian Utility", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ink-deep);
  background: var(--lemon);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink-deep);
  background: var(--lemon);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4.2vw, 68px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:not(.nav-cta) {
  position: relative;
}

.site-header nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 15px;
  color: var(--ink-deep);
  background: var(--lemon);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  color: var(--blue);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 86px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 85%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 52%;
  padding: 168px 0 132px clamp(24px, 6.8vw, 110px);
}

.kicker,
.section-label,
.origin-route,
.process,
.footer-label,
.form-status,
.hero-bottom,
.atlas-label,
.plot-coordinate,
.build-id {
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  width: min(460px, 88%);
  justify-content: space-between;
  margin: 0 0 43px;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-head h2,
.philosophy h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(57px, 7.2vw, 116px);
}

.hero h1 em,
.philosophy h2 em {
  color: var(--lemon);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.09em;
  text-transform: none;
}

.hero-intro {
  max-width: 460px;
  margin: 43px 0 33px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.roast-atlas {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(-80px, 2.5vw, 40px);
  width: min(46vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.47);
  border-radius: 50%;
  transform: translateY(-47%);
}

.roast-atlas::before,
.roast-atlas::after {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.roast-atlas::before {
  inset: 12.5%;
}

.roast-atlas::after {
  inset: 34%;
  background: rgba(255, 255, 255, 0.04);
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: 6% 21%;
  transform: rotate(45deg);
}

.orbit-two {
  inset: 21% 6%;
  transform: rotate(-45deg);
}

.atlas-axis {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.24);
}

.axis-horizontal {
  top: 50%;
  left: -7%;
  width: 114%;
  height: 1px;
}

.axis-vertical {
  top: -7%;
  left: 50%;
  width: 1px;
  height: 114%;
}

.atlas-bean {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 27%;
  filter: drop-shadow(0 28px 22px rgba(7, 19, 69, 0.35));
  transform: translate(-50%, -50%) rotate(24deg);
}

.bean-shell {
  fill: var(--sky);
  stroke: #fff;
  stroke-width: 2;
}

.bean-seam,
.bean-glint {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
}

.bean-seam {
  stroke-width: 9;
}

.bean-glint {
  opacity: 0.7;
  stroke: #fff;
  stroke-width: 4;
}

.atlas-label {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

.label-top {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.label-right {
  top: 50%;
  right: -2%;
  transform: rotate(90deg) translate(50%, -50%);
  transform-origin: right top;
}

.label-bottom {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.label-left {
  top: 50%;
  left: -2%;
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: left top;
}

.atlas-dot {
  position: absolute;
  z-index: 5;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 0 4px rgba(240, 244, 139, 0.25);
}

.dot-one {
  top: 26%;
  left: 19%;
}

.dot-two {
  right: 10%;
  bottom: 29%;
}

.atlas-stamp {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 4%;
  display: grid;
  width: 64px;
  height: 64px;
  place-content: center;
  color: var(--ink-deep);
  background: var(--lemon);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.atlas-stamp strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 61px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4.2vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.hero-bottom > span:nth-child(2) {
  text-align: center;
}

.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.scroll-cue i {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.route-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 11px 0 9px;
  color: var(--ink-deep);
  background: var(--lemon);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-1.35deg) scale(1.02);
}

.route-strip-track {
  display: flex;
  width: max-content;
  animation: route 25s linear infinite;
}

.route-strip span {
  word-spacing: 0.25em;
}

.route-strip i {
  margin: 0 0.45em;
  color: var(--orange);
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
}

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

.origins {
  position: relative;
  padding: clamp(110px, 12vw, 185px) clamp(22px, 4.2vw, 68px) clamp(110px, 11vw, 170px);
  overflow: hidden;
  background: var(--mist);
}

.origins::before {
  position: absolute;
  top: 0;
  left: 6.5%;
  width: 1px;
  height: 100%;
  background: var(--rule);
  content: "";
}

.section-head {
  position: relative;
  display: grid;
  max-width: 1280px;
  margin: 0 auto 75px;
  grid-template-columns: 1fr 1.65fr 1fr;
  align-items: end;
  gap: 5vw;
}

.section-label {
  margin: 0;
  color: var(--blue);
}

.section-head h2 {
  color: var(--ink-deep);
  font-size: clamp(54px, 6.2vw, 96px);
}

.section-deck {
  max-width: 290px;
  margin: 0;
  padding-bottom: 7px;
  font-size: 15px;
  line-height: 1.6;
}

.coffee-grid {
  position: relative;
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.1vw, 32px);
}

.coffee-grid::before {
  position: absolute;
  z-index: 0;
  top: 22%;
  right: -10vw;
  left: -10vw;
  height: 1px;
  background: var(--rule);
  content: "";
}

.coffee-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(21, 34, 61, 0.35);
  background: var(--paper);
}

.coffee-card:nth-child(2) {
  transform: translateY(54px);
}

.coffee-visual {
  position: relative;
  aspect-ratio: 1.12;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 34, 61, 0.35);
}

.coffee-card--guji .coffee-visual {
  background: var(--orange);
}

.coffee-card--huila .coffee-visual {
  background: var(--sky);
}

.coffee-card--kerinci .coffee-visual {
  background: var(--lemon);
}

.contour-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink-deep);
  stroke-width: 1.5;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}

.coffee-card:hover .contour-art {
  transform: scale(1.06) rotate(-1deg);
}

.coffee-card--huila .contour-art {
  stroke-width: 1.25;
}

.coffee-card--kerinci .contour-art {
  stroke-width: 1.35;
}

.plot-coordinate {
  position: absolute;
  top: 17px;
  left: 18px;
  padding: 5px 7px 4px;
  color: var(--paper);
  background: var(--ink-deep);
}

.plot-mark {
  position: absolute;
  right: 18px;
  bottom: -0.18em;
  color: rgba(244, 245, 239, 0.86);
  font-family: var(--display);
  font-size: clamp(100px, 12vw, 184px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.coffee-card--huila .plot-mark,
.coffee-card--kerinci .plot-mark {
  color: rgba(21, 34, 61, 0.16);
}

.origin-sun {
  position: absolute;
  top: 23%;
  right: 23%;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 0 9px rgba(240, 244, 139, 0.26);
}

.coffee-card--huila .origin-sun {
  top: 47%;
  right: 46%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(255, 90, 54, 0.2);
}

.coffee-card--kerinci .origin-sun {
  top: 14%;
  right: 43%;
  background: var(--sky);
  box-shadow: 0 0 0 9px rgba(34, 71, 199, 0.12);
}

.coffee-info {
  padding: 24px 24px 19px;
}

.origin-route {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  color: var(--blue);
}

.coffee-info h3 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.process {
  min-height: 2.7em;
  margin: 10px 0 32px;
  color: rgba(21, 34, 61, 0.64);
  font-size: 9px;
}

.tasting-notes {
  margin: 0 0 31px;
  border-top: 1px solid var(--rule);
}

.tasting-notes div {
  display: grid;
  min-height: 34px;
  grid-template-columns: 41% 59%;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.tasting-notes dt {
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tasting-notes dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-foot a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 11px;
  color: var(--paper);
  background: var(--ink-deep);
  text-decoration: none;
  transition: background 180ms ease;
}

.card-foot a:hover {
  background: var(--blue);
}

.philosophy {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--orange);
}

.philosophy::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(21, 34, 61, 0.32);
  content: "";
}

.philosophy-marker {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
}

.philosophy-marker::before,
.philosophy-marker::after {
  position: absolute;
  background: rgba(21, 34, 61, 0.25);
  content: "";
}

.philosophy-marker::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.philosophy-marker::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.philosophy-marker svg {
  position: relative;
  z-index: 2;
  width: min(53%, 340px);
  fill: none;
  stroke: var(--ink-deep);
  stroke-width: 1.25;
  animation: compass 55s linear infinite;
}

@keyframes compass {
  to { transform: rotate(360deg); }
}

.philosophy-marker span {
  position: absolute;
  z-index: 3;
  top: 15%;
  left: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-content: center;
  color: var(--ink-deep);
  background: var(--lemon);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 900;
  transform: translateX(-50%);
}

.philosophy-copy {
  position: relative;
  z-index: 2;
  padding: 90px clamp(30px, 7vw, 110px);
}

.philosophy .section-label {
  margin-bottom: 42px;
  color: var(--ink-deep);
}

.philosophy h2 {
  font-size: clamp(58px, 6vw, 92px);
}

.philosophy h2 em {
  color: var(--ink-deep);
}

.philosophy-lead {
  max-width: 520px;
  margin: 48px 0 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 31px);
  font-style: italic;
  line-height: 1.25;
}

.principles {
  max-width: 500px;
  border-top: 1px solid rgba(21, 34, 61, 0.36);
  counter-reset: principles;
}

.principles p {
  display: grid;
  margin: 0;
  padding: 13px 0;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid rgba(21, 34, 61, 0.36);
  font-size: 13px;
  line-height: 1.5;
  counter-increment: principles;
}

.principles p::before {
  color: var(--ink-deep);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  content: "0" counter(principles);
}

.margin-note {
  position: absolute;
  z-index: 3;
  right: -48px;
  bottom: 135px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px clamp(22px, 4.2vw, 68px) 25px;
  color: var(--paper);
  background: var(--ink-deep);
}

.footer-orbit {
  position: absolute;
  right: -21vw;
  bottom: -38vw;
  width: 65vw;
  aspect-ratio: 1;
  border: 1px solid rgba(157, 184, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(0,0,0,0),
    0 0 0 calc(9vw + 1px) rgba(157, 184, 255, 0.11),
    0 0 0 18vw rgba(0,0,0,0),
    0 0 0 calc(18vw + 1px) rgba(157, 184, 255, 0.08);
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6vw;
}

.wordmark--footer {
  color: var(--sky);
}

.footer-tagline {
  margin: 24px 0 0;
  color: rgba(244, 245, 239, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.3;
}

.footer-label {
  margin: 0 0 17px;
  color: var(--sky);
}

.footer-contact address,
.footer-contact > a,
.footer-contact > p:not(.footer-label) {
  display: block;
  margin: 0 0 5px;
  color: rgba(244, 245, 239, 0.76);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  text-decoration: none;
}

.footer-contact > a:hover {
  color: var(--lemon);
}

.newsletter {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 100px 0 90px;
  padding: 52px 0 9px;
  grid-template-columns: 1fr 1.2fr;
  align-items: end;
  gap: 9vw;
  border-top: 1px solid rgba(244, 245, 239, 0.24);
}

.newsletter .section-label {
  margin-bottom: 28px;
  color: var(--sky);
}

.newsletter h2 {
  font-size: clamp(56px, 7vw, 100px);
}

.signup-form label {
  display: block;
  margin-bottom: 15px;
  color: var(--sky);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--paper);
}

.input-row input {
  min-width: 0;
  padding: 20px 0;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 29px);
  font-style: italic;
}

.input-row input::placeholder {
  color: rgba(244, 245, 239, 0.34);
}

.input-row input:focus-visible {
  outline: 0;
}

.input-row:focus-within {
  border-bottom-color: var(--lemon);
}

.input-row button {
  align-self: center;
  padding: 15px 17px;
  border: 0;
  color: var(--ink-deep);
  background: var(--lemon);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: rgba(244, 245, 239, 0.5);
  font-size: 8px;
}

.form-status.is-error {
  color: #ff866d;
}

.form-status.is-success {
  color: var(--lemon);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 245, 239, 0.17);
  color: rgba(244, 245, 239, 0.45);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.social-links a {
  color: inherit;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--paper);
}

.build-id {
  justify-self: end;
  font-size: inherit;
}

.build-id span {
  color: var(--sky);
}

@media (max-width: 980px) {
  .hero {
    min-height: 980px;
  }

  .hero::before {
    left: 58%;
  }

  .hero-copy {
    width: 65%;
    padding-top: 155px;
  }

  .roast-atlas {
    top: 59%;
    right: -22%;
    width: 68vw;
  }

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

  .hero-bottom > span:nth-child(2) {
    text-align: right;
  }

  .scroll-cue {
    display: none;
  }

  .section-head {
    grid-template-columns: 0.7fr 1.8fr;
  }

  .section-deck {
    display: none;
  }

  .coffee-grid {
    gap: 13px;
  }

  .coffee-info {
    padding: 19px 16px 16px;
  }

  .card-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .card-foot a {
    width: 100%;
    justify-content: space-between;
  }

  .philosophy-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .newsletter {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5vw;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .site-header nav {
    gap: 0;
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .wordmark {
    font-size: 16px;
  }

  .wordmark svg {
    width: 25px;
    height: 25px;
  }

  .nav-cta {
    gap: 13px;
    padding: 10px 11px;
    font-size: 9px;
  }

  .hero {
    min-height: 900px;
  }

  .hero::before {
    top: 68px;
    left: 50%;
  }

  .hero-grid {
    background-size: 56px 56px;
  }

  .hero-copy {
    width: 100%;
    padding: 119px 20px 0;
  }

  .kicker {
    width: 100%;
    margin-bottom: 26px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(51px, 16.6vw, 65px);
    line-height: 0.89;
  }

  .hero-intro {
    width: 91%;
    margin: 25px 0 21px;
    font-size: 15px;
  }

  .text-link {
    gap: 21px;
    font-size: 9px;
  }

  .roast-atlas {
    top: auto;
    right: -13vw;
    bottom: 75px;
    width: 86vw;
    transform: none;
  }

  .atlas-label {
    font-size: 7px;
  }

  .label-left,
  .label-right {
    display: none;
  }

  .atlas-stamp {
    right: 2%;
    width: 50px;
    height: 50px;
  }

  .hero-bottom {
    min-height: 50px;
    grid-template-columns: 1fr;
    padding: 0 20px;
    font-size: 8px;
  }

  .hero-bottom > span:nth-child(2) {
    display: none;
  }

  .route-strip {
    font-size: 17px;
  }

  .origins {
    padding: 95px 18px 108px;
  }

  .origins::before {
    left: 49px;
  }

  .section-head {
    display: block;
    margin-bottom: 47px;
    padding-left: 32px;
  }

  .section-head .section-label {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 54px;
  }

  .coffee-grid {
    display: block;
    padding-left: 31px;
  }

  .coffee-grid::before {
    display: none;
  }

  .coffee-card + .coffee-card {
    margin-top: 24px;
  }

  .coffee-card:nth-child(2) {
    transform: none;
  }

  .coffee-visual {
    aspect-ratio: 1.22;
  }

  .plot-mark {
    font-size: 150px;
  }

  .coffee-info {
    padding: 22px 20px 18px;
  }

  .coffee-info h3 {
    font-size: 38px;
  }

  .process {
    min-height: 0;
    margin-bottom: 25px;
  }

  .card-foot {
    flex-direction: row;
    align-items: center;
  }

  .card-foot a {
    width: auto;
    gap: 18px;
  }

  .philosophy {
    display: block;
    min-height: 0;
  }

  .philosophy::after {
    display: none;
  }

  .philosophy-marker {
    min-height: 370px;
    border-bottom: 1px solid rgba(21, 34, 61, 0.32);
  }

  .philosophy-marker svg {
    width: 54%;
  }

  .philosophy-marker span {
    top: 9%;
  }

  .philosophy-copy {
    padding: 74px 22px 84px 50px;
  }

  .philosophy .section-label {
    margin-bottom: 32px;
  }

  .philosophy h2 {
    font-size: 58px;
  }

  .philosophy-lead {
    margin: 34px 0 31px;
    font-size: 23px;
  }

  .margin-note {
    display: none;
  }

  .site-footer {
    padding: 67px 20px 22px;
  }

  .footer-orbit {
    right: -60vw;
    bottom: -20vw;
    width: 130vw;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 22px;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-contact address,
  .footer-contact > a,
  .footer-contact > p:not(.footer-label) {
    font-size: 11px;
  }

  .newsletter {
    display: block;
    margin: 78px 0 70px;
    padding-top: 42px;
  }

  .newsletter h2 {
    margin-bottom: 50px;
    font-size: 59px;
  }

  .input-row {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .input-row input {
    padding: 15px 0;
    border-bottom: 2px solid var(--paper);
    font-size: 23px;
  }

  .input-row input:focus {
    border-bottom-color: var(--lemon);
  }

  .input-row button {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    row-gap: 15px;
  }

  .social-links {
    justify-content: flex-end;
  }

  .build-id {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

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