:root {
  --ink: #17201b;
  --muted: #66736a;
  --paper: #f4f1e8;
  --panel: #ffffff;
  --panel-soft: #ebe7db;
  --line: #d8d1c1;
  --river: #1e6760;
  --moss: #3f5c45;
  --ember: #c85a2a;
  --brass: #a87a30;
  --deep: #0f1714;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(18, 27, 23, 0.13);
  --max: 1180px;
  --display: Georgia, "Times New Roman", serif;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 32, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 27, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 16px;
  right: clamp(12px, 3vw, 34px);
  left: clamp(12px, 3vw, 34px);
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 23, 20, 0.18);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(244, 247, 243, 0.94);
  box-shadow: 0 1px 0 rgba(18, 27, 23, 0.11);
  border-color: rgba(23, 32, 27, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-weight: 900;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.is-solid .brand-subtitle {
  color: var(--muted);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 34px);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.cart-button,
.button,
.chip,
.icon-button {
  border-radius: 8px;
  min-height: 42px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.is-solid .cart-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  background-image: url("assets/hero-handmade-lures.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 20, 0.9) 0%, rgba(15, 23, 20, 0.7) 44%, rgba(15, 23, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 23, 20, 0.5), rgba(15, 23, 20, 0));
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 170px;
  padding-bottom: 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc17f;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 82px;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ember);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.14);
}

.button-primary:hover {
  background: #bd4d1d;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 18px 20px;
  background: rgba(15, 23, 20, 0.5);
}

.hero-stats dt {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.35;
}

.announcement {
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.announcement p {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.craft-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    var(--paper);
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.copy-block > p:not(.eyebrow),
.section-heading p,
.ledger-list p,
.process-grid p,
.custom-layout p,
.policy-grid p,
.faq-list p,
.site-footer p,
.product-card p,
.cart-footer p,
.modal-copy,
.spec-list dd,
.empty-products p,
.atelier-visual span {
  color: var(--muted);
  line-height: 1.58;
}

.craft-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.craft-points article,
.ledger-list article,
.proof-grid article,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.craft-points article {
  min-height: 188px;
  padding: 20px;
  box-shadow: 0 1px 0 rgba(18, 27, 23, 0.04);
}

.craft-points span,
.ledger-list span,
.steps span {
  color: var(--brass);
  font-weight: 950;
}

.craft-points h3,
.ledger-list strong {
  font-family: var(--display);
  font-size: 21px;
}

.craft-points p {
  margin-bottom: 0;
}

.atelier-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 28px 70px rgba(18, 27, 23, 0.18);
}

.atelier-photo {
  min-height: 440px;
  background:
    linear-gradient(0deg, rgba(15, 23, 20, 0.08), rgba(15, 23, 20, 0)),
    url("assets/hero-handmade-lures.png") center / cover;
}

.atelier-visual figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  color: var(--white);
}

.atelier-visual span {
  color: rgba(255, 255, 255, 0.72);
}

.shop-section {
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0), rgba(244, 241, 232, 0.86)),
    var(--panel);
}

.ledger-section {
  background: var(--deep);
  color: var(--white);
}

.ledger-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.ledger-heading {
  position: sticky;
  top: 110px;
}

.ledger-heading .eyebrow {
  color: #ffc17f;
}

.ledger-list {
  display: grid;
  gap: 12px;
}

.ledger-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.ledger-list strong {
  display: block;
  margin-bottom: 6px;
}

.ledger-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(280px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.batch-note {
  margin: 12px 0 0;
  color: var(--moss);
  font-weight: 860;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(244, 241, 232, 0.76);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
}

.chip.is-active,
.chip:hover {
  color: var(--white);
  background: var(--river);
  border-color: var(--river);
}

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

.product-grid.is-single {
  grid-template-columns: minmax(280px, 460px);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 27, 23, 0.07);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 27, 23, 0.12);
}

.product-image {
  position: relative;
  min-height: 250px;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(217, 95, 43, 0.16), rgba(31, 107, 103, 0.18)),
    url("assets/hero-handmade-lures.png") center / cover;
}

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 23, 20, 0.6), transparent 52%);
}

.product-badge,
.product-type {
  position: absolute;
  z-index: 1;
  border-radius: 6px;
  color: var(--white);
  background: rgba(15, 23, 20, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badge {
  top: 12px;
  left: 12px;
  padding: 6px 9px;
}

.product-type {
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-title {
  min-height: 0;
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.05;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 950;
}

.target {
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: var(--panel-soft);
}

.batch-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.batch-assurance article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 232, 0.72);
}

.batch-assurance span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
}

.batch-assurance p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.video-section {
  color: var(--white);
  background: var(--deep);
}

.video-section[hidden] {
  display: none;
}

.video-section .eyebrow {
  color: #ffc17f;
}

.video-section p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.video-shell,
.product-video-block {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-shell {
  aspect-ratio: 16 / 9;
}

.product-video-block {
  aspect-ratio: 16 / 9;
  margin: 18px 0;
  border-color: var(--line);
}

.video-shell iframe,
.video-shell video,
.product-video-block iframe,
.product-video-block video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 95, 43, 0.34), rgba(31, 107, 103, 0.36)),
    url("assets/hero-handmade-lures.png") center / cover;
  font-weight: 900;
}

.empty-products {
  max-width: 680px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.empty-products p {
  margin-bottom: 0;
}

.process-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 20, 0.3), rgba(15, 23, 20, 0)),
    var(--river);
}

.process-band .eyebrow,
.process-band p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 54px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.steps strong {
  font-family: var(--display);
  font-size: 22px;
}

.steps p {
  grid-column: 2;
  margin: 4px 0 0;
}

.proof-section {
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 14px;
}

.proof-grid article {
  padding: 24px;
}

.proof-grid article:first-child {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.proof-grid article:first-child .eyebrow {
  color: #ffc17f;
}

.proof-grid article:first-child h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.custom-section {
  background: var(--panel);
}

.custom-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.7fr);
  gap: 54px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.shipping-section {
  background: var(--paper);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.policy-grid article {
  padding: 26px;
}

.policy-grid h2 {
  font-size: 31px;
}

.policy-grid ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.faq-section {
  background: var(--panel);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(300px, 1fr);
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 232, 0.78);
}

summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

code {
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(31, 107, 103, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(16px, 4vw, 42px);
  color: var(--white);
  background: var(--deep);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.modal,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 20, 0.62);
}

.modal-panel {
  position: relative;
  width: min(980px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 28px;
  line-height: 1;
}

.modal-panel > .icon-button {
  position: sticky;
  top: 12px;
  z-index: 2;
  float: right;
  margin: 12px;
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  padding: 28px;
}

.modal-visual {
  min-height: 460px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 95, 43, 0.12), rgba(65, 95, 70, 0.16)),
    url("assets/hero-handmade-lures.png") center / cover;
}

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

.spec-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.cart-drawer {
  pointer-events: none;
  background: rgba(15, 23, 20, 0);
  transition: background 180ms ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
  background: rgba(15, 23, 20, 0.58);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-head,
.cart-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-size: 28px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 900;
}

.cart-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.cart-footer .button {
  width: 100%;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .site-nav {
    display: none;
  }

  .craft-layout,
  .section-heading,
  .ledger-layout,
  .video-layout,
  .process-grid,
  .custom-layout,
  .faq-layout,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .craft-points,
  .batch-assurance,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .ledger-heading {
    position: static;
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-stats,
  .steps,
  .ledger-list article,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .ledger-list p {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 9px 10px;
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy {
    display: block;
  }

  .brand-subtitle {
    display: none;
  }

  .cart-button span:first-child {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 23, 20, 0.9) 0%, rgba(15, 23, 20, 0.72) 100%),
      linear-gradient(0deg, rgba(15, 23, 20, 0.32), rgba(15, 23, 20, 0));
  }

  .hero-content {
    width: min(100% - 24px, var(--max));
    padding-top: 126px;
  }

  h1 {
    max-width: 330px;
    font-size: 41px;
    line-height: 0.98;
  }

  h2 {
    max-width: 340px;
    font-size: 29px;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 336px;
    font-size: 16px;
  }

  .announcement p {
    width: min(336px, 100% - 32px);
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: anywhere;
  }

  .copy-block > p:not(.eyebrow),
  .section-heading p,
  .ledger-list p,
  .craft-points p,
  .process-grid p,
  .custom-layout p,
  .policy-grid p,
  .faq-list p,
  .product-card p,
  .cart-footer p,
  .empty-products p,
  .atelier-visual span,
  .product-title,
  .product-type,
  .target,
  li {
    max-width: 336px;
    overflow-wrap: anywhere;
  }

  .toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 336px);
  }

  .chip {
    width: 100%;
    padding: 0 8px;
  }

  .craft-points,
  .atelier-visual,
  .ledger-list,
  .video-shell,
  .product-grid,
  .batch-assurance,
  .process-grid,
  .steps,
  .proof-grid,
  .quote-form,
  .policy-grid,
  .faq-list {
    width: min(100%, 336px);
  }

  .hero-actions,
  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-inner {
    width: min(100% - 24px, var(--max));
  }

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

  .product-image {
    min-height: 260px;
  }

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

  .modal-body {
    padding: 16px;
  }

  .modal-visual {
    min-height: 300px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

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

  .cart-line,
  .qty-controls {
    grid-template-columns: 1fr;
  }

  .qty-controls {
    display: grid;
  }
}
