:root {
  --ink: #15120f;
  --coffee: #2d251f;
  --cocoa: #65564c;
  --stone: #a38b76;
  --oat: #d9c8b8;
  --cream: #f7f3ec;
  --paper: #ffffff;
  --rule: rgba(21, 18, 15, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 104px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--stone) var(--paper);
}

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

body.cursor-active,
body.cursor-active a,
body.cursor-active button,
body.cursor-active input,
body.cursor-active select,
body.cursor-active textarea {
  cursor: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: background 0.4s ease;
}

.page-progress.is-dark span {
  background: var(--coffee);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--cocoa);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(101, 86, 76, 0.72);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
    border-color 0.35s ease, background 0.35s ease, opacity 0.2s ease;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

.cursor-ring.is-hovering {
  width: 44px;
  height: 44px;
  border-color: rgba(101, 86, 76, 0.45);
  background: rgba(217, 200, 184, 0.13);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 4.3vw, 82px);
  color: var(--cream);
  transition: height 0.45s var(--ease-out), color 0.45s ease, background 0.45s ease,
    box-shadow 0.45s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(21, 18, 15, 0.08);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity 0.45s ease;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand-link {
  display: block;
  width: clamp(74px, 5.2vw, 100px);
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
  filter: invert(1) brightness(2);
  transition: filter 0.45s ease, transform 0.5s var(--ease-out);
}

.brand-link:hover img,
.brand-link:focus-visible img {
  transform: translateY(-2px);
}

.site-header.is-scrolled .brand-link img,
.footer-brand img {
  filter: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 2.5vw, 48px);
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.nav-link::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s var(--ease-out);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: var(--coffee);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.035);
  animation: heroSettle 1.7s var(--ease-out) 0.1s forwards;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.025);
  transition: transform 1.1s var(--ease-out), filter 0.8s ease;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(25, 19, 15, 0.52) 0%, rgba(25, 19, 15, 0.26) 36%, rgba(25, 19, 15, 0) 69%),
    linear-gradient(0deg, rgba(24, 18, 14, 0.35) 0%, rgba(24, 18, 14, 0) 55%),
    radial-gradient(circle 340px at var(--light-x, 23%) var(--light-y, 64%), rgba(255, 238, 211, 0.11), transparent 66%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: clamp(24px, 4.3vw, 82px);
  bottom: clamp(48px, 7.2vh, 86px);
  z-index: 2;
  width: min(1100px, 75vw);
  transform: translate3d(var(--title-x, 0), var(--title-y, 0), 0);
  transition: transform 1.2s var(--ease-out);
}

.hero h1,
.copy-block h2,
.beans h2,
.about h2,
.subscription h2,
.subscription h3,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(4.5rem, 8.1vw, 9.2rem);
  line-height: 0.84;
}

.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.line-mask > span {
  display: block;
  white-space: nowrap;
  transform: translateY(115%);
  animation: lineRise 0.98s var(--ease-out) forwards;
}

.line-mask:nth-child(2) > span {
  animation-delay: 0.14s;
}

.hero-intro {
  margin: clamp(24px, 3vh, 38px) 0 0;
  color: rgba(247, 243, 236, 0.92);
  font-size: clamp(0.86rem, 1vw, 1.04rem);
  line-height: 1.38;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s var(--ease-out) 0.72s forwards;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4.3vw, 82px);
  bottom: clamp(48px, 6.8vh, 82px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 243, 236, 0.45);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transform: translateX(-100%);
  animation: scrollLine 2.4s var(--ease-out) 1s infinite;
}

.section-pad {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: clamp(100px, 11vw, 210px) clamp(24px, 4.3vw, 82px);
}

#beans,
#craft,
#about,
#subscribe {
  scroll-margin-top: 78px;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.8fr);
  gap: clamp(56px, 10vw, 190px);
  align-items: center;
}

.introduction {
  padding-top: clamp(120px, 14vw, 260px);
  padding-bottom: clamp(120px, 14vw, 260px);
}

.image-frame,
.bean-visual,
.quote-band {
  position: relative;
  overflow: hidden;
  background: #d8d1cb;
}

.image-frame.portrait {
  aspect-ratio: 4 / 5;
}

.image-frame img,
.quote-band-media img,
.bean-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.055);
  transition: transform 1.1s var(--ease-out), filter 0.9s ease;
  will-change: transform;
}

.image-frame:hover img,
.quote-band:hover img,
.bean-visual:hover .bean-photo.is-active img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075);
  filter: contrast(1.025) saturate(1.035);
}

.copy-block {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cocoa);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.copy-block h2,
.beans h2,
.about h2,
.subscription h2 {
  font-size: clamp(3rem, 4.65vw, 5.5rem);
  line-height: 0.96;
}

.copy-block h2,
.about h2 {
  margin-bottom: clamp(38px, 4vw, 70px);
}

.copy-block p,
.about-copy > p:not(.eyebrow),
.subscription-lead,
.enquiry-form {
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
}

.copy-block p,
.about-copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0 0 1.45em;
}

.beans {
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 180px);
  align-items: center;
  padding-top: clamp(80px, 8vw, 155px);
  padding-bottom: clamp(100px, 12vw, 230px);
}

.beans h2 {
  margin-bottom: clamp(48px, 5vw, 84px);
}

.bean-list {
  border-bottom: 1px solid var(--rule);
}

.bean-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 26px;
  gap: 12px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  background: transparent;
  border-top: 1px solid var(--rule);
}

.bean-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-out);
}

.bean-item.is-active::after,
.bean-item:hover::after,
.bean-item:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bean-number {
  padding-top: 5px;
  color: var(--stone);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.bean-text {
  display: block;
  transition: transform 0.52s var(--ease-out);
}

.bean-item.is-active .bean-text,
.bean-item:hover .bean-text,
.bean-item:focus-visible .bean-text {
  transform: translateX(8px);
}

.bean-text strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.bean-text small {
  display: block;
  font-size: clamp(0.8rem, 0.88vw, 0.93rem);
  line-height: 1.45;
}

.bean-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: end;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
}

.bean-arrow svg,
.submit-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bean-arrow path,
.submit-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.bean-item.is-active .bean-arrow,
.bean-item:hover .bean-arrow,
.bean-item:focus-visible .bean-arrow {
  opacity: 1;
  transform: translateX(0);
}

.bean-visual {
  aspect-ratio: 4 / 5;
}

.bean-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.52s ease, clip-path 0.72s var(--ease-out);
}

.bean-photo.is-active {
  z-index: 1;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.bean-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 3;
  margin: 0;
  padding: 8px 12px;
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  background: rgba(30, 24, 20, 0.5);
  backdrop-filter: blur(8px);
}

.craft {
  align-items: start;
}

.craft-copy {
  padding-top: clamp(30px, 5vw, 90px);
}

.methods {
  margin-block: 28px !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem) !important;
  line-height: 1.45;
}

.craft-copy hr {
  width: 100%;
  margin: clamp(64px, 7vw, 110px) 0;
  border: 0;
  border-top: 1px solid var(--rule);
}

.quote-band {
  width: 100%;
  height: clamp(430px, 47vw, 820px);
  color: var(--cream);
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgba(24, 18, 14, 0.15) 70%, rgba(24, 18, 14, 0.38));
  pointer-events: none;
}

.quote-band-media {
  position: absolute;
  inset: -6% 0;
}

.quote-band-copy {
  position: absolute;
  right: clamp(24px, 7vw, 135px);
  bottom: clamp(34px, 6vw, 110px);
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.quote-band-copy span {
  display: block;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.98fr);
  gap: clamp(70px, 12vw, 240px);
  align-items: center;
  padding-top: clamp(120px, 14vw, 260px);
  padding-bottom: clamp(120px, 14vw, 260px);
}

.about-copy {
  max-width: 540px;
}

.about-image {
  aspect-ratio: 4 / 5;
}

.about-image img {
  transform: translate3d(var(--about-x, 0), var(--about-y, 0), 0) scale(1.055);
}

.about-image:hover img {
  transform: translate3d(var(--about-x, 0), var(--about-y, 0), 0) scale(1.075);
}

.subscription {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 220px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(105px, 11vw, 210px);
  padding-bottom: clamp(105px, 11vw, 210px);
}

.subscription-intro {
  max-width: 620px;
}

.subscription-lead {
  max-width: 49ch;
  margin: 42px 0 54px;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--rule);
}

.price {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6vw, 7rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.price-line > span:last-child {
  color: var(--cocoa);
  font-size: 0.8rem;
  line-height: 1.35;
}

.plan-details {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-details li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
}

.plan-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 9px;
  height: 1px;
  background: var(--ink);
}

.enquiry-form {
  align-self: start;
  max-width: 720px;
  padding-top: 5px;
}

.form-heading {
  margin-bottom: 54px;
}

.form-heading h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.form-heading > p:last-child {
  margin: 0;
  color: var(--cocoa);
}

.field-row {
  display: grid;
  gap: 30px;
}

.field-row.two-up {
  grid-template-columns: 1fr 1fr;
}

.field-row label,
.message-field {
  display: block;
  position: relative;
  margin-bottom: 38px;
}

.field-row label > span,
.message-field > span,
.delivery-choice legend {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.message-field em {
  color: var(--stone);
  font-style: normal;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 0 13px;
  outline: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 10px) 50%, calc(100% - 5px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

.field-error {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 5px;
  color: #825343;
  font-size: 0.68rem;
}

label.has-error .field-error {
  display: block;
}

label.has-error input,
label.has-error select {
  border-color: #825343;
}

.delivery-choice {
  display: flex;
  gap: 10px;
  margin: 0 0 38px;
  padding: 0;
  border: 0;
}

.delivery-choice legend {
  width: 100%;
}

.delivery-choice label {
  position: relative;
}

.delivery-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-choice span {
  display: block;
  min-width: 86px;
  padding: 10px 18px;
  text-align: center;
  border: 1px solid var(--rule);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.delivery-choice input:checked + span {
  color: var(--cream);
  background: var(--coffee);
  border-color: var(--coffee);
}

.delivery-choice input:focus-visible + span {
  outline: 2px solid var(--stone);
  outline-offset: 3px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  text-align: left;
  background: transparent;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.submit-arrow {
  display: block;
  width: 22px;
  height: 22px;
  font-style: normal;
  transition: transform 0.45s var(--ease-out);
}

.submit-button:hover .submit-arrow,
.submit-button:focus-visible .submit-arrow {
  transform: translateX(4px);
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--stone);
  font-size: 0.7rem;
}

.form-status {
  min-height: 1.2em;
  color: var(--cocoa);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-status.is-visible {
  opacity: 1;
}

.closing {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(80px, 12vw, 240px);
  align-items: end;
  padding-top: clamp(80px, 9vw, 165px);
  padding-bottom: clamp(110px, 13vw, 245px);
}

.closing-image {
  aspect-ratio: 4 / 5;
}

.closing h2 {
  padding-bottom: 0.08em;
  font-size: clamp(4rem, 7.7vw, 9rem);
  line-height: 0.84;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 34px clamp(24px, 4.3vw, 82px) 42px;
  border-top: 1px solid var(--rule);
}

.site-footer nav {
  display: flex;
  gap: 30px;
}

.site-footer nav a {
  position: relative;
  padding: 5px 0;
  font-size: 0.72rem;
}

.site-footer > p {
  margin: 0;
  justify-self: end;
  font-size: 0.68rem;
}

.footer-brand {
  width: 78px;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.95s var(--ease-out);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .reveal-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s var(--ease-out);
}

body.motion-ready .reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

@keyframes heroSettle {
  to { transform: scale(1); }
}

@keyframes lineRise {
  to { transform: translateY(0); }
}

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

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@media (max-width: 980px) {
  :root { --header-h: 86px; }

  .editorial,
  .beans,
  .about,
  .subscription,
  .closing {
    grid-template-columns: 1fr;
  }

  .editorial,
  .beans,
  .about,
  .subscription {
    gap: 72px;
  }

  .copy-block,
  .about-copy,
  .subscription-intro,
  .enquiry-form {
    max-width: none;
  }

  .introduction .copy-block,
  .craft .copy-block {
    width: min(100%, 680px);
    justify-self: end;
  }

  .image-frame.portrait,
  .bean-visual,
  .about-image {
    width: min(82vw, 720px);
  }

  .beans-copy {
    order: 1;
  }

  .bean-visual {
    order: 2;
    justify-self: end;
  }

  .subscription-intro {
    max-width: 680px;
  }

  .enquiry-form {
    width: min(100%, 760px);
    justify-self: end;
  }

  .closing {
    grid-template-columns: minmax(210px, 0.45fr) 1fr;
    gap: 60px;
  }
}

@media (max-width: 700px) {
  :root { --header-h: 78px; }

  .site-header {
    padding: 13px 20px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .site-header nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .brand-link {
    width: 68px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(25, 19, 15, 0.58), rgba(25, 19, 15, 0.08) 88%),
      linear-gradient(0deg, rgba(24, 18, 14, 0.48), rgba(24, 18, 14, 0) 60%);
  }

  .hero-content {
    left: 20px;
    bottom: 52px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.8vw, 6.2rem);
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding-inline: 20px;
  }

  .introduction,
  .about {
    padding-block: 105px;
  }

  .editorial,
  .beans,
  .about,
  .subscription {
    gap: 56px;
  }

  .copy-block h2,
  .beans h2,
  .about h2,
  .subscription h2 {
    font-size: clamp(2.8rem, 13.5vw, 4.2rem);
  }

  .image-frame.portrait,
  .bean-visual,
  .about-image {
    width: 100%;
  }

  .beans {
    padding-block: 96px 120px;
  }

  .bean-item {
    grid-template-columns: 32px 1fr 22px;
    padding: 19px 0;
  }

  .quote-band {
    height: 72svh;
    min-height: 470px;
  }

  .quote-band-media img {
    object-position: 52% center;
  }

  .quote-band-copy {
    right: 20px;
    bottom: 36px;
    left: 20px;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .subscription {
    padding-block: 100px;
  }

  .field-row.two-up {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .closing {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-block: 90px 120px;
  }

  .closing-image {
    width: 66vw;
  }

  .closing h2 {
    justify-self: end;
    width: 88%;
    font-size: clamp(3.8rem, 17vw, 6.5rem);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 28px 20px 34px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .bean-arrow {
    opacity: 0.6;
  }
}

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

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

  .hero-media,
  .hero-media img,
  .image-frame img,
  .quote-band-media img,
  .about-image img {
    transform: none !important;
  }

  body.motion-ready .reveal,
  body.motion-ready .reveal-image {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
