@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #0e0e0e;
  --surface: #141414;
  --surface-2: #1d1b1b;
  --surface-3: #2a2929;
  --paper: #f4f1ef;
  --paper-muted: #ded8d5;
  --ink: #171313;
  --ink-muted: #5f4a45;
  --ink-soft: #8b635c;
  --text: #f3efed;
  --muted: #d8bcb7;
  --muted-2: #9f8d89;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 180, 168, 0.42);
  --red: #920000;
  --red-dark: #4a0404;
  --pearl: #ffb4a8;
  --shadow: rgba(0, 0, 0, 0.45);
  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.04), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-modal {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--pearl);
  color: #210000;
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.9);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.nav-shell {
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}

.brand.center {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--paper-muted);
}

.nav-links a,
.footer-links a,
.legal-nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover,
.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--pearl);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-link,
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.icon {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 80px;
}

.section.tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero {
  min-height: calc(100svh - 72px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.2), rgba(14, 14, 14, 0.76) 58%, var(--bg) 100%);
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px 112px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.kicker,
.label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  color: var(--pearl);
}

h1,
h2,
h3,
.display,
.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
}

h1,
.display {
  font-size: 68px;
  line-height: 1.04;
}

h2 {
  font-size: 48px;
  line-height: 1.12;
}

h3,
.headline {
  font-size: 30px;
  line-height: 1.18;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.small {
  color: var(--muted-2);
  font-size: 14px;
}

.hero-copy {
  animation: rise-in 620ms ease both;
}

.hero-copy .lede {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
button.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 26px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--pearl);
  color: var(--pearl);
  background: rgba(255, 255, 255, 0.06);
}

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

.button.is-success {
  background: #1f6b3c;
  border-color: #2e8e52;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 22px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.link-line {
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid,
.archive-grid,
.category-grid,
.highlight-grid {
  display: grid;
  gap: 32px;
}

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

.archive-grid,
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.74);
  padding: 16px;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
}

.product-media.landscape {
  aspect-ratio: 4 / 5;
}

.product-media img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease, opacity 700ms ease;
}

.product-card:hover img,
.category-card:hover img,
.gallery-main:hover img {
  transform: scale(1.045);
}

.product-body {
  padding-top: 20px;
}

.price-row {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.price {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge.red {
  background: var(--red);
}

.concept {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
  color: var(--text);
}

.concept-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  text-align: center;
}

.concept-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pearl);
  background: var(--surface);
  font-size: 30px;
}

.category-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.category-card img {
  opacity: 0.62;
  filter: grayscale(1);
}

.category-card:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.category-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
}

.highlight-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.72);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.highlight-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(29, 27, 27, 0.92);
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.72);
  opacity: 0.78;
  transition: transform 700ms ease, filter 700ms ease, opacity 700ms ease;
}

.highlight-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0.1);
  opacity: 1;
}

.highlight-card-body {
  display: flex;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.highlight-card-body .label {
  color: var(--pearl);
}

.highlight-card-body h3 {
  font-size: 28px;
}

.highlight-card-body p {
  margin: 0;
  color: var(--muted);
}

.callout {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
}

.callout-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 48px;
  background: rgba(14, 14, 14, 0.64);
  text-align: center;
}

.archive {
  position: relative;
  isolation: isolate;
  color: var(--text);
}

.archive-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.archive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.26;
}

.archive::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(14, 14, 14, 0.76);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 80px 64px;
}

.page-hero.light {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
  padding-left: max(80px, calc((100vw - var(--max)) / 2 + 80px));
  padding-right: max(80px, calc((100vw - var(--max)) / 2 + 80px));
}

.page-hero.light .lede,
.light .small {
  color: var(--ink-muted);
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.filter {
  min-height: 36px;
  padding: 9px 22px;
  border: 1px solid rgba(146, 0, 0, 0.55);
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.light-section {
  background: var(--paper);
  color: var(--ink);
}

.light-section .lede,
.light-section ol.lede,
.light-section .small {
  color: var(--ink-muted);
}

.light-section .kicker {
  color: #b33228;
}

.light-section .product-card {
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(34, 25, 25, 0.28);
}

.light-section .highlight-card {
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(34, 25, 25, 0.24);
}

.light-section .highlight-card:hover {
  border-color: rgba(146, 0, 0, 0.46);
  background: rgba(255, 255, 255, 0.76);
}

.light-section .highlight-card-body .label {
  color: var(--red);
}

.light-section .product-body p,
.light-section .section-heading p,
.light-section .highlight-card-body p {
  color: var(--ink-soft);
}

.light-section .button.secondary {
  color: var(--ink);
  border-color: rgba(23, 19, 19, 0.42);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.gallery {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
}

.gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 16px;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumbs button[aria-current="true"] {
  border-color: var(--pearl);
}

.gallery-thumbs img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
}

.product-panel {
  position: sticky;
  top: 104px;
}

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

.accordion {
  border: 1px solid var(--line);
  margin-top: 16px;
  background: var(--surface-2);
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 18px;
}

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

.accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 5.6vw, 88px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 104px;
}

.image-block {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--paper);
}

.form-panel {
  border: 1px solid var(--line);
  background: #090909;
  color: var(--text);
  padding: 44px;
}

.form-panel h2,
.admin-box h2,
.checkout-summary h2,
.contact-box h2 {
  color: var(--text);
}

.form-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.form-section:first-child {
  padding-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.input,
.textarea,
.select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 0;
  outline: none;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(243, 239, 237, 0.58);
}

.textarea {
  min-height: 112px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-bottom-color: var(--pearl);
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  color: #8ee0a4;
  font-weight: 700;
}

.bespoke-page {
  background: var(--paper);
  color: var(--ink);
}

.bespoke-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 118px) 80px clamp(34px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.bespoke-hero-copy {
  max-width: 760px;
}

.bespoke-hero-copy .lede,
.materials-intro p,
.bespoke-request-copy p {
  color: var(--ink-muted);
}

.bespoke-actions,
.bespoke-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bespoke-hero-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(34, 25, 25, 0.24);
  background: #0d0d0d;
}

.bespoke-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bespoke-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.bespoke-steps article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(34, 25, 25, 0.24);
  border-bottom: 1px solid rgba(34, 25, 25, 0.24);
}

.bespoke-steps article + article {
  border-left: 1px solid rgba(34, 25, 25, 0.24);
}

.bespoke-steps span,
.material-list span {
  display: block;
  margin-bottom: 28px;
  color: #9a2b23;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bespoke-steps h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.bespoke-steps p {
  margin: 0;
  color: var(--ink-muted);
}

.materials-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) max(80px, calc((100vw - var(--max)) / 2 + 80px));
  background: #111010;
  color: var(--text);
}

.materials-intro {
  max-width: 780px;
}

.materials-intro h2 {
  max-width: 760px;
}

.materials-intro p {
  color: var(--paper-muted);
}

.materials-band .kicker {
  color: var(--pearl);
}

.materials-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
}

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

.material-list div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.material-list span {
  margin-bottom: 10px;
  color: var(--pearl);
}

.material-list strong {
  display: block;
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
}

.bespoke-request {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 108px) 80px clamp(72px, 9vw, 128px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.bespoke-request-copy {
  position: sticky;
  top: 104px;
}

.bespoke-form {
  background: #090909;
  color: var(--text);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(34, 25, 25, 0.2);
  box-shadow: 0 30px 80px rgba(34, 25, 25, 0.16);
}

.bespoke-form-section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.bespoke-form-section:last-of-type {
  margin-bottom: 0;
}

.bespoke-form-section h3 {
  margin-bottom: 18px;
  color: var(--text);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

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

.choice-pill {
  position: relative;
  display: block;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 13px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.choice-pill input:checked + span {
  border-color: var(--pearl);
  background: var(--red);
  color: white;
}

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

.choice-pill:hover span {
  transform: translateY(-1px);
  border-color: rgba(255, 180, 168, 0.62);
}

.bespoke-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.bespoke-form .label {
  color: var(--text);
}

.bespoke-form .textarea {
  min-height: 148px;
}

.bespoke-form .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
}

.material-modal[hidden] {
  display: none;
}

.material-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end center;
  padding: 20px;
}

.material-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.material-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

.material-modal-panel .kicker {
  color: #b33228;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(34, 25, 25, 0.2);
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.material-tips {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.material-tips li {
  padding: 18px 0;
  border-top: 1px solid rgba(34, 25, 25, 0.18);
  color: var(--ink-muted);
}

.material-tips strong {
  color: var(--ink);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  background: var(--surface-2);
  padding: 34px;
}

.summary-product {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.summary-product img {
  aspect-ratio: 1;
  object-fit: cover;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.option {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  margin-top: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  align-self: start;
}

.legal-content {
  max-width: 820px;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-content p {
  color: var(--paper-muted);
  font-size: 18px;
}

.legal-content p,
.legal-content a,
.legal-nav a {
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.concept .lede,
.archive .lede,
.callout .lede,
.site-footer .small {
  color: var(--paper-muted);
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1.1fr 3fr;
  gap: 64px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.45);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2 + 80px));
  background: #252525;
  box-shadow: 0 -18px 42px var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  max-width: 520px;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-box {
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--surface-2);
}

.admin-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px;
  align-items: start;
}

.admin-box {
  border: 1px solid var(--line);
  background: #090909;
  padding: 32px;
}

.admin-preview {
  position: sticky;
  top: 104px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.admin-output {
  width: 100%;
  min-height: 210px;
  margin-top: 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
  color: var(--paper);
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  resize: vertical;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    padding: 0 32px;
  }

  .section,
  .page-hero,
  .hero-inner,
  .footer-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-hero.light {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner,
  .product-detail,
  .two-column,
  .checkout-grid,
  .legal-layout,
  .bespoke-hero,
  .materials-band,
  .bespoke-request {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .sticky-note,
  .checkout-summary,
  .legal-nav,
  .bespoke-request-copy {
    position: static;
  }

  .bespoke-hero,
  .bespoke-steps,
  .bespoke-request {
    padding-left: 32px;
    padding-right: 32px;
  }

  .materials-band {
    padding-left: 32px;
    padding-right: 32px;
  }

  .bespoke-steps {
    grid-template-columns: 1fr;
  }

  .bespoke-steps article + article {
    border-left: 0;
    border-top: 0;
  }

  .bespoke-hero-media {
    aspect-ratio: 16 / 10;
  }

  .legal-nav {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

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

  .archive-grid,
  .category-grid,
  .highlight-grid,
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    height: 64px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .brand {
    font-size: 30px;
  }

  .brand.center {
    justify-self: auto;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(14, 14, 14, 0.98);
    padding: 12px 20px 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .icon-link:first-child {
    display: none;
  }

  .section,
  .page-hero,
  .hero-inner,
  .footer-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-inner {
    padding-top: 96px;
    padding-bottom: 44px;
    gap: 26px;
  }

  h1,
  .display {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(31px, 9vw, 36px);
  }

  h3,
  .headline {
    font-size: 26px;
  }

  .lede {
    font-size: 17px;
    line-height: 1.55;
  }

  ol.lede {
    padding-left: 1.35rem;
  }

  .product-grid,
  .archive-grid,
  .category-grid,
  .highlight-grid,
  .concept-grid,
  .form-grid,
  .bespoke-inline-fields,
  .choice-grid.compact,
  .choice-grid.delivery,
  .footer-shell,
  .footer-links,
  .contact-band,
  .admin-simple {
    grid-template-columns: 1fr;
  }

  .admin-preview {
    position: static;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .legal-content p {
    font-size: 16px;
  }

  .legal-content h1 {
    font-size: clamp(34px, 9.8vw, 40px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .legal-nav {
    gap: 10px;
  }

  .legal-nav a {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(3, 86px);
    overflow-x: auto;
  }

  .form-panel,
  .callout-box,
  .checkout-summary {
    padding: 22px;
  }

  .two-column {
    gap: 30px;
  }

  .notice {
    padding: 16px;
    font-size: 15px;
  }

  .form-section {
    padding: 28px 0;
  }

  .form-section h2 {
    font-size: 31px;
  }

  .input,
  .textarea,
  .select {
    min-height: 48px;
    font-size: 16px;
  }

  .hero-actions .button,
  .form-panel .button,
  .bespoke-actions .button,
  .bespoke-submit .button,
  .checkout-grid .button {
    width: 100%;
  }

  .bespoke-hero,
  .bespoke-steps,
  .bespoke-request {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bespoke-hero {
    padding-top: 48px;
    padding-bottom: 30px;
    gap: 24px;
  }

  .bespoke-hero-media {
    aspect-ratio: 16 / 11;
  }

  .bespoke-actions,
  .bespoke-submit {
    margin-top: 22px;
  }

  .bespoke-steps {
    padding-bottom: 52px;
  }

  .bespoke-steps article {
    min-height: 0;
    padding: 24px 0;
  }

  .bespoke-steps span,
  .material-list span {
    margin-bottom: 12px;
  }

  .materials-band {
    padding: 52px 20px;
  }

  .material-list div {
    padding: 20px 0;
  }

  .bespoke-request {
    padding-top: 52px;
    padding-bottom: 72px;
    gap: 26px;
  }

  .bespoke-form {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .bespoke-form-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .choice-grid {
    gap: 9px;
  }

  .choice-pill span {
    min-height: 50px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .material-modal {
    align-items: end;
    padding: 10px;
  }

  .material-modal-panel {
    max-height: calc(100svh - 20px);
    padding: 34px 22px 26px;
  }

  .image-block {
    display: none;
  }

  .product-card {
    padding: 12px;
  }

  .highlight-grid {
    gap: 20px;
  }

  .highlight-card img {
    aspect-ratio: 16 / 10;
  }

  .highlight-card-body {
    min-height: auto;
    padding: 20px;
  }

  .highlight-card-body h3 {
    font-size: 25px;
  }

  .cookie-banner {
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 22px 20px;
  }

  .cookie-banner.is-visible {
    display: flex;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    width: 100%;
  }
}
