:root {
  --ink: #171713;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --cedar: #9b5d33;
  --walnut: #3b2a21;
  --moss: #3e5b46;
  --steel: #526477;
  --brass: #c89a3d;
  --line: rgba(23, 23, 19, 0.14);
  --shadow: 0 22px 70px rgba(35, 28, 20, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(200, 154, 61, 0.32);
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fffaf0;
  background: linear-gradient(180deg, rgba(13, 11, 9, 0.76), rgba(13, 11, 9, 0.1));
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(23, 23, 19, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform 180ms ease;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.62);
  background: rgba(255, 250, 240, 0.12);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.brand small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 250, 240, 0.13);
  color: #fffaf0;
  transform: translateY(-1px);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cart-button:hover {
  border-color: rgba(255, 250, 240, 0.6);
  background: rgba(255, 250, 240, 0.18);
  transform: translateY(-1px);
}

.cart-button span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.32);
  background: rgba(255, 250, 240, 0.1);
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 6vw, 84px) 70px;
  color: var(--paper-strong);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  animation: heroDrift 18s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.82) 0%, rgba(10, 8, 6, 0.48) 48%, rgba(10, 8, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 23, 19, 0.74) 0%, rgba(23, 23, 19, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: riseIn 800ms var(--ease) 140ms both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 28, 20, 0.16);
}

.button.primary {
  background: var(--brass);
  color: #171713;
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.45);
  color: #fffaf0;
}

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

.button.wide {
  width: 100%;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: 42px;
  z-index: 1;
  width: min(320px, calc(100% - 36px));
  border-left: 3px solid var(--brass);
  padding: 14px 0 14px 18px;
  color: rgba(255, 250, 240, 0.8);
  animation: fadeSlideIn 760ms var(--ease) 360ms both;
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note strong {
  color: #fffaf0;
  font-size: 1.18rem;
}

.intro-band,
.section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.intro-band {
  background: var(--walnut);
  color: var(--paper-strong);
}

.intro-grid,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.intro-grid p:last-child,
.split-copy > p,
.contact-section > div > p {
  color: rgba(23, 23, 19, 0.72);
  font-size: 1.08rem;
}

.intro-grid p:last-child {
  color: rgba(255, 250, 240, 0.75);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.catalog-note {
  color: rgba(23, 23, 19, 0.68);
  font-size: 1.05rem;
}

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

.product-card {
  background: var(--paper-strong);
  box-shadow: 0 1px 0 var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card p,
.product-card span {
  color: rgba(23, 23, 19, 0.62);
}

.product-card p {
  margin-bottom: 6px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.process-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.process-list div:hover {
  border-color: rgba(62, 91, 70, 0.34);
  transform: translateX(4px);
}

.process-list span {
  grid-row: span 2;
  color: var(--steel);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(23, 23, 19, 0.64);
}

.quote-panel {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background: #f0efe8;
  max-width: 460px;
  justify-self: end;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.quote-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(35, 28, 20, 0.22);
}

.quote-panel label,
.contact-form label {
  display: block;
  margin: 14px 0 6px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-panel h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.quote-panel .button {
  min-height: 42px;
  padding: 11px 14px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.22);
  border-radius: 3px;
  background: #fffaf0;
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

select {
  appearance: none;
  cursor: pointer;
  background:
    linear-gradient(135deg, transparent 50%, var(--moss) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(45deg, var(--moss) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    linear-gradient(90deg, transparent calc(100% - 48px), rgba(62, 91, 70, 0.1) calc(100% - 48px)),
    #fffaf0;
  padding-right: 56px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

select:hover {
  border-color: rgba(62, 91, 70, 0.42);
  background-color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 20px rgba(35, 28, 20, 0.08);
  transform: translateY(-1px);
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(62, 91, 70, 0.72);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(62, 91, 70, 0.13);
  outline: none;
}

select:focus {
  background:
    linear-gradient(135deg, transparent 50%, var(--brass) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(45deg, var(--brass) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    linear-gradient(90deg, transparent calc(100% - 48px), rgba(200, 154, 61, 0.16) calc(100% - 48px)),
    #fffdf8;
}

select option {
  background: #fffaf0;
  color: var(--ink);
}

.quote-panel select,
.quote-panel input {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.quote-panel select {
  padding-right: 50px;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

output {
  display: block;
  margin: 16px 0 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--moss);
  font-size: 1.2rem;
  font-weight: 850;
}

.per-card-price {
  display: block;
  margin-top: 5px;
  color: rgba(23, 23, 19, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.option-fields {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.selected-product-image,
.shop-image {
  width: 100%;
  object-fit: contain;
  background: transparent;
}

.selected-product-image {
  aspect-ratio: 16 / 10;
  max-height: 230px;
  margin-top: 14px;
  border: 1px solid var(--line);
  opacity: 1;
  transform: scale(1);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.selected-product-image.image-changing {
  opacity: 0;
  transform: scale(0.985);
}

.shop-image {
  aspect-ratio: 1 / 1;
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
  padding: 10px;
  transition: transform 420ms var(--ease);
}

.image-fallback {
  display: grid;
  aspect-ratio: 1 / 1;
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 91, 70, 0.18), rgba(200, 154, 61, 0.16));
  color: rgba(23, 23, 19, 0.64);
  font-weight: 800;
  text-align: center;
  padding: 18px;
}

.product-note {
  margin: -4px 0 14px;
  color: rgba(23, 23, 19, 0.62);
  font-size: 0.88rem;
}

.artwork-upload-shell {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.artwork-field-label {
  margin-bottom: 0;
}

.artwork-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.artwork-picker-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62, 91, 70, 0.26);
  border-radius: var(--radius-soft);
  background: linear-gradient(135deg, rgba(62, 91, 70, 0.12), rgba(200, 154, 61, 0.14));
  color: var(--moss);
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.artwork-picker-button:hover,
.artwork-file-input:focus-visible + .artwork-picker-button {
  border-color: rgba(62, 91, 70, 0.42);
  background: linear-gradient(135deg, rgba(62, 91, 70, 0.18), rgba(200, 154, 61, 0.2));
  transform: translateY(-1px);
}

.artwork-help {
  margin: -2px 0 8px;
  color: rgba(23, 23, 19, 0.6);
  font-size: 0.86rem;
}

.artwork-preview {
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 250, 240, 0.7);
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.9rem;
  padding: 10px 12px;
}

.artwork-preview.has-photo {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
}

.artwork-preview.is-error {
  border-color: rgba(121, 45, 31, 0.36);
  background: rgba(121, 45, 31, 0.08);
  color: #792d1f;
}

.artwork-preview strong,
.artwork-preview span {
  display: block;
}

.artwork-preview span {
  overflow-wrap: anywhere;
}

.artwork-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 250, 240, 0.8);
}

.price-regular {
  color: rgba(23, 23, 19, 0.45);
  margin-right: 8px;
  text-decoration: line-through;
}

.cart-overlay {
  position: fixed;
  z-index: 35;
  inset: 0;
  background: rgba(10, 8, 6, 0.46);
}

.cart-panel {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(520px, 100%);
  height: 100vh;
  overflow: auto;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(105%);
  transition: transform 200ms ease;
}

.cart-panel.open,
.purchase-panel.open {
  transform: translateX(0);
}

.purchase-panel {
  position: fixed;
  z-index: 45;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  height: 100vh;
  overflow: auto;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(105%);
  transition: transform 200ms ease;
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.cart-panel-header h2 {
  margin-bottom: 0;
  font-size: 2.3rem;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 22px 28px;
}

.cart-empty {
  color: rgba(23, 23, 19, 0.62);
}

.cart-item {
  border: 1px solid var(--line);
  background: #f7f3ea;
  padding: 16px;
}

.cart-item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
  background: #e7dfd1;
}

.cart-item h3 {
  margin-bottom: 8px;
}

.cart-item p {
  margin-bottom: 6px;
  color: rgba(23, 23, 19, 0.64);
  font-size: 0.95rem;
}

.cart-item-footer,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--cedar);
  cursor: pointer;
  font-weight: 800;
  padding: 0;
}

.cart-total {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px;
  color: var(--moss);
  font-size: 1.25rem;
}

.checkout-form {
  display: grid;
  padding: 24px 28px 34px;
}

.checkout-form label {
  display: block;
  margin: 16px 0 8px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-note {
  margin: 12px 0 0;
  color: rgba(23, 23, 19, 0.58);
  font-size: 0.92rem;
}

.shipping-section,
.pickup-section {
  margin-top: 14px;
}

.shipping-section {
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 243, 234, 0.72);
  padding: 16px;
}

.shipping-section h3 {
  margin-bottom: 4px;
  color: var(--walnut);
}

.shipping-help {
  margin-bottom: 12px;
  color: rgba(23, 23, 19, 0.62);
  font-size: 0.92rem;
}

.shipping-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 86px minmax(96px, 0.7fr);
  gap: 10px;
  align-items: end;
}

.purchase-content {
  display: grid;
  gap: 20px;
  padding: 24px 28px 34px;
}

.purchase-summary,
.purchase-customer {
  display: grid;
  gap: 10px;
}

.purchase-line,
.purchase-customer p {
  border: 1px solid var(--line);
  background: #f7f3ea;
  padding: 14px;
  margin: 0;
}

.purchase-line strong,
.purchase-line span {
  display: block;
}

.purchase-line span {
  color: rgba(23, 23, 19, 0.64);
  font-size: 0.94rem;
  margin-top: 4px;
}

.purchase-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--moss);
  font-size: 1.25rem;
}

.payment-options {
  display: grid;
  gap: 12px;
}

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

.payment-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  background: #f7f3ea;
  padding: 14px;
  cursor: pointer;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms var(--ease);
}

.payment-option:hover {
  border-color: rgba(62, 91, 70, 0.36);
  background: #fffaf0;
  transform: translateY(-1px);
}

.payment-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.payment-option strong,
.payment-option span {
  display: block;
}

.payment-option span {
  color: rgba(23, 23, 19, 0.64);
  font-size: 0.94rem;
}

.shop-section {
  background:
    linear-gradient(90deg, rgba(62, 91, 70, 0.09), rgba(82, 100, 119, 0.07)),
    var(--paper);
}

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

.shop-grid article {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--moss);
  background: var(--paper-strong);
  padding: 22px;
  min-height: 238px;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.shop-grid article:hover {
  border-color: var(--brass);
  box-shadow: 0 18px 42px rgba(35, 28, 20, 0.14);
  transform: translateY(-5px);
}

.shop-grid article:hover .shop-image {
  transform: scale(1.04);
}

.shop-grid p {
  flex: 1;
  color: rgba(23, 23, 19, 0.68);
}

.shop-grid strong {
  margin-top: 10px;
  color: var(--cedar);
}

.shop-grid del {
  color: rgba(23, 23, 19, 0.45);
  margin-right: 6px;
}

.catalog-button {
  margin-top: 24px;
}

.gallery-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--walnut);
  color: var(--paper-strong);
}

.gallery-band img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  background: transparent;
  transition: transform 640ms var(--ease), filter 320ms ease;
}

.gallery-band img:hover {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-band div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.gallery-band p:last-child {
  color: rgba(255, 250, 240, 0.72);
}

.contact-section {
  background: var(--moss);
  color: var(--paper-strong);
}

.contact-section > div > p {
  color: rgba(255, 250, 240, 0.76);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 250, 240, 0.2);
  padding-top: 14px;
}

.contact-list strong {
  color: var(--brass);
}

.contact-form {
  background: var(--paper-strong);
  color: var(--ink);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.contact-form label:first-child {
  margin-top: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--moss);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px clamp(18px, 6vw, 84px);
  background: #171713;
  color: rgba(255, 250, 240, 0.72);
}

.site-footer p {
  margin-bottom: 0;
  color: #fffaf0;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.site-footer a {
  width: fit-content;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer small {
  max-width: 900px;
  color: rgba(255, 250, 240, 0.5);
}

.social-float {
  position: fixed;
  z-index: 28;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-weight: 850;
  padding: 9px 16px 9px 10px;
  box-shadow: 0 18px 44px rgba(24, 119, 242, 0.32), 0 12px 28px rgba(35, 28, 20, 0.2);
  transition: transform 200ms var(--ease), box-shadow 200ms ease, background 200ms ease;
}

.social-float:hover,
.social-float:focus-visible {
  background: #0f6fe6;
  box-shadow: 0 22px 54px rgba(24, 119, 242, 0.38), 0 16px 34px rgba(35, 28, 20, 0.24);
  outline: none;
  transform: translateY(-3px) scale(1.02);
}

.social-float svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-float span {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(59, 42, 33, 0.9), rgba(62, 91, 70, 0.82)),
    url("https://static.wixstatic.com/media/8a0e06_70eb536d774f4c8eab811ac2124c1e80~mv2.jpg/v1/fit/w_1200,h_900,q_85/file.jpg") center / cover;
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 84px);
}

.thank-you-card {
  width: min(900px, 100%);
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.96);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
  animation: riseIn 700ms var(--ease) both;
}

.thank-you-card h1 {
  color: var(--walnut);
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

.thank-you-status {
  color: var(--moss);
  font-weight: 800;
}

.thank-you-summary {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.thank-you-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.thank-you-meta p {
  margin: 0;
}

.thank-you-lines {
  display: grid;
  gap: 12px;
}

.thank-you-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  background: #f7f3ea;
  padding: 12px;
}

.thank-you-line img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.thank-you-line strong,
.thank-you-line span {
  display: block;
}

.thank-you-line span {
  color: rgba(23, 23, 19, 0.66);
  font-size: 0.95rem;
}

.thank-you-next {
  margin-bottom: 24px;
}

.thank-you-next h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.thank-you-next a {
  color: var(--cedar);
  font-weight: 800;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    border: 1px solid rgba(255, 250, 240, 0.16);
    background: rgba(23, 23, 19, 0.96);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-radius: 3px;
    padding: 13px 14px;
  }

  .cart-button {
    justify-content: space-between;
    border-radius: 3px;
    width: 100%;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro-grid,
  .split-section,
  .contact-section,
  .product-grid,
  .gallery-band {
    grid-template-columns: 1fr;
  }

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

  .quote-panel {
    position: static;
  }

  .gallery-band img {
    min-height: 250px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    max-width: 152px;
    white-space: normal;
  }

  .hero {
    padding: 112px 18px 44px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.4rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band,
  .section,
  .split-section,
  .contact-section {
    padding: 56px 18px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .thank-you-meta,
  .thank-you-line {
    grid-template-columns: 1fr;
  }

  .social-float {
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .social-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Modern mobile polish */
:root {
  --radius: 8px;
  --radius-soft: 6px;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

.brand-mark,
.button,
.quote-panel,
.selected-product-image,
.product-card,
.shop-grid article,
.contact-form,
.cart-item,
.purchase-line,
.purchase-customer p,
.payment-option,
.icon-button,
.nav-toggle {
  border-radius: var(--radius);
}

.button,
.cart-button,
.icon-button,
.nav-toggle,
.payment-option {
  -webkit-tap-highlight-color: transparent;
}

.button,
.nav-toggle {
  cursor: pointer;
}

.site-header {
  will-change: background, box-shadow;
}

.nav-toggle {
  transition: background 180ms ease, transform 180ms var(--ease);
}

.nav-toggle span:not(.sr-only) {
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.product-card {
  border: 1px solid rgba(23, 23, 19, 0.08);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 42px rgba(35, 28, 20, 0.12);
  transform: translateY(-4px);
}

select,
input,
textarea {
  min-height: 48px;
}

.cart-overlay {
  backdrop-filter: blur(4px);
}

.cart-panel,
.purchase-panel {
  transition: transform 280ms var(--ease);
}

@media (max-width: 920px) {
  .site-nav {
    display: grid;
    border-radius: var(--radius);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 200ms ease, transform 220ms var(--ease);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a,
  .cart-button {
    border-radius: var(--radius-soft);
  }

  .quote-panel {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    gap: 10px;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    max-width: 136px;
    font-size: 0.65rem;
    line-height: 1.2;
    white-space: normal;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    width: auto;
    padding: 10px;
  }

  .site-nav a,
  .cart-button {
    min-height: 46px;
    font-size: 0.98rem;
  }

  .hero {
    min-height: 82svh;
    align-items: center;
    padding: 102px 18px 38px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 8, 6, 0.84) 0%, rgba(10, 8, 6, 0.54) 100%),
      linear-gradient(0deg, rgba(23, 23, 19, 0.74) 0%, rgba(23, 23, 19, 0) 34%);
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    min-height: 50px;
  }

  .hero-note {
    width: 100%;
    margin-top: 26px;
  }

  .intro-band,
  .section,
  .split-section,
  .contact-section {
    padding: 52px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .product-card div,
  .shop-grid article {
    padding: 18px;
  }

  .product-card img {
    aspect-ratio: 16 / 11;
  }

  .process-list {
    margin-top: 24px;
  }

  .process-list div {
    grid-template-columns: 42px 1fr;
    gap: 0 12px;
  }

  .process-list span {
    font-size: 1.28rem;
  }

  .quote-panel {
    padding: 16px;
    box-shadow: 0 14px 44px rgba(35, 28, 20, 0.15);
  }

  .quote-panel:hover {
    transform: none;
  }

  .quote-panel label,
  .contact-form label,
  .checkout-form label {
    margin-top: 12px;
  }

  .selected-product-image {
    max-height: 180px;
  }

  .option-fields {
    gap: 0;
  }

  .shop-grid {
    gap: 14px;
  }

  .shop-grid article {
    min-height: auto;
  }

  .shop-image,
  .image-fallback {
    margin: -18px -18px 14px;
    width: calc(100% + 36px);
  }

  .gallery-band img {
    min-height: 210px;
  }

  .cart-panel,
  .purchase-panel {
    width: 100%;
    border-radius: 14px 14px 0 0;
  }

  .cart-panel-header,
  .purchase-content,
  .checkout-form,
  .cart-items {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cart-panel-header {
    padding-top: 22px;
    padding-bottom: 18px;
  }

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

  .cart-total {
    padding-left: 18px;
    padding-right: 18px;
  }

  .payment-option {
    padding: 13px;
  }

  .contact-form {
    padding: 18px;
  }

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

/* Product quick view */
.quick-view-trigger {
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.quick-view-trigger::after {
  content: "Tap to preview";
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 999px;
  background: rgba(23, 23, 19, 0.72);
  color: #fffaf0;
  font-size: 0.72rem;
  font-weight: 850;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 200ms var(--ease);
}

.quick-view-trigger:hover::after,
.quick-view-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-trigger:focus-visible {
  outline: 3px solid rgba(200, 154, 61, 0.55);
  outline-offset: 4px;
}

.quick-view-panel {
  position: fixed;
  z-index: 55;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 0.8fr);
  width: min(980px, calc(100vw - 36px));
  max-height: min(760px, calc(100dvh - 36px));
  overflow: auto;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 34px 110px rgba(10, 8, 6, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.96);
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.quick-view-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 10px 24px rgba(35, 28, 20, 0.12);
}

.quick-view-media {
  display: grid;
  min-height: 480px;
  place-items: center;
  background:
    radial-gradient(circle at 28% 16%, rgba(200, 154, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(62, 91, 70, 0.12), rgba(82, 100, 119, 0.08)),
    #f7f3ea;
  padding: clamp(20px, 4vw, 42px);
}

.quick-view-media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(35, 28, 20, 0.18));
  animation: quickImageIn 360ms var(--ease) both;
}

.quick-view-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.quick-view-content h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.quick-view-content > p:not(.eyebrow):not(.form-status) {
  color: rgba(23, 23, 19, 0.68);
  font-size: 1.02rem;
}

#quickViewPrice {
  display: block;
  margin: 8px 0 16px;
  color: var(--cedar);
  font-size: 1.35rem;
}

.quick-view-note {
  border-left: 3px solid var(--brass);
  background: rgba(200, 154, 61, 0.1);
  color: rgba(23, 23, 19, 0.72);
  margin: 0 0 18px;
  padding: 12px 14px;
}

.quick-view-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@keyframes quickImageIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 760px) {
  .quick-view-trigger::after {
    content: "Preview";
    opacity: 1;
    top: 10px;
    right: 10px;
    transform: none;
  }

  .quick-view-panel {
    top: auto;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
    transform: translateY(105%) scale(1);
  }

  .quick-view-panel.open {
    transform: translateY(0) scale(1);
  }

  .quick-view-media {
    min-height: 310px;
    padding: 22px;
  }

  .quick-view-media img {
    max-height: 340px;
  }

  .quick-view-content {
    padding: 22px 18px 26px;
  }

  .quick-view-content h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

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

/* Vendor POS */
.vendor-page {
  background:
    linear-gradient(135deg, rgba(62, 91, 70, 0.12), rgba(200, 154, 61, 0.08)),
    var(--paper);
}

.vendor-shell {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 42px);
}

.vendor-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.vendor-header h1 {
  margin-bottom: 8px;
  color: var(--walnut);
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.vendor-header p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(23, 23, 19, 0.68);
}

.vendor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 18px;
  align-items: start;
}

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

.vendor-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  padding: 10px 14px;
}

.vendor-filter.active {
  background: var(--walnut);
  color: var(--paper-strong);
}

.vendor-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vendor-product {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-top: 4px solid var(--moss);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  cursor: pointer;
  padding: 16px;
  text-align: left;
  transition: transform 170ms var(--ease), box-shadow 170ms ease, border-color 170ms ease;
}

.vendor-product:hover,
.vendor-product:focus-visible {
  border-top-color: var(--brass);
  box-shadow: 0 18px 38px rgba(35, 28, 20, 0.12);
  outline: none;
  transform: translateY(-3px);
}

.vendor-product span {
  font-size: 1.02rem;
  font-weight: 850;
}

.vendor-product strong {
  color: var(--cedar);
  font-size: 1.25rem;
}

.vendor-cart {
  position: sticky;
  top: 18px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vendor-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.vendor-cart-head h2 {
  margin: 0;
  font-size: 2.2rem;
}

.vendor-cart-items {
  display: grid;
  gap: 10px;
  max-height: 34vh;
  overflow: auto;
  padding: 16px 20px;
}

.vendor-cart-line {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f3ea;
  padding: 12px;
}

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

.vendor-cart-line span {
  color: rgba(23, 23, 19, 0.64);
}

.vendor-line-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-line-controls button {
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: #fffaf0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 10px;
}

.vendor-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--moss);
  font-size: 1.35rem;
  padding: 16px 20px;
}

.vendor-form {
  display: grid;
  padding: 18px 20px 22px;
}

.vendor-form label {
  display: block;
  margin: 12px 0 6px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.button.secondary-dark {
  background: var(--moss);
  color: var(--paper-strong);
}

.shipping-shell {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.shipping-workflow article {
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-top: 4px solid var(--moss);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 16px 42px rgba(35, 28, 20, 0.1);
}

.shipping-workflow h2 {
  color: var(--walnut);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

@media (max-width: 980px) {
  .vendor-layout {
    grid-template-columns: 1fr;
  }

  .vendor-cart {
    position: static;
  }
}

@media (max-width: 640px) {
  .vendor-shell {
    padding: 14px;
  }

  .vendor-header {
    align-items: stretch;
    flex-direction: column;
  }

  .vendor-header .button {
    width: 100%;
  }

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

  .vendor-product {
    min-height: 106px;
    padding: 13px;
  }

  .vendor-cart-items {
    max-height: none;
  }

  .shipping-workflow {
    grid-template-columns: 1fr;
  }
}
