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

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

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

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

:root {
  --milk: #ece8df;
  --paper: #f6f3ec;
  --chalk: #ddd7cb;
  --graphite: #20211f;
  --muted: #4f4e49;
  --clay: #796e5f;
  --sage: #79836f;
  --accent: #7a343f;
  --accent-dark: #4e252c;
  --line: rgba(32, 33, 31, 0.16);
  --surface: #f3f0e9;
  --surface-alt: #e4dfd5;
  --surface-dark: #242522;
  --hero-bg: var(--surface);
  --proof-bg: var(--surface-alt);
  --intro-bg: var(--surface);
  --objects-bg: var(--surface-alt);
  --process-bg: var(--surface);
  --preorder-bg: var(--surface-alt);
  --terms-bg: var(--surface);
  --audience-bg: var(--surface-alt);
  --request-bg: var(--surface);
  --final-bg: var(--surface-dark);
  --radius: 4px;
  --max-page: 1500px;
  --font-body: "Avenir Next", "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Unbounded", "Helvetica Neue", "Avenir Next", "Manrope", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 35, 32, 0.06) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  content: "";
  opacity: 0.36;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: clamp(18px, 2.2vw, 28px);
  min-height: 76px;
  padding: 5px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 232, 223, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand__logo {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand__name {
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

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

.nav a,
.header-link {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.nav a:hover,
.header-link:hover {
  background: var(--graphite);
  color: var(--paper);
}

.header-link {
  justify-self: end;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.header-link:hover {
  background: var(--accent-dark);
  color: var(--paper);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 96px);
  min-height: auto;
  align-items: center;
  max-width: var(--max-page);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 64px) clamp(18px, 4vw, 56px);
  background: var(--hero-bg);
  box-shadow: 0 0 0 100vmax var(--hero-bg);
  clip-path: inset(0 -100vmax);
}

.hero__media {
  position: relative;
  height: min(66dvh, 700px);
  min-height: 0;
}

.product-photo {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: var(--chalk);
}

.hero__copy {
  min-width: 0;
  max-width: 640px;
}

.kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 440;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.96;
}

h1 span {
  display: block;
}

.hero-title__long {
  font-size: 0.62em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.25vw, 47px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 500;
  line-height: 1.12;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--graphite);
  border-radius: 999px;
  cursor: pointer;
  padding: 14px 20px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

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

.button:active {
  transform: translateY(1px);
}

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

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

.button--ghost {
  background: transparent;
  color: var(--graphite);
}

.proof-strip,
.intro,
.objects,
.process,
.preorder,
.trust,
.preorder-terms,
.audience,
.request,
.final-cta {
  padding: clamp(68px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.proof-strip,
.intro,
.objects,
.process,
.preorder,
.trust,
.preorder-terms,
.audience,
.request,
.final-cta {
  max-width: var(--max-page);
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--proof-bg);
  box-shadow: 0 0 0 100vmax var(--proof-bg);
  clip-path: inset(0 -100vmax);
}

.proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 0 clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip article:first-child {
  padding-left: 0;
}

.proof-strip article:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 430;
  line-height: 1;
}

.proof-strip span {
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.intro {
  display: block;
  border-bottom: 1px solid rgba(246, 243, 236, 0.16);
  color: var(--paper);
  background: var(--surface-dark);
  box-shadow: 0 0 0 100vmax var(--surface-dark);
  clip-path: inset(0 -100vmax);
}

.intro__statement h2 {
  min-width: 0;
  max-width: none;
  margin-right: auto;
  margin-bottom: clamp(36px, 5vw, 64px);
  margin-left: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(36px, 4.1vw, 58px);
}

.intro__text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 86px);
  max-width: 980px;
  margin: 0 auto;
  color: rgba(246, 243, 236, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  text-align: left;
}

.intro__text p {
  margin-bottom: 0;
}

.objects {
  background: var(--objects-bg);
  box-shadow: 0 0 0 100vmax var(--objects-bg);
  clip-path: inset(0 -100vmax);
}

.section-title {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title .section-label {
  max-width: none;
  color: var(--accent);
  font-size: 12px;
}

.section-title p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.section-title--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title--center p {
  margin-right: auto;
  margin-left: auto;
}

.gallery {
  display: grid;
  grid-template-areas:
    "vase vase texture bowl"
    "vase vase coffee shelf"
    "object object coffee shelf";
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(220px, 22vw, 330px));
  gap: clamp(12px, 1.4vw, 22px);
  align-items: stretch;
  background: transparent;
}

.gallery__item {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.gallery__item:nth-child(1) {
  grid-area: vase;
}

.gallery__item:nth-child(2) {
  grid-area: texture;
}

.gallery__item:nth-child(3) {
  grid-area: bowl;
}

.gallery__item:nth-child(4) {
  grid-area: coffee;
}

.gallery__item:nth-child(5) {
  grid-area: shelf;
}

.gallery__item:nth-child(6) {
  grid-area: object;
}

.gallery__item img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
}

.gallery__item--large,
.gallery__item--wide {
  margin-top: 0;
}

figcaption {
  min-height: 38px;
  margin-top: 8px;
  padding: 0;
  color: var(--graphite);
  font-size: 13px;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  max-width: none;
  background: var(--process-bg);
  box-shadow: 0 0 0 100vmax var(--process-bg);
  clip-path: inset(0 -100vmax);
}

.process > * {
  max-width: 1500px;
}

.process__media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.process__content {
  min-width: 0;
  max-width: 760px;
}

.process__content > p {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.process__content .section-label,
.audience__content .section-label,
.request__panel .section-label {
  margin-bottom: 18px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article,
.audience__cards article {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-list strong,
.audience__cards strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.process-list span,
.audience__cards span {
  color: var(--muted);
  font-weight: 500;
}

.preorder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preorder {
  background: var(--preorder-bg);
  box-shadow: 0 0 0 100vmax var(--preorder-bg);
  clip-path: inset(0 -100vmax);
}

.preorder-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: clamp(26px, 3.2vw, 44px);
}

.preorder-grid article:last-child {
  border-right: 0;
}

.preorder-grid span {
  display: block;
  margin-bottom: clamp(38px, 4vw, 58px);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preorder-grid p {
  color: var(--muted);
  font-weight: 500;
}

.trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  color: var(--paper);
  background: var(--surface-dark);
  box-shadow: 0 0 0 100vmax var(--surface-dark);
  clip-path: inset(0 -100vmax);
}

.trust .section-label {
  color: #c48f98;
}

.trust__heading {
  max-width: 520px;
}

.trust__heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.6vw, 52px);
}

.trust__list {
  display: grid;
}

.trust__list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  padding: 24px 0;
  border-top: 1px solid rgba(246, 243, 236, 0.2);
}

.trust__list article:last-child {
  border-bottom: 1px solid rgba(246, 243, 236, 0.2);
}

.trust__list strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 550;
}

.trust__list span {
  color: rgba(246, 243, 236, 0.7);
}

.preorder-terms {
  border-top: 0;
  background: var(--terms-bg);
  box-shadow: 0 0 0 100vmax var(--terms-bg);
  clip-path: inset(0 -100vmax);
}

.terms-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-summary article {
  min-height: 240px;
  border-right: 1px solid var(--line);
  padding: clamp(26px, 3.2vw, 44px);
}

.terms-summary article:last-child {
  border-right: 0;
}

.terms-summary span {
  display: block;
  margin-bottom: clamp(32px, 4vw, 50px);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-summary strong {
  display: block;
  max-width: 520px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.08;
}

.terms-summary p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 500;
}

.terms-summary small {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13px;
}

.terms-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-details details {
  border-right: 1px solid var(--line);
}

.terms-details details:last-child {
  border-right: 0;
}

.terms-details summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 22px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.12;
}

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

.terms-details summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: "+";
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
}

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

.terms-details summary:focus-visible {
  outline: 3px solid rgba(122, 52, 63, 0.22);
  outline-offset: -3px;
}

.terms-details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 20px 22px 24px;
  color: var(--muted);
  font-weight: 500;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--audience-bg);
  box-shadow: 0 0 0 100vmax var(--audience-bg);
  clip-path: inset(0 -100vmax);
}

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

.audience__content p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  max-width: none;
  background: var(--request-bg);
  box-shadow: 0 0 0 100vmax var(--request-bg);
  clip-path: inset(0 -100vmax);
}

.request__image,
.request__panel {
  max-width: 720px;
}

.request__image img {
  height: 100%;
  border-radius: var(--radius);
}

.request__panel {
  min-width: 0;
  max-width: 720px;
}

.request__panel > p {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.preorder-form {
  display: grid;
  gap: 16px;
}

.preorder-form label {
  display: grid;
  gap: 8px;
}

.preorder-form label span {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 600;
}

.preorder-form input,
.preorder-form select,
.preorder-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 35, 32, 0.28);
  border-radius: var(--radius);
  background: rgba(236, 232, 223, 0.82);
  color: var(--graphite);
  padding: 14px 15px;
  outline: none;
}

.preorder-form textarea {
  resize: vertical;
}

.preorder-form input:focus,
.preorder-form select:focus,
.preorder-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 52, 63, 0.14);
}

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

.form-status {
  min-height: 22px;
  color: var(--accent);
}

.form-note a {
  border-bottom: 1px solid currentColor;
  color: var(--graphite);
}

.final-cta {
  text-align: center;
  color: var(--paper);
  background: var(--final-bg);
  box-shadow: 0 0 0 100vmax var(--final-bg);
  clip-path: inset(0 -100vmax);
}

.legal-hero {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 136px) clamp(18px, 4vw, 56px) clamp(58px, 7vw, 96px);
  background: var(--request-bg);
  box-shadow: 0 0 0 100vmax var(--request-bg);
  clip-path: inset(0 -100vmax);
}

.legal-hero div {
  max-width: 980px;
}

.legal-hero h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
}

.legal-hero p:not(.kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
}

.legal-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  max-width: var(--max-page);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.legal-copy details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(236, 232, 223, 0.46);
  overflow: hidden;
}

.legal-copy details[open] {
  background: rgba(236, 232, 223, 0.72);
}

.legal-copy summary {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  list-style: none;
  padding: clamp(20px, 3vw, 32px);
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 520;
  line-height: 1.08;
}

.legal-copy summary::-webkit-details-marker {
  display: none;
}

.legal-copy summary::after {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(32, 33, 31, 0.22);
  border-radius: 999px;
  color: var(--accent);
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.legal-copy details[open] summary::after {
  content: "-";
}

.legal-copy summary:focus-visible {
  outline: 3px solid rgba(122, 52, 63, 0.22);
  outline-offset: -3px;
}

.legal-copy details > div {
  border-top: 1px solid var(--line);
  padding: 0 clamp(20px, 3vw, 32px) clamp(22px, 3vw, 34px);
}

.legal-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy strong {
  color: var(--graphite);
  font-weight: 600;
}

.legal-copy__note {
  margin-top: 22px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.final-cta div {
  max-width: 850px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 590px;
  margin: 0 auto 28px;
  color: rgba(246, 243, 236, 0.7);
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(246, 243, 236, 0.16);
  color: rgba(246, 243, 236, 0.68);
  background: var(--surface-dark);
  font-size: 14px;
}

.footer a {
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer__logo {
  display: block;
  width: 74px;
  height: 74px;
  filter: invert(1);
  object-fit: contain;
}

.footer-brand__name {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .proof-strip,
  .intro,
  .process,
  .trust,
  .audience,
  .request {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    min-height: 520px;
  }

  .proof-strip {
    gap: 20px;
  }

  .proof-strip article {
    min-height: auto;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .audience__content {
    position: static;
  }

  .trust__heading {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 62px;
  }

  .site-header {
    min-height: 62px;
    padding: 5px 16px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .brand__name {
    font-size: 15px;
  }

  .header-link {
    padding: 8px 10px;
  }

  .hero,
  .proof-strip,
  .intro,
  .objects,
  .process,
  .preorder,
  .trust,
  .preorder-terms,
  .audience,
  .request,
  .final-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    gap: 26px;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .intro,
  .objects,
  .process,
  .preorder,
  .trust,
  .preorder-terms,
  .audience,
  .request,
  .final-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.1;
  }

  .hero__media {
    height: 280px;
    min-height: 0;
  }

  .hero__lead {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .kicker {
    margin-bottom: 16px;
  }

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

  .terms-summary,
  .terms-details {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-areas:
      "vase vase"
      "texture bowl"
      "coffee coffee"
      "shelf object";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 18px 10px;
  }

  .gallery__item img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .gallery__item--large img,
  .gallery__item--wide img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .gallery__item:nth-child(2) figcaption,
  .gallery__item:nth-child(5) figcaption,
  .gallery__item:nth-child(6) figcaption {
    font-size: 12px;
  }

  .intro__statement h2 {
    font-size: clamp(28px, 8vw, 36px);
    white-space: normal;
  }

  .intro__text {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .preorder-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preorder-grid article:last-child {
    border-bottom: 0;
  }

  .terms-summary article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .terms-summary article:last-child {
    border-bottom: 0;
  }

  .terms-summary span {
    margin-bottom: 28px;
  }

  .trust__list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .terms-details details {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .terms-details details:last-child {
    border-bottom: 0;
  }

  .preorder-grid span {
    margin-bottom: 30px;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section-label {
    margin-bottom: 14px;
  }

  .request {
    gap: 38px;
  }

  .request__image img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .process-list article,
  .audience__cards article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-copy summary {
    min-height: 82px;
    padding: 20px;
  }

  .legal-copy details > div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer {
    display: grid;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .footer div:last-child {
    justify-content: flex-start;
  }

  .footer__logo {
    width: 58px;
    height: 58px;
  }

  .footer-brand__name {
    font-size: 17px;
  }
}
