@font-face {
  font-family: "Playfair Display";
  src: url("./assets/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./assets/fonts/PlayfairDisplay-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("./assets/fonts/Lora.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --cream: #faf7f0;
  --soft-white: #fffdf9;
  --paper: #f5efe4;
  --sage: #9caf88;
  --deep-sage: #6b7f5e;
  --forest: #4f6147;
  --oat: #d4c5b0;
  --terracotta: #a65d57;
  --rose: #f2c4c4;
  --seafoam: #a8c3bc;
  --powder-blue: #b7c9e2;
  --butter: #f7e3c3;
  --ink: #3e3a35;
  --muted-ink: #686157;
  --line: rgba(62, 58, 53, 0.18);
  --line-strong: rgba(62, 58, 53, 0.32);
  --shadow: 0 24px 60px rgba(62, 58, 53, 0.12);
  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Lora", "Iowan Old Style", Georgia, serif;
  --shell: min(1240px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--soft-white);
  border-radius: 2px;
}

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 24px;
  background: var(--forest);
  color: var(--soft-white);
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(250, 247, 240, 0.98);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-wordmark,
.footer-brand span {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.brand-wordmark i,
.footer-brand i {
  color: var(--deep-sage);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu > a:not(.nav-etsy) {
  position: relative;
}

.nav-menu > a:not(.nav-etsy)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--deep-sage);
  content: "";
  transition: transform 180ms ease;
}

.nav-menu > a:not(.nav-etsy):hover::after,
.nav-menu > a:not(.nav-etsy):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-etsy {
  gap: 8px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--soft-white);
  transition: background 180ms ease;
}

.nav-etsy:hover {
  background: var(--forest);
}

.menu-toggle {
  width: 48px;
  min-height: 44px;
  display: none;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 30px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  padding-block: clamp(72px, 9vw, 130px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(62px, 7.3vw, 112px);
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  color: var(--deep-sage);
  font-weight: 400;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted-ink);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: var(--soft-white);
}

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

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: var(--soft-white);
}

.button-light {
  background: var(--soft-white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--paper);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration-color: var(--oat);
  text-decoration-thickness: 2px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--deep-sage);
  text-decoration-color: var(--deep-sage);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  width: 5px;
  height: 5px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  padding: 0 0 58px 64px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -80px;
  bottom: 26px;
  left: 22px;
  background: var(--paper);
  content: "";
}

.hero-image-frame {
  overflow: hidden;
  border: 1px solid rgba(62, 58, 53, 0.1);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover .hero-image-frame img {
  transform: scale(1.015);
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-caption span {
  display: block;
  margin-bottom: 3px;
  color: var(--terracotta);
}

.quiet-statement {
  padding-block: clamp(90px, 12vw, 170px);
  background: var(--forest);
  color: var(--soft-white);
  text-align: center;
}

.quiet-inner {
  max-width: 930px;
}

.quiet-statement .eyebrow {
  color: var(--soft-white);
}

.quiet-statement h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -0.03em;
}

.quiet-statement h2::after {
  width: 72px;
  height: 1px;
  display: block;
  margin: 38px auto 0;
  background: var(--oat);
  content: "";
}

.quiet-statement p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: var(--paper);
  font-size: 17px;
}

.featured,
.process {
  padding-block: clamp(92px, 11vw, 160px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  letter-spacing: -0.035em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(58px, 8vw, 96px);
}

.split-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted-ink);
}

.product-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 78px 38px;
}

.product-card-lead {
  grid-row: span 2;
}

.product-card-lead .product-image {
  aspect-ratio: 4 / 5;
}

.product-card:not(.product-card-lead) .product-image {
  aspect-ratio: 1.48 / 1;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.025);
}

.product-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  position: absolute;
  right: 18px;
  bottom: 18px;
  place-items: center;
  background: var(--soft-white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(62, 58, 53, 0.12);
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-image:hover .product-arrow,
.product-image:focus-visible .product-arrow {
  transform: rotate(8deg);
  background: var(--deep-sage);
  color: var(--soft-white);
}

.product-copy {
  padding-top: 24px;
}

.product-kicker,
.collection-label {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 44px);
}

.product-card:not(.product-card-lead) .product-copy h3 {
  font-size: clamp(27px, 2.4vw, 36px);
}

.product-copy > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 86px;
}

.collections {
  padding-block: clamp(92px, 11vw, 150px);
  background: var(--soft-white);
  border-block: 1px solid var(--line);
}

.collections-heading {
  margin-bottom: 66px;
}

.collection-list {
  border-top: 1px solid var(--line-strong);
}

.collection-row {
  display: grid;
  grid-template-columns: 72px minmax(300px, 0.9fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 36px;
  position: relative;
  padding: 46px 28px 46px 10px;
  border-bottom: 1px solid var(--line-strong);
  transition: background 220ms ease, padding-inline 220ms ease;
}

.collection-row:hover {
  padding-inline: 24px 14px;
}

.collection-sage:hover {
  background: rgba(156, 175, 136, 0.16);
}

.collection-heritage:hover {
  background: rgba(212, 197, 176, 0.22);
}

.collection-grace:hover {
  background: rgba(242, 196, 196, 0.18);
}

.collection-number {
  margin: 0;
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.collection-row h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
}

.collection-row > p:last-child {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.process-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.story {
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.story-mark {
  position: relative;
}

.story-mark::before {
  position: absolute;
  z-index: 0;
  inset: 9% -8% -5% 9%;
  background: rgba(156, 175, 136, 0.2);
  content: "";
}

.story-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow);
}

.story-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.035em;
}

.story-copy > p:not(.eyebrow):not(.story-signoff) {
  max-width: 650px;
  color: var(--muted-ink);
}

.story-signoff {
  margin: 28px 0 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.closing-cta {
  padding-block: clamp(100px, 13vw, 180px);
  background: var(--ink);
  color: var(--soft-white);
  text-align: center;
}

.closing-inner {
  max-width: 920px;
}

.closing-cta .eyebrow {
  color: var(--sage);
}

.closing-cta h2 {
  margin-bottom: 42px;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.9fr) auto;
  align-items: center;
  gap: 54px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--deep-sage);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-legal p {
  margin: 0;
}

/* Legal and utility pages */
.page-hero {
  padding: clamp(76px, 10vw, 132px) 0 clamp(62px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: none;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 108px);
  letter-spacing: -0.045em;
}

.page-hero .page-intro {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--muted-ink);
  font-size: 18px;
}

.page-updated {
  margin: 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: clamp(50px, 9vw, 130px);
  padding-block: clamp(68px, 9vw, 120px);
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: 112px;
}

.legal-nav p {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--muted-ink);
  font-size: 13px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--deep-sage);
}

.legal-content section {
  scroll-margin-top: 120px;
  margin-bottom: 62px;
}

.legal-content h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 46px);
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted-ink);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--forest);
}

.policy-note {
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--oat);
}

.not-found {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}

.not-found-inner {
  max-width: 700px;
}

.not-found-code {
  margin-bottom: 22px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(110px, 20vw, 220px);
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
}

.not-found p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted-ink);
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 920px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 42px;
  }

  .hero-visual {
    padding-left: 34px;
  }

  .product-editorial {
    gap: 56px 28px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .announcement {
    justify-content: space-between;
    gap: 14px;
    padding-inline: 20px;
    letter-spacing: 0.06em;
  }

  .announcement p {
    max-width: 65%;
  }

  .nav {
    min-height: 70px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .brand-wordmark {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: grid;
    align-content: start;
    gap: 0;
    position: fixed;
    z-index: 99;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 48px 20px;
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    background: var(--cream);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-menu > a {
    min-height: 62px;
    justify-content: space-between;
    padding-inline: 10px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-menu > a:not(.nav-etsy)::after {
    display: none;
  }

  .nav-etsy {
    margin-top: 24px;
    justify-content: center !important;
    background: var(--ink);
    color: var(--soft-white);
    font-family: var(--body) !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 72px 94px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero h1 em {
    display: inline;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
    padding-left: 42px;
  }

  .hero-visual::before {
    right: -80px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .product-editorial {
    grid-template-columns: 1fr 1fr;
    gap: 64px 24px;
  }

  .product-card-lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-card-lead .product-image {
    aspect-ratio: 1.2 / 1;
  }

  .product-card:not(.product-card-lead) .product-image {
    aspect-ratio: 1;
  }

  .collection-row {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

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

  .process-list {
    gap: 22px;
  }

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

  .story-mark {
    width: min(78%, 560px);
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    grid-column: auto;
  }

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

  .legal-nav {
    display: none;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .announcement {
    min-height: 42px;
    font-size: 9px;
  }

  .announcement a {
    white-space: nowrap;
  }

  .site-header {
    position: relative;
  }

  .nav-menu {
    top: 112px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    font-size: 18px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual {
    padding: 0 0 54px 22px;
  }

  .hero-visual::before {
    top: -20px;
    right: 0;
    bottom: 32px;
    left: 0;
  }

  .hero-caption {
    padding: 14px 16px;
    font-size: 9px;
  }

  .quiet-statement h2,
  .section-heading h2,
  .story-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

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

  .product-card-lead {
    grid-column: auto;
  }

  .product-card-lead .product-image,
  .product-card:not(.product-card-lead) .product-image {
    aspect-ratio: 1;
  }

  .section-action {
    margin-top: 62px;
  }

  .collection-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 36px;
  }

  .collection-row > p:last-child {
    grid-column: auto;
  }

  .collection-row:hover {
    padding-inline: 10px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-list span {
    margin-bottom: 28px;
  }

  .story-mark {
    width: 90%;
  }

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

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

  .page-hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }
}

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

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