:root {
  --ink: #17221b;
  --paper: #f3f0e7;
  --cream: #fffdf6;
  --green: #285d3a;
  --bright-green: #8bb65b;
  --acid: #d3f06b;
  --terracotta: #c9563f;
  --pink: #f4b8bd;
  --line: rgba(23, 34, 27, 0.22);
  --shadow: 0 18px 50px rgba(33, 45, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--cream);
  transform: translateY(-160%);
}

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

.announcement {
  padding: 0.55rem 1rem;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 231, 0.94);
  backdrop-filter: blur(14px);
}

.wordmark {
  width: max-content;
  text-decoration: none;
  letter-spacing: -0.055em;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 900;
}

.wordmark span {
  color: var(--green);
}

.wordmark sup {
  margin-left: 0.16rem;
  letter-spacing: 0;
  font-size: 0.42em;
  vertical-align: top;
}

.site-header nav {
  display: flex;
  gap: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.site-header nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.cart-button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem 0.55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.cart-count {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.74rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  min-height: calc(100vh - 108px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw 8vw 7vw;
}

.eyebrow {
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 11ch;
  margin: 0;
  letter-spacing: -0.065em;
  font-size: clamp(3.4rem, 6.9vw, 7.6rem);
  font-weight: 800;
  line-height: 0.89;
}

h1 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 31rem;
  margin: 2rem 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button:focus-visible,
.cart-button:focus-visible,
.toast button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

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

.social-proof {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.social-proof span {
  color: var(--terracotta);
  letter-spacing: 0.08em;
}

.hero-scene {
  min-height: 610px;
  padding: 3vw;
  background: var(--pink);
}

.scene-wall {
  position: relative;
  --cactus-axis: 50%;
  height: 100%;
  min-height: 550px;
  overflow: hidden;
  background-color: #f8e1d9;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  box-shadow: var(--shadow);
}

.scene-tv {
  position: absolute;
  top: 10%;
  right: 12%;
  left: 12%;
  display: grid;
  height: 43%;
  place-items: center;
  padding: 1rem 1.25rem;
  border: 12px solid #111713;
  color: var(--acid);
  background: #26342c;
  box-shadow: 0 16px 26px rgba(23, 34, 27, 0.22);
  text-align: center;
  letter-spacing: 0.15em;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 800;
}

.scene-tv span {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.scene-tv small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.56em;
  line-height: 1.25;
}

.scene-cable {
  position: absolute;
  top: 53%;
  width: 5px;
  height: 28%;
  border-radius: 4px;
  background: #2a2d2b;
}

.scene-cable-left {
  left: 48.4%;
  transform: rotate(3deg);
}

.scene-cable-right {
  left: 52%;
  transform: rotate(-5deg);
}

.scene-console {
  position: absolute;
  right: 7%;
  bottom: 9%;
  left: 7%;
  height: 13%;
  border-radius: 2px 2px 8px 8px;
  background: #bd774c;
  box-shadow: inset 0 9px 0 rgba(255,255,255,0.15), 0 18px 0 #805238;
}

.scene-pot,
.product-pot {
  position: absolute;
  z-index: 5;
  right: calc(var(--cactus-axis, 50%) - 55px);
  bottom: 21%;
  width: 110px;
  height: 84px;
  border-radius: 7px 7px 32px 32px;
  background: var(--terracotta);
  box-shadow: inset 0 9px 0 rgba(255,255,255,0.2);
}

.scene-pot {
  right: calc(var(--cactus-axis, 50%) - 43px);
  width: 86px;
  height: 60px;
  border-radius: 7px 7px 25px 25px;
}

.scene-cactus {
  position: absolute;
  z-index: 4;
  border: 3px solid #1c4b2d;
  background: var(--green);
  box-shadow: inset 9px 0 0 rgba(255,255,255,0.08);
}

.cactus-main {
  right: calc(var(--cactus-axis, 50%) - 29px);
  bottom: 29%;
  width: 58px;
  height: 140px;
  border-radius: 42px 42px 10px 10px;
}

.cactus-arm-left {
  right: calc(var(--cactus-axis, 50%) + 20px);
  bottom: 35%;
  width: 60px;
  height: 34px;
  border-radius: 20px 0 0 20px;
}

.cactus-arm-left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 30px;
  height: 52px;
  border: 3px solid #1c4b2d;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: var(--green);
}

.cactus-arm-right {
  right: calc(var(--cactus-axis, 50%) - 86px);
  bottom: 40%;
  width: 56px;
  height: 34px;
  border-radius: 0 20px 20px 0;
}

.cactus-arm-right::before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 28px;
  height: 48px;
  border: 3px solid #1c4b2d;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: var(--green);
}

.scene-label {
  position: absolute;
  z-index: 7;
  right: 2rem;
  bottom: 2rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--acid);
  transform: rotate(-2deg);
  font-size: 0.62rem;
  font-weight: 900;
}

.manifesto-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.manifesto-strip p {
  margin: 0;
  padding: 1.4rem 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  font-weight: 900;
}

.manifesto-strip p + p {
  border-left: 1px solid var(--ink);
}

.manifesto-strip span {
  margin-right: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.shop-preview {
  padding: 8rem 6vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.48fr);
  align-items: end;
  gap: 3rem;
  max-width: 1250px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  margin: 0;
  letter-spacing: -0.055em;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
}

.section-heading > p {
  margin: 0;
  font-size: 1.08rem;
}

.product-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1250px;
  margin: 0 auto;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
}

.product-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #bcd2d7;
}

.product-sun {
  position: absolute;
  top: 12%;
  left: 13%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #f7e695;
}

.product-art .product-pot {
  right: calc(50% - 78px);
  bottom: 9%;
  width: 156px;
  height: 112px;
}

.product-cactus {
  position: absolute;
  z-index: 4;
  border: 4px solid #1c4b2d;
  background: var(--green);
  box-shadow: inset 12px 0 0 rgba(255,255,255,0.08);
}

.product-cactus-main {
  right: calc(50% - 39px);
  bottom: 25%;
  width: 78px;
  height: 330px;
  border-radius: 50px 50px 8px 8px;
}

.product-cactus-left {
  right: 50%;
  bottom: 47%;
  width: 105px;
  height: 52px;
  border-radius: 25px 0 0 25px;
}

.product-cactus-left::before,
.product-cactus-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 45px;
  border: 4px solid #1c4b2d;
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  background: var(--green);
}

.product-cactus-left::before {
  left: -4px;
  height: 125px;
}

.product-cactus-right {
  right: calc(50% - 116px);
  bottom: 55%;
  width: 85px;
  height: 50px;
  border-radius: 0 25px 25px 0;
}

.product-cactus-right::before {
  right: -4px;
  height: 102px;
}

.scene-original-cactus {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 17%;
  left: 50%;
  width: 400px;
  height: 580px;
  min-height: 580px;
  margin-left: -200px;
  overflow: visible;
  background: transparent;
  transform: scale(0.47);
  transform-origin: center bottom;
  pointer-events: none;
}

@media (min-width: 901px) {
  .scene-original-cactus {
    bottom: 16%;
    transform: scale(0.62);
  }
}

@media (min-width: 1400px) {
  .scene-original-cactus {
    bottom: 15.5%;
    transform: scale(0.7);
  }
}

.height-note {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--cream);
  transform: rotate(2deg);
  font-size: 0.58rem;
  font-weight: 900;
}

.height-note::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 80px;
  border-top: 1px solid var(--ink);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.product-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.product-kicker {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  font-weight: 800;
}

.product-heading h3 {
  margin: 0 0 1.5rem;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
}

.price {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
}

.product-description {
  margin: 1.75rem 0;
  font-size: 1.08rem;
}

.product-details {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-details li::before {
  content: "+";
  display: inline-block;
  width: 1.2rem;
}

.button-add {
  width: 100%;
  color: var(--paper);
  background: var(--green);
}

.toast {
  position: fixed;
  z-index: 40;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  max-width: calc(100vw - 2.5rem);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.toast[hidden] {
  display: none;
}

.toast button {
  padding: 0;
  border: 0;
  color: var(--acid);
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

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

  .site-header nav {
    display: none;
  }

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

  .hero-copy {
    padding: 7rem 6vw 5rem;
  }

  .hero-scene {
    min-height: 650px;
  }

  .section-heading,
  .product-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .product-info {
    min-height: 520px;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 64px;
    padding: 0 1rem;
  }

  .hero-copy {
    padding: 5rem 1.25rem 4rem;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-scene {
    min-height: 540px;
    padding: 1rem;
  }

  .scene-wall {
    min-height: 505px;
  }

  .scene-tv {
    right: 6%;
    left: 6%;
  }

  .manifesto-strip {
    grid-template-columns: 1fr;
  }

  .manifesto-strip p + p {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .shop-preview {
    padding: 5rem 1rem;
  }

  .section-heading {
    gap: 1.25rem;
  }

  .product-art {
    min-height: 450px;
  }

  .product-cactus-main {
    height: 265px;
  }

  .product-info {
    min-height: 0;
    padding: 2rem 1.25rem;
  }

  .product-heading {
    grid-template-columns: 1fr;
  }

  .price {
    grid-row: 1;
  }

  .height-note {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Complete storefront */

.collection {
  padding: 8rem 5vw;
  border-top: 1px solid var(--ink);
}

.collection-faux {
  background: #f3c8cb;
}

.collection-living {
  background: #dce4c8;
}

.collection-intro {
  display: grid;
  grid-template-columns: 0.18fr 1fr 0.62fr;
  align-items: end;
  gap: 3rem;
  max-width: 1380px;
  margin: 0 auto 4rem;
}

.collection-number {
  align-self: start;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
}

.collection-intro h2,
.proof-section h2,
.faq-section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.06em;
  font-size: clamp(3.1rem, 7vw, 7.8rem);
  line-height: 0.86;
}

.collection-intro h2 em,
.final-cta h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.collection-intro > p:last-child {
  margin: 0;
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1380px;
  margin: 0 auto;
}

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

.grid-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.specimen {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background-color: #d7bf9b;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 14px 14px;
}

.specimen-paddle {
  background-color: #9fc1aa;
}

.specimen-barrel {
  background-color: #e8a27f;
}

.specimen-cluster {
  background-color: #a8c6d3;
}

.specimen-tall {
  background-color: #d8b9d8;
}

.specimen-shadow {
  position: absolute;
  right: 16%;
  bottom: 8%;
  left: 16%;
  height: 30px;
  border-radius: 50%;
  background: rgba(23, 34, 27, 0.2);
  filter: blur(4px);
}

.specimen-pot {
  position: absolute;
  z-index: 3;
  right: calc(50% - 68px);
  bottom: 8%;
  width: 136px;
  height: 98px;
  border: 3px solid var(--ink);
  border-radius: 4px 4px 31px 31px;
  box-shadow: inset 0 10px 0 rgba(255,255,255,0.25);
}

.specimen-pot-cream {
  background: #efe5cc;
}

.specimen-pot-pink {
  background: #e99299;
}

.specimen-pot-blue {
  background: #547da1;
}

.specimen-pot-yellow {
  height: 76px;
  border-radius: 7px 7px 50px 50px;
  background: #e7c84f;
}

.specimen-pot-black {
  background: #202722;
}

.specimen-plant {
  position: absolute;
  z-index: 2;
  border: 3px solid var(--ink);
  background: var(--green);
}

.specimen-plant-saguaro {
  right: calc(50% - 34px);
  bottom: 28%;
  width: 68px;
  height: 245px;
  border-radius: 40px 40px 7px 7px;
  box-shadow: inset 11px 0 rgba(255,255,255,0.1);
}

.specimen-plant-saguaro::before,
.specimen-plant-saguaro::after {
  content: "";
  position: absolute;
  bottom: 32%;
  width: 58px;
  height: 80px;
  border: 3px solid var(--ink);
  background: var(--green);
}

.specimen-plant-saguaro::before {
  right: 82%;
  border-radius: 25px 0 0 25px;
  clip-path: polygon(0 0, 55% 0, 55% 64%, 100% 64%, 100% 100%, 0 100%);
}

.specimen-plant-saguaro::after {
  left: 82%;
  height: 105px;
  border-radius: 0 25px 25px 0;
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%, 0 70%, 45% 70%);
}

.specimen-plant-paddle {
  right: calc(50% - 42px);
  bottom: 28%;
  width: 84px;
  height: 175px;
  border-radius: 50%;
  transform: rotate(-5deg);
  box-shadow: inset 12px 0 rgba(255,255,255,0.09);
}

.specimen-plant-paddle::before,
.specimen-plant-paddle::after {
  content: "";
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--bright-green);
}

.specimen-plant-paddle::before {
  right: 68%;
  bottom: 15%;
  width: 75px;
  height: 120px;
  transform: rotate(-17deg);
}

.specimen-plant-paddle::after {
  bottom: 42%;
  left: 64%;
  width: 68px;
  height: 110px;
  transform: rotate(18deg);
}

.specimen-plant-barrel {
  right: calc(50% - 83px);
  bottom: 24%;
  width: 166px;
  height: 155px;
  overflow: hidden;
  border-radius: 48% 48% 40% 40%;
  background: repeating-linear-gradient(90deg, #2c6840 0 16px, #74a451 16px 23px);
}

.specimen-plant-barrel::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  background-image: radial-gradient(circle, #eadf9f 0 2px, transparent 2.5px);
  background-size: 18px 20px;
}

.specimen-plant-cluster {
  right: calc(50% - 26px);
  bottom: 22%;
  width: 52px;
  height: 190px;
  border-radius: 35px 35px 5px 5px;
}

.specimen-plant-cluster::before,
.specimen-plant-cluster::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 40px;
  border: 3px solid var(--ink);
  border-radius: 30px 30px 5px 5px;
}

.specimen-plant-cluster::before {
  right: 36px;
  height: 135px;
  background: #3f7547;
}

.specimen-plant-cluster::after {
  left: 36px;
  height: 158px;
  background: #8aaa55;
}

.specimen-plant-tall {
  right: calc(50% - 32px);
  bottom: 26%;
  width: 64px;
  height: 290px;
  border-radius: 44px 44px 5px 5px;
  background: repeating-linear-gradient(90deg, #285d3a 0 13px, #3e7449 13px 18px);
}

.specimen-plant-tall::before,
.specimen-plant-tall::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 34px;
  border: 3px solid var(--ink);
  border-radius: 24px 24px 4px 4px;
}

.specimen-plant-tall::before {
  right: 42px;
  height: 145px;
  background: #6b9456;
}

.specimen-plant-tall::after {
  left: 42px;
  height: 180px;
  background: #467b4c;
}

.specimen-tag {
  position: absolute;
  z-index: 6;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--acid);
  transform: rotate(2deg);
  font-size: 0.6rem;
  font-weight: 900;
}

.product-polaroid {
  position: absolute;
  z-index: 8;
  top: 1.25rem;
  left: 1.25rem;
  box-sizing: border-box;
  width: clamp(108px, 25%, 160px);
  margin: 0;
  padding: 7px 7px 24px;
  border: 1px solid rgba(23, 34, 27, 0.2);
  background: #f7f1e5;
  box-shadow: 6px 8px 0 rgba(23, 34, 27, 0.24);
  transform: rotate(var(--polaroid-tilt, -4deg));
  transform-origin: center;
  pointer-events: none;
}

.product-polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 34, 27, 0.14);
  object-fit: cover;
}

.polaroid-original {
  --polaroid-tilt: -5deg;
}

.polaroid-everlasting {
  --polaroid-tilt: -4deg;
}

.polaroid-nearly-alive {
  --polaroid-tilt: 4deg;
}

.polaroid-roundabout {
  --polaroid-tilt: -3deg;
}

.polaroid-committee {
  --polaroid-tilt: 3.5deg;
}

.polaroid-blackout {
  --polaroid-tilt: -4.5deg;
}

.grid-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.grid-product-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.grid-product-title h3 {
  margin: 0;
  letter-spacing: -0.045em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.grid-product-copy > p:not(.product-kicker) {
  flex: 1;
  margin: 1.4rem 0 2rem;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.proof-section h2 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.proof-diagram {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background-color: var(--acid);
  background-image: linear-gradient(rgba(23,34,27,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(23,34,27,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.proof-canvas {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.proof-eye {
  position: absolute;
  z-index: 4;
  top: 44%;
  left: 7%;
  width: 108px;
  height: 60px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 80% 0 80% 0;
  background: var(--cream);
  transform: rotate(43deg);
}

.proof-eye span {
  position: absolute;
  top: 9px;
  left: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
}

.proof-sightline {
  position: absolute;
  z-index: 1;
  top: 49%;
  right: 25%;
  left: 24%;
  border-top: 3px dashed var(--ink);
}

.proof-sightline::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--ink);
}

.proof-tv {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 9%;
  display: grid;
  width: 47%;
  height: 42%;
  place-items: center;
  border: 10px solid var(--ink);
  color: var(--acid);
  background: #334239;
  box-shadow: 10px 12px 0 rgba(23,34,27,0.16);
}

.proof-tv span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 900;
}

.proof-mini-cactus {
  position: absolute;
  z-index: 3;
  right: 25%;
  bottom: 12%;
  width: 78px;
  height: 235px;
  border: 4px solid var(--ink);
  border-radius: 50px 50px 4px 4px;
  background: var(--green);
}

.proof-mini-cactus::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -72px;
  left: -25px;
  height: 92px;
  border: 4px solid var(--ink);
  border-radius: 5px 5px 32px 32px;
  background: var(--terracotta);
}

.proof-cables {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: calc(25% + 34px);
  bottom: 5%;
  width: 10px;
}

.proof-cables span {
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--ink);
}

.proof-cables span:last-child {
  left: 9px;
  transform: rotate(2deg);
}

.proof-label {
  position: absolute;
  z-index: 5;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
  font-weight: 900;
}

.proof-label-front {
  right: 5%;
  bottom: 20%;
  transform: rotate(2deg);
}

.proof-label-sight {
  top: 25%;
  left: 12%;
  transform: rotate(-2deg);
}

.proof-label-behind {
  top: 54%;
  right: 3%;
  background: var(--pink);
  transform: rotate(-2deg);
}

.proof-caption {
  margin: 0;
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--ink);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
  padding: 8rem 6vw;
  background: var(--paper);
}

.faq-section h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.025em;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 43rem;
  margin: -0.4rem 0 1.8rem;
}

.final-cta {
  padding: 9rem 5vw;
  border-top: 1px solid var(--ink);
  color: var(--paper);
  background: var(--green);
  text-align: center;
}

.final-cta h2 {
  max-width: 13ch;
  margin: 0 auto 3rem;
  font-size: clamp(3rem, 7.5vw, 7.8rem);
}

.final-cta .button-primary {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--acid);
}

.final-cta .button:hover {
  box-shadow: 5px 5px 0 var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: 4rem 5vw;
  color: var(--paper);
  background: var(--ink);
}

.footer-wordmark {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

/* Cart */

body.cart-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  opacity: 0;
  background: rgba(23, 34, 27, 0.58);
  transition: opacity 220ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  display: flex;
  width: min(520px, 100vw);
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(23,34,27,0.2);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer[hidden],
.cart-overlay[hidden],
.cart-empty[hidden],
.cart-footer[hidden],
.cart-limit[hidden] {
  display: none;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--ink);
}

.cart-header h2 {
  margin: 0;
  letter-spacing: -0.06em;
  font-size: 3.5rem;
  line-height: 0.9;
}

.cart-close {
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.cart-limit {
  margin: 1rem 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--acid);
  font-size: 0.76rem;
}

.cart-limit strong,
.cart-limit span {
  display: block;
}

.cart-limit strong {
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.cart-items {
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cart-item-swatch {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background: #bcd2d7;
}

.cart-item-swatch::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: calc(50% - 27px);
  bottom: 12px;
  width: 54px;
  height: 40px;
  border-radius: 3px 3px 16px 16px;
  background: var(--terracotta);
}

.cart-item-swatch span {
  position: absolute;
  z-index: 1;
  right: calc(50% - 15px);
  bottom: 43px;
  width: 30px;
  height: 72px;
  border-radius: 20px 20px 3px 3px;
  background: var(--green);
}

.swatch-original span::before,
.swatch-original span::after,
.swatch-everlasting span::before,
.swatch-everlasting span::after {
  content: "";
  position: absolute;
  bottom: 22px;
  width: 22px;
  height: 12px;
  background: var(--green);
}

.swatch-original span::before,
.swatch-everlasting span::before {
  right: 20px;
  border-radius: 8px 0 0 8px;
}

.swatch-original span::after,
.swatch-everlasting span::after {
  left: 20px;
  border-radius: 0 8px 8px 0;
}

.swatch-everlasting {
  background: #d7bf9b;
}

.swatch-everlasting::after {
  background: #efe5cc;
}

.swatch-nearly-alive {
  background: #9fc1aa;
}

.swatch-nearly-alive::after {
  background: #e99299;
}

.swatch-nearly-alive span {
  right: calc(50% - 17px);
  width: 34px;
  height: 65px;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.swatch-nearly-alive span::before,
.swatch-nearly-alive span::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 43px;
  border-radius: 50%;
  background: var(--bright-green);
}

.swatch-nearly-alive span::before {
  right: 20px;
  bottom: 3px;
  transform: rotate(-16deg);
}

.swatch-nearly-alive span::after {
  bottom: 23px;
  left: 21px;
  transform: rotate(16deg);
}

.swatch-roundabout {
  background: #e8a27f;
}

.swatch-roundabout::after {
  background: #547da1;
}

.swatch-roundabout span {
  right: calc(50% - 31px);
  bottom: 43px;
  width: 62px;
  height: 52px;
  overflow: hidden;
  border-radius: 48% 48% 38% 38%;
  background-color: var(--green);
  background-image: radial-gradient(circle, #eadf9f 0 1px, transparent 1.5px), repeating-linear-gradient(90deg, #2c6840 0 8px, #74a451 8px 12px);
  background-size: 12px 13px, auto;
}

.swatch-committee {
  background: #a8c6d3;
}

.swatch-committee::after {
  height: 31px;
  border-radius: 3px 3px 22px 22px;
  background: #e7c84f;
}

.swatch-committee span {
  right: calc(50% - 10px);
  width: 20px;
  height: 66px;
}

.swatch-committee span::before,
.swatch-committee span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 17px;
  border-radius: 12px 12px 2px 2px;
}

.swatch-committee span::before {
  right: 14px;
  height: 47px;
  background: #3f7547;
}

.swatch-committee span::after {
  left: 14px;
  height: 54px;
  background: #8aaa55;
}

.swatch-blackout {
  background: #d8b9d8;
}

.swatch-blackout::after {
  background: #202722;
}

.swatch-blackout span {
  right: calc(50% - 11px);
  width: 22px;
  height: 82px;
  background: repeating-linear-gradient(90deg, #285d3a 0 7px, #3e7449 7px 10px);
}

.swatch-blackout span::before,
.swatch-blackout span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 15px;
  border-radius: 10px 10px 2px 2px;
}

.swatch-blackout span::before {
  right: 14px;
  height: 48px;
  background: #6b9456;
}

.swatch-blackout span::after {
  left: 14px;
  height: 60px;
  background: #467b4c;
}

.cart-item-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-copy h3 {
  margin: 0;
  letter-spacing: -0.035em;
  font-size: 1.2rem;
  line-height: 1.05;
}

.cart-item-copy p:not(.product-kicker) {
  margin: 0.4rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  background: transparent;
}

.quantity-control button {
  cursor: pointer;
  font-weight: 800;
}

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

.cart-remove {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
}

.cart-empty {
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.empty-cactus {
  position: relative;
  width: 58px;
  height: 68px;
  margin-bottom: 3.5rem;
  border: 3px solid var(--ink);
  border-radius: 32px 32px 4px 4px;
}

.empty-cactus::after {
  content: "";
  position: absolute;
  top: 64px;
  left: -15px;
  width: 82px;
  height: 54px;
  border: 3px solid var(--ink);
  border-radius: 4px 4px 22px 22px;
}

.cart-empty p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.cart-empty small {
  margin-top: 0.4rem;
  color: rgba(23,34,27,0.62);
}

.cart-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--ink);
  background: var(--cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
}

.cart-footer > p {
  margin: 0.45rem 0 1rem;
  color: rgba(23,34,27,0.65);
  font-size: 0.7rem;
}

.button-checkout {
  width: 100%;
  color: var(--paper);
  background: var(--terracotta);
}

.cart-footer > small {
  display: block;
  margin-top: 0.9rem;
  color: rgba(23,34,27,0.62);
  text-align: center;
}

/* Checkout 503 */

.error-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background-color: var(--ink);
  background-image: radial-gradient(rgba(211,240,107,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
}

.error-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: max(calc(100vh - 50px), 820px);
  align-items: center;
}

.error-code {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 2rem;
  margin: 0;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  font-weight: 900;
}

.fail-art {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  padding: 5vw 2vw;
}

.fail-image {
  display: block;
  width: min(100%, 920px);
  height: auto;
  border: 1px solid rgba(243,240,231,0.35);
  border-radius: 48% 52% 46% 54% / 7% 8% 8% 7%;
  box-shadow: 15px 18px 0 rgba(0,0,0,0.22);
  transform: rotate(-1deg);
  animation: image-drift 4s ease-in-out infinite;
}

.fail-pot {
  position: absolute;
  z-index: 5;
  top: 49%;
  left: calc(50% - 76px);
  width: 152px;
  height: 112px;
  border: 4px solid var(--paper);
  border-radius: 6px 6px 45px 45px;
  background: var(--terracotta);
  box-shadow: inset 0 12px rgba(255,255,255,0.18), 14px 16px 0 rgba(0,0,0,0.2);
  transform: rotate(4deg);
  animation: cactus-drift 4s ease-in-out infinite;
}

.fail-cactus {
  position: absolute;
  z-index: 4;
  border: 4px solid var(--paper);
  background: var(--green);
  transform: rotate(4deg);
  animation: cactus-drift 4s ease-in-out infinite;
}

.fail-cactus-main {
  top: 17%;
  left: calc(50% - 42px);
  width: 84px;
  height: 260px;
  border-radius: 50px 50px 5px 5px;
}

.fail-cactus-left {
  top: 34%;
  left: calc(50% - 126px);
  width: 94px;
  height: 48px;
  border-radius: 25px 0 0 25px;
}

.fail-cactus-left::before,
.fail-cactus-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 42px;
  border: 4px solid var(--paper);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: var(--green);
}

.fail-cactus-left::before {
  left: -4px;
  height: 98px;
}

.fail-cactus-right {
  top: 29%;
  left: calc(50% + 30px);
  width: 102px;
  height: 48px;
  border-radius: 0 25px 25px 0;
}

.fail-cactus-right::before {
  right: -4px;
  height: 122px;
}

.carry-line {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: var(--paper);
  transform-origin: left center;
}

.carry-line-one {
  top: 32%;
  left: 18%;
  width: 34%;
  transform: rotate(35deg);
}

.carry-line-two {
  top: 20%;
  left: 49%;
  width: 29%;
  transform: rotate(64deg);
}

.carry-line-three {
  top: 39%;
  left: 52%;
  width: 28%;
  transform: rotate(-34deg);
}

.flying-flower {
  position: absolute;
  z-index: 7;
  width: 34px;
  height: 34px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 -23px 0 -5px var(--pink), 0 23px 0 -5px var(--pink), 23px 0 0 -5px var(--pink), -23px 0 0 -5px var(--pink);
  animation: flower-flutter 1.2s ease-in-out infinite alternate;
}

.flying-flower::before,
.flying-flower::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 27px;
  height: 14px;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.flying-flower::before {
  right: 31px;
}

.flying-flower::after {
  left: 31px;
}

.flower-one {
  top: 23%;
  left: 12%;
}

.flower-two {
  top: 9%;
  left: 43%;
  animation-delay: -0.5s;
}

.flower-three {
  top: 29%;
  right: 13%;
  animation-delay: -0.8s;
}

.flower-four {
  top: 55%;
  right: 8%;
  animation-delay: -0.2s;
}

.error-copy {
  position: relative;
  z-index: 2;
  max-width: 630px;
  padding: 7vw 7vw 7vw 2vw;
}

.error-copy h1 {
  max-width: 9ch;
  color: var(--paper);
  font-size: clamp(4rem, 7.2vw, 7.5rem);
}

.error-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2rem 0;
  font-size: 1.1rem;
}

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

.error-button:hover {
  box-shadow: 5px 5px 0 var(--paper);
}

.philosophy-note {
  position: relative;
  max-width: 34rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(243,240,231,0.35);
  border-bottom: 1px solid rgba(243,240,231,0.35);
}

.philosophy-note summary {
  position: relative;
  padding: 1rem 2rem 1rem 0;
  color: rgba(243,240,231,0.68);
  cursor: pointer;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.philosophy-note summary::-webkit-details-marker {
  display: none;
}

.philosophy-note summary::after {
  content: "+";
  position: absolute;
  right: 0;
}

.philosophy-note[open] summary::after {
  content: "−";
}

.philosophy-note div {
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(243,240,231,0.35);
  background: var(--ink);
}

.philosophy-note[open] {
  border-bottom-color: transparent;
}

@media (min-width: 801px) {
  .philosophy-note {
    min-height: 14rem;
  }

  .philosophy-note div {
    position: static;
    width: auto;
    border-bottom: 0;
    background: transparent;
  }

  .philosophy-note[open] {
    border-bottom-color: rgba(243,240,231,0.35);
  }
}

.philosophy-note div p {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.error-footnote {
  margin: 0;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(243,240,231,0.35);
  color: rgba(243,240,231,0.6);
  text-align: center;
  font-size: 0.68rem;
}

@keyframes cactus-drift {
  0%, 100% { translate: 0 -5px; }
  50% { translate: 0 8px; }
}

@keyframes flower-flutter {
  from { transform: translateY(-4px) rotate(-7deg); }
  to { transform: translateY(5px) rotate(7deg); }
}

@keyframes image-drift {
  0%, 100% { translate: 0 -4px; }
  50% { translate: 0 7px; }
}

@media (max-width: 1040px) {
  .collection-intro {
    grid-template-columns: auto 1fr;
  }

  .collection-intro > p:last-child {
    grid-column: 2;
  }

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

  .product-grid-three .grid-product:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.75rem);
  }

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

@media (max-width: 800px) {
  .collection {
    padding: 6rem 1.25rem;
  }

  .collection-intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .collection-number,
  .collection-intro > p:last-child {
    grid-column: 1;
  }

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

  .product-grid-three .grid-product:last-child {
    grid-column: auto;
    width: 100%;
  }

  .proof-section,
  .faq-section,
  .error-main {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    min-height: 520px;
  }

  .proof-diagram {
    min-height: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .proof-canvas {
    min-height: 620px;
  }

  .faq-section {
    gap: 4rem;
    padding: 6rem 1.25rem;
  }

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

  .fail-art {
    min-height: 570px;
  }

  .fail-image {
    position: relative;
    top: 4rem;
  }

  .error-copy {
    grid-row: 1;
    padding: 8rem 1.25rem 2rem;
  }

  .error-copy h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }
}

@media (max-width: 520px) {
  .specimen {
    min-height: 380px;
  }

  .grid-product-copy {
    padding: 1.5rem;
  }

  .product-polaroid {
    top: auto;
    bottom: 0.65rem;
    left: 0.65rem;
    width: 88px;
    padding: 6px 6px 20px;
    box-shadow: 4px 5px 0 rgba(23, 34, 27, 0.24);
  }

  .proof-diagram {
    min-height: 0;
  }

  .proof-canvas {
    min-height: 520px;
  }

  .proof-eye {
    left: 5%;
    width: 85px;
    height: 50px;
  }

  .proof-eye span {
    top: 8px;
    left: 27px;
    width: 29px;
    height: 29px;
  }

  .proof-sightline {
    right: 21%;
    left: 28%;
  }

  .proof-tv {
    right: 5%;
    width: 53%;
    height: 39%;
  }

  .proof-mini-cactus {
    right: 18%;
  }

  .proof-cables {
    right: calc(18% + 38px);
  }

  .cart-header h2 {
    font-size: 3rem;
  }

  .cart-item {
    grid-template-columns: 82px 1fr;
    padding: 1rem;
  }

  .cart-item-swatch {
    min-height: 112px;
  }

  .fail-art {
    min-height: 500px;
    transform: scale(0.82);
    transform-origin: top center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fail-pot,
  .fail-cactus,
  .flying-flower,
  .fail-image {
    animation: none;
  }
}

/* Illustrated problem and method */

.process-section {
  padding: 7rem 4vw;
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
}

.process-heading {
  display: flex;
  max-width: 1380px;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto 3rem;
}

.process-heading .eyebrow {
  margin-bottom: 0.4rem;
}

.process-heading h2 {
  margin: 0;
  letter-spacing: -0.06em;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  line-height: 0.86;
  text-align: right;
}

.process-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1380px;
  margin: 0 auto;
}

.process-card {
  min-width: 0;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.process-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--ink);
  object-fit: cover;
}

.process-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem;
}

.process-copy > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
}

.process-copy h3 {
  margin: 0;
  letter-spacing: -0.04em;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1;
}

.process-copy p {
  margin: 0.75rem 0 0;
  font-size: 0.83rem;
}

.proof-visual {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink);
  background: var(--acid);
}

.proof-image-wrap {
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-image {
  display: block;
  width: 100%;
  height: auto;
}

.proof-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.proof-sightline-path {
  color: #d00078;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.proof-cable-path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 7;
  vector-effect: non-scaling-stroke;
}

.proof-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  font-weight: 900;
}

.proof-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-legend i {
  display: inline-block;
  width: 26px;
  height: 4px;
}

.legend-sightline {
  background: #d00078;
}

.legend-cables {
  border-top: 3px dashed var(--ink);
}

.proof-visual .proof-caption {
  position: static;
  max-width: none;
  margin: 0;
  padding: 1.4rem 1.5rem;
  border: 0;
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
}

@media (max-width: 800px) {
  .process-section {
    padding: 5rem 1.25rem;
  }

  .process-heading {
    display: block;
  }

  .process-heading .eyebrow {
    margin-bottom: 1.5rem;
  }

  .process-heading h2 {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .proof-visual {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}
