/* ============================================================
   STERN METALS — industrial steel + torch orange
   ============================================================ */
:root {
  --steel-950: #101215;
  --steel-900: #16181c;
  --steel-800: #1e2126;
  --steel-700: #2a2e34;
  --steel-line: rgba(255,255,255,.08);
  --paper: #f5f3ef;
  --paper-2: #edeae4;
  --card: #ffffff;
  --ink: #17181a;
  --muted: #6b6e73;
  --accent: #e8632c;          /* torch orange */
  --accent-hot: #f4763f;
  --line: #e3dfd8;
  --shadow-sm: 0 1px 2px rgba(23,24,26,.06), 0 2px 8px rgba(23,24,26,.06);
  --shadow-md: 0 2px 4px rgba(23,24,26,.07), 0 10px 24px rgba(23,24,26,.10);
  --shadow-lg: 0 4px 8px rgba(23,24,26,.08), 0 24px 48px rgba(23,24,26,.16);
  --radius: 12px;
  --wrap: 1140px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }   /* keep the HTML hidden attr winning over display rules */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }

h1, h2, h3 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.02;
  margin: 0 0 .8rem;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

a { color: var(--accent); }
:focus-visible {
  outline: 3px solid rgba(232,99,44,.6);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* Overline label above headings */
.overline {
  display: flex; align-items: center; gap: .65rem;
  font: 600 .78rem 'Barlow', sans-serif;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.overline::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); flex: none;
}

.lede { font-size: 1.15rem; max-width: 36rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,18,21,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel-line);
  color: #fff;
}
.header-inner {
  display: flex; align-items: center; gap: 1.6rem;
  min-height: 66px;
}
.brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.55rem;
  color: #fff; text-decoration: none; letter-spacing: .06em;
  display: inline-flex; align-items: baseline; gap: .12em;
  margin-right: auto;   /* push nav + CTA to the right on desktop */
}
.brand span { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav a {
  color: #c9cdd3; text-decoration: none;
  font: 600 .85rem 'Barlow', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--accent); }
.header-cta {
  background: var(--accent); color: #fff; text-decoration: none;
  padding: .6rem 1.15rem; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,99,44,.35);
  transition: filter .15s ease, transform .15s ease;
}
.header-cta:hover { filter: brightness(1.09); transform: translateY(-1px); }
.drawer-cta { display: none; }   /* desktop uses .header-cta; this is the in-drawer button */

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; margin-left: -8px; padding: 9px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-scrim { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary, .btn-ghost {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 2rem; border-radius: 7px;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: filter .15s ease, transform .15s ease, box-shadow .15s ease,
              background .15s ease, color .15s ease;
}
.btn-primary {
  background: var(--accent); color: #fff; border: 0;
  box-shadow: 0 6px 18px rgba(232,99,44,.35), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  filter: brightness(1.09); transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,99,44,.42), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .55; cursor: default; transform: none; filter: none; }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hot); transform: translateY(-2px); }

/* ============================================================
   Hero — full-bleed dark steel
   ============================================================ */
.hero {
  background:
    radial-gradient(900px 480px at 78% 18%, rgba(232,99,44,.14), transparent 60%),
    radial-gradient(700px 420px at 12% 88%, rgba(255,255,255,.045), transparent 60%),
    linear-gradient(165deg, var(--steel-800) 0%, var(--steel-900) 55%, var(--steel-950) 100%);
  color: #eceae6;
  border-bottom: 3px solid var(--accent);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem;
  align-items: center; padding-top: 5rem; padding-bottom: 4.5rem;
}
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { color: #c9cdd3; }
.hero .lede strong { color: #fff; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 1rem; }
.hero .sub { color: #8f939a; font-size: .95rem; margin: 0; }
.hero .sub a { color: var(--accent-hot); text-decoration: none; font-weight: 600; }
.hero-art { position: relative; }
.hero-art::before {
  content: ""; position: absolute; inset: 12% 6% 4% 6%;
  background: radial-gradient(closest-side, rgba(232,99,44,.22), transparent 72%);
  filter: blur(6px);
}
.hero-art img {
  position: relative; width: 100%; max-height: 480px; object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 30px 32px rgba(0,0,0,.55)) drop-shadow(0 6px 10px rgba(0,0,0,.4));
}

/* Trust strip along hero bottom */
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--steel-line);
  padding-top: 1.4rem; padding-bottom: 1.6rem; gap: 1rem;
}
.trust-strip div {
  font: 600 .82rem 'Barlow', sans-serif;
  letter-spacing: .14em; text-transform: uppercase;
  color: #a7abb2; display: flex; align-items: center; gap: .6rem;
}
.trust-strip div::before {
  content: ""; width: 7px; height: 7px; background: var(--accent);
  transform: rotate(45deg); flex: none;
}

/* ============================================================
   Section rhythm
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-head { max-width: 44rem; margin-bottom: 2.6rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: .4rem 0 0; }

/* ============================================================
   How it works — numbered columns
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem 1.9rem; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.step::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.step:hover::after { width: 100%; }
.step .num {
  font: 700 4rem 'Barlow Condensed', sans-serif; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent);
  display: block; margin-bottom: .9rem;
}
@supports not (-webkit-text-stroke: 1px black) {
  .step .num { color: var(--accent); }
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ============================================================
   Gallery pairs (photo | sign cards)
   ============================================================ */
.gallery-sub { color: var(--muted); max-width: 42rem; }
.pairs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.6rem; margin-top: 2.2rem;
}
.pairs figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pairs figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pairs figure > img, .pairs figure > a > img {
  width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover;
  transition: transform .4s ease;
}
.pairs figure:hover > img { transform: scale(1.03); }

/* the split-stack (photo above, steel below) is built by JS from the pair image;
   hidden on desktop where the side-by-side image reads fine */
.pair-split { display: none; }
.pair-half {
  display: block; width: 100%; aspect-ratio: 1 / 1;
  background-repeat: no-repeat; background-size: 201% auto;
}
.pair-half.photo { background-position: left center; }
.pair-half.steel { background-position: right center; background-color: #eae7e1; }
@media (max-width: 760px) {
  /* 2-up product grid (Anthem-style): steel sign is the hero, the source photo
     rides in the corner as a small "before" inset — scannable, low scroll */
  .pairs figure.split-ready > img { display: none; }
  .pairs figure.split-ready .pair-split { display: block; position: relative; }
  .pair-half.steel { aspect-ratio: 1 / 1; }
  .pair-half.photo {
    position: absolute; left: 7px; bottom: 7px; width: 42%; aspect-ratio: 1 / 1;
    border: 2px solid #fff; border-radius: 7px;
    box-shadow: 0 3px 12px rgba(0,0,0,.3);
  }
}

.pairs figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .85rem 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.1rem; letter-spacing: .05em; text-transform: uppercase;
}
.pairs figcaption span {
  font: 500 .8rem 'Barlow', sans-serif; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.gallery-more { margin-top: 2.4rem; }

/* ============================================================
   Shelters / give back — dark band
   ============================================================ */
.shelters {
  background:
    radial-gradient(700px 380px at 85% 10%, rgba(232,99,44,.12), transparent 60%),
    linear-gradient(165deg, var(--steel-800), var(--steel-950));
  color: #cfd2d6;
  padding: 5.5rem 0;
}
.shelters h2 { color: #fff; }
.shelters p { max-width: 44rem; font-size: 1.06rem; }
.shelters .partner-link {
  display: inline-block; margin-top: .6rem;
  color: var(--accent-hot); font-weight: 700; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 2px solid var(--accent); padding-bottom: .15rem;
}
.shelters .partner-link:hover { color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--steel-950); color: #9ca0a7; font-size: .95rem;
  border-top: 1px solid var(--steel-line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.2rem;
  padding-top: 3.5rem; padding-bottom: 2.5rem;
}
.footer-brand p { max-width: 20rem; margin: .9rem 0 0; line-height: 1.55; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: .95rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; margin: 0 0 1rem;
}
.footer-col a {
  display: block; color: #9ca0a7; text-decoration: none; margin: .45rem 0;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--accent-hot); }
.footer-col p { margin: 0; line-height: 1.9; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  border-top: 1px solid var(--steel-line);
  padding-top: 1.3rem; padding-bottom: 1.5rem;
  font-size: .85rem; color: #6f737a;
}
.footer-bottom .made {
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600; font-size: .78rem;
}
.footer-bottom .made b { color: var(--accent); }

/* ============================================================
   Order form
   ============================================================ */
.form-page {
  background:
    radial-gradient(800px 400px at 50% -5%, rgba(232,99,44,.06), transparent 60%),
    var(--paper-2);
  padding: 4.5rem 0 5.5rem;
}
.form-page .page-head { max-width: 620px; margin: 0 auto 2rem; padding: 0 24px; }
.form-page .page-head p { color: var(--muted); margin: .3rem 0 0; }
.form-card {
  max-width: 620px; margin: 0 auto; padding: 2.2rem clamp(1.2rem, 4vw, 2.4rem) 2.4rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.form-card label { display: block; margin: 1.25rem 0 .35rem; font-weight: 600; }
.form-card .opt, .form-page .opt { color: var(--muted); font-weight: 400; font-size: .9rem; }
.form-card input[type=text], .form-card input[type=email],
.form-card input[type=password], .form-card select {
  width: 100%; padding: .85rem .95rem; border: 1.5px solid #d4cfc7; border-radius: 8px;
  font: inherit; background: #fbfaf8;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-card input:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,99,44,.18);
}
.form-card button[type=submit], .form-card .btn-primary { margin-top: 1.6rem; width: 100%; font-size: 1.2rem; }
.err { color: #b3261e; font-weight: 600; }

/* format picker cards */
.fmt-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: .4rem 0 1.4rem; }
.fmt-card {
  position: relative; display: block; margin: 0 !important;
  border: 2px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: .7rem .7rem .9rem; cursor: pointer; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.fmt-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fmt-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 7px; }
.fmt-card strong {
  display: block; margin-top: .55rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.fmt-card small { display: block; color: var(--muted); margin-top: .15rem; line-height: 1.4; }
.fmt-card input { position: absolute; opacity: 0; pointer-events: none; }
.fmt-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,99,44,.18), var(--shadow-md);
}
.fmt-card:has(input:checked)::after {
  content: "✓"; position: absolute; top: .55rem; right: .55rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font: 700 .85rem/24px 'Barlow', sans-serif; text-align: center;
  box-shadow: 0 2px 6px rgba(232,99,44,.4);
}
.fmt-card:has(input:focus-visible) { outline: 3px solid rgba(232,99,44,.6); outline-offset: 2px; }

/* photo drop zone */
.drop {
  display: block; margin-top: .4rem !important;
  border: 2px dashed #c6c0b7; border-radius: var(--radius);
  text-align: center; padding: 2rem 1.4rem; cursor: pointer;
  background: #fbfaf8;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.drop:hover, .drop.dragging {
  border-color: var(--accent); background: rgba(232,99,44,.05);
  box-shadow: inset 0 0 0 1px rgba(232,99,44,.2);
}
.drop.dragging { box-shadow: 0 0 0 4px rgba(232,99,44,.2); }
.drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.drop .drop-icon { display: block; font-size: 2.1rem; margin-bottom: .4rem; }
.drop #drop-label, #drop-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.2rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.drop small {
  display: block; margin-top: .3rem; color: var(--muted);
  font-family: 'Barlow', sans-serif; font-weight: 400; font-size: .85rem;
  text-transform: none; letter-spacing: 0;
}
#photo-preview { max-width: 100%; max-height: 280px; border-radius: 8px; box-shadow: var(--shadow-md); }

/* ============================================================
   Proof page
   ============================================================ */
.proof-page { max-width: 64rem; margin: 0 auto; padding: 4rem 24px 5.5rem; }

/* waiting state */
.forge-card {
  max-width: 34rem; margin: 2.2rem 0 0;
  background: linear-gradient(165deg, var(--steel-800), var(--steel-950));
  border-radius: 16px; padding: 2rem 2.2rem 2.2rem;
  color: #cfd2d6; box-shadow: var(--shadow-lg);
  border: 1px solid var(--steel-line);
}
.forge-steps { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.forge-steps li {
  display: flex; align-items: center; gap: .8rem;
  padding: .5rem 0; font-weight: 500;
  animation: forge-step 9s ease-in-out infinite;
  opacity: .38;
}
.forge-steps li::before {
  content: ""; width: 9px; height: 9px; flex: none;
  background: var(--accent); transform: rotate(45deg);
}
.forge-steps li:nth-child(1) { animation-delay: 0s; }
.forge-steps li:nth-child(2) { animation-delay: 3s; }
.forge-steps li:nth-child(3) { animation-delay: 6s; }
@keyframes forge-step {
  0%, 44%, 100% { opacity: .38; }
  8%, 30% { opacity: 1; }
}
.forge-bar {
  height: 6px; border-radius: 3px; overflow: hidden;
  background: rgba(255,255,255,.1); position: relative;
}
.forge-bar span {
  position: absolute; inset: 0; width: 45%;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, #ffb27a 55%, var(--accent) 70%, transparent);
  animation: forge-sweep 2.2s ease-in-out infinite;
  border-radius: 3px;
}
@keyframes forge-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(260%); }
}
/* determinate ETA fill: overrides the sweep for a real progress bar */
#forge-fill {
  position: absolute; inset: 0 auto 0 0; width: 4%;
  background: linear-gradient(90deg, var(--accent), #ffb27a);
  transform: none; animation: none;
  transition: width 1.2s ease;
}
.forge-eta { margin: 1rem 0 0; font-size: .95rem; font-weight: 600; color: var(--accent-hot); }
.forge-note { margin: .6rem 0 0; font-size: .88rem; color: #8f939a; }

/* legacy spinner (kept for safety) */
.spinner {
  width: 42px; height: 42px; border: 4px solid #ddd; border-top-color: var(--accent);
  border-radius: 50%; animation: spin .9s linear infinite; margin: 2rem 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* variant + size cards */
.variants {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem; margin: 1.8rem 0;
}
.variants figure {
  margin: 0; background: var(--card); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem; cursor: pointer; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.variants figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfc9c0; }
.variants figure.sel {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,99,44,.22), var(--shadow-md);
}
.variants img { width: 100%; height: 250px; object-fit: contain; }
.variants figcaption { margin-top: .5rem; line-height: 1.5; }
.variants figcaption strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.variants.sizes figure { padding: 1.4rem 1.1rem; }

#size-step h2 { margin-top: 2.5rem; }

.approve-bar {
  position: static; margin-top: 1.5rem; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: rgba(22,24,28,.95); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--steel-line); border-radius: var(--radius);
  padding: 1rem 1.4rem; box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.approve-bar .price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.45rem;
  letter-spacing: .03em;
}

/* approved state */
.approved-art {
  max-width: 34rem; margin: 1.4rem 0 0; padding: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
}
.approved-art img { width: 100%; height: auto; display: block; background: #fff; }
.approved-art figcaption {
  margin: 0; padding: .7rem 1rem; font-size: .85rem; color: var(--muted);
  border-top: 1px solid var(--line);
}
#complete-payment { display: inline-block; margin-top: 1rem; text-decoration: none; }
.approved-card {
  max-width: 34rem; background: var(--card); border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius); padding: 1.8rem 2rem; margin-top: 1.6rem;
  box-shadow: var(--shadow-md);
}
.approved-card p { margin: .5rem 0; }

/* ============================================================
   Gallery (pose catalog) pages
   ============================================================ */
.shop { padding: 4.5rem 0 5.5rem; }
.shop .backlink {
  display: inline-block; margin-bottom: 1.6rem;
  font: 600 .85rem 'Barlow', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.shop .backlink:hover { color: var(--accent); }
.pose-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem; margin: 2.2rem 0 3.5rem;
}
.pose-card {
  display: block; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--card); text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pose-card .pose-img { overflow: hidden; }
.pose-card img {
  width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover;
  transition: transform .4s ease;
}
.pose-card:hover img { transform: scale(1.04); }
.pose-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .9rem 1.15rem;
}
.pose-meta strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.pose-meta span {
  color: var(--accent); font: 600 .8rem 'Barlow', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
}
.anything-else {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(232,99,44,.14), transparent 60%),
    linear-gradient(165deg, var(--steel-800), var(--steel-950));
  color: #cfd2d6; border-radius: 16px;
  padding: 3rem clamp(1.4rem, 4vw, 3rem); margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}
.anything-else h2 { color: #fff; margin-top: 0; }
.anything-else p { max-width: 44rem; }
.anything-else strong { color: #fff; }
.anything-else .btn-primary { margin-top: .8rem; }

/* ============================================================
   Admin
   ============================================================ */
.admin { padding: 2.5rem 3vw 4rem; }
.admin h1 { font-size: 2rem; margin-top: 2rem; }
.admin table {
  border-collapse: separate; border-spacing: 0; width: 100%;
  background: #fff; font-size: .92rem;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin th {
  background: var(--steel-900); color: #fff; text-align: left;
  font: 600 .78rem 'Barlow', sans-serif; letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem .7rem;
}
.admin td { border-top: 1px solid #eee9e1; padding: .55rem .7rem; text-align: left; }
.admin tr:hover td { background: #faf8f4; }
.admin form.inline { display: inline; }
.admin tr.st-failed td { background: #fdeceb; }
.admin tr.st-proof_ready td { background: #fef7ec; }
.admin tr.st-approved td { background: #edf6ed; }
.admin .btn-primary { font-size: 1rem; padding: .6rem 1.2rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; padding-top: 3.4rem; padding-bottom: 3rem; }
  .hero-art img { max-height: 340px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip { grid-template-columns: 1fr; gap: .7rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 760px) {
  /* header becomes: [hamburger left] [centered brand] [balanced spacer]  */
  .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: .5rem; }
  .nav-toggle { display: flex; justify-self: start; grid-column: 1; }
  .brand { margin-right: 0; grid-column: 2; justify-self: center; font-size: 1.32rem; }
  .header-cta { display: none; }          /* CTA moves into the drawer on mobile */
  .drawer-cta {
    display: block; margin: .8rem 24px .2rem; text-align: center;
    background: var(--accent); color: #fff; text-decoration: none;
    padding: .95rem 1rem; border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.15rem; letter-spacing: .1em; text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(232,99,44,.35);
  }

  /* nav links slide down as a full-width drawer (were unreachable before) */
  .site-nav {
    position: fixed; top: 66px; left: 0; right: 0;
    display: flex; flex-direction: column; gap: 0;
    background: var(--steel-900); border-bottom: 1px solid var(--steel-line);
    padding: .4rem 0 1.2rem; z-index: 60;
    max-height: calc(100dvh - 66px); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
  }
  body.nav-open .site-nav { transform: none; opacity: 1; visibility: visible; }
  .site-nav a {
    padding: 1.05rem 24px; font-size: 1.02rem; letter-spacing: .06em;
    border-bottom: 1px solid var(--steel-line);
  }
  .site-nav a:hover { color: #fff; border-bottom-color: var(--steel-line); }
  .nav-scrim {
    display: block; position: fixed; inset: 66px 0 0 0;
    background: rgba(8,9,11,.55); z-index: 55;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* work display, Anthem-style: 2-up grid so several show per screen */
  .pairs { grid-template-columns: 1fr 1fr; gap: 1.1rem .8rem; margin-top: 1.6rem; }
  .pairs figcaption { padding: .55rem .7rem; font-size: .9rem; }
  .pairs figcaption span { display: none; }   /* the inset photo tells the "→ steel" story */
  .pose-section { margin: 2.4rem 0; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; }
  .approve-bar { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .wrap { padding-left: 18px; padding-right: 18px; }
  .fmt-pick { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem 1.1rem 1.7rem; border-radius: 12px; }
  .variants { grid-template-columns: 1fr; }
  .approve-bar .btn-primary { width: 100%; }
}

/* local-pickup scheduling */
.pickup-slots { display: grid; gap: .7rem; max-width: 520px; margin: 1.6rem 0 .8rem; }
.pickup-slot {
  text-align: left; padding: 1rem 1.2rem; border: 2px solid var(--line); border-radius: 12px;
  background: var(--card); font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 1.15rem; letter-spacing: .02em; color: var(--ink); cursor: pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .1s ease;
}
.pickup-slot:hover { border-color: var(--accent); }
.pickup-slot:active { transform: scale(.99); }
.pickup-slot[disabled] { opacity: .6; cursor: default; }
.pickup-slot.chosen { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,99,44,.18); }
.pickup-slot.chosen::after { content: " ✓"; color: var(--accent); font-weight: 700; }

/* gallery lightbox: click a pair to see the full steel sign up close, with the real
   dog photo tucked in the corner */
.pairs figure { cursor: zoom-in; }
.lb-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw;
  background: rgba(18,19,22,.9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lb-overlay.open { display: flex; }
.lb-stage {
  position: relative; width: min(920px, 100%);
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}
.lb-steel { display: block; width: 100%; max-height: 74vh; object-fit: contain; }
.lb-photo {
  position: absolute; bottom: clamp(1.2rem, 3vw, 2.2rem); right: clamp(1.2rem, 3vw, 2.2rem);
  width: clamp(88px, 20%, 168px); aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; border: 4px solid #fff; box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}
.lb-cap {
  position: absolute; top: clamp(1.2rem, 3vw, 2.2rem); left: clamp(1.4rem, 3.2vw, 2.4rem);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1.25rem; color: var(--ink);
}
.lb-cap small { display: block; font-size: .72rem; color: var(--muted); letter-spacing: .12em; }
.lb-close {
  position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--ink); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.lb-close:hover { background: var(--accent); }

/* flattened gallery: pose sections inline on /gallery */
.pose-section { margin: 3.2rem 0; }
.pose-section-head { display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; border-bottom: 2px solid var(--accent); padding-bottom: .4rem;
  margin-bottom: .8rem; }
.pose-section-head h2 { margin: 0; }
.pose-start { font: 600 .95rem 'Barlow', sans-serif; color: var(--accent) !important;
  text-decoration: none; white-space: nowrap; }
.pose-start:hover { text-decoration: underline; }

/* order form steps (legacy) */
.form-step { margin-bottom: 2rem; }
.form-step-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.form-step-head h3 { margin: 0; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .5px; font-size: 1.25rem; }
.step-num { display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--accent);
  color: #fff; font: 700 1rem 'Barlow Condensed', sans-serif; flex: none; }
.reassure { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 1rem; }

/* ============================================================
   Order page — premium configurator
   ============================================================ */
.order-page {
  background:
    radial-gradient(900px 460px at 50% -8%, rgba(232,99,44,.09), transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding: 3.5rem 0 5rem;
}
.order-head { max-width: 640px; text-align: center; padding-top: 1rem; }
.order-head .overline { justify-content: center; }
.order-head .lede { margin: 0 auto; color: var(--muted); }
.order-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .9rem;
  margin-top: 1.4rem;
}
.order-trust span {
  font: 600 .82rem 'Barlow', sans-serif; color: #4a4d52;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: .35rem .85rem; box-shadow: var(--shadow-sm);
}

.order-card {
  max-width: 680px; margin: 2.4rem auto 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 2.4rem clamp(1.2rem, 4vw, 2.6rem) 2.4rem;
}
.ostep { padding: 1.8rem 0; border-top: 1px solid #efece6; }
.ostep:first-child { padding-top: .4rem; border-top: 0; }
.ostep-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.ostep-head h3 {
  margin: 0; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; font-size: 1.4rem;
}

/* format picker */
.fmt-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fmt-card {
  position: relative; display: flex; flex-direction: column; margin: 0 !important;
  border: 2px solid var(--line); border-radius: 14px; background: #fff;
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.fmt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fmt-art {
  background:
    radial-gradient(120% 100% at 50% 0%, #fbfaf8, #ece8e1);
  padding: 1rem; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid #efece6;
}
.fmt-art img { width: 100%; height: 150px; object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18)); }
.fmt-meta { padding: .8rem .95rem 1rem; text-align: center; }
.fmt-card strong {
  display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.fmt-card small { display: block; color: var(--muted); margin-top: .25rem; line-height: 1.45; font-size: .88rem; }
.fmt-card input { position: absolute; opacity: 0; pointer-events: none; }
.fmt-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,99,44,.18), var(--shadow-md);
}
.fmt-card:has(input:checked)::after {
  content: "✓"; position: absolute; top: .6rem; right: .6rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font: 700 .9rem/26px 'Barlow', sans-serif; text-align: center;
  box-shadow: 0 2px 8px rgba(232,99,44,.45); z-index: 1;
}
.fmt-card:has(input:focus-visible) { outline: 3px solid rgba(232,99,44,.55); outline-offset: 2px; }

/* photo uploader */
.drop {
  display: block; margin: 0 !important; position: relative;
  border: 2px dashed #c9c3ba; border-radius: 14px;
  text-align: center; padding: 2.6rem 1.4rem; cursor: pointer;
  background:
    radial-gradient(120% 120% at 50% 0%, #fdfcfa, #f5f2ec);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.drop:hover { border-color: var(--accent); background: rgba(232,99,44,.045); }
.drop.dragging {
  border-color: var(--accent); border-style: solid;
  background: rgba(232,99,44,.08); box-shadow: 0 0 0 4px rgba(232,99,44,.16);
}
.drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
#drop-label { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
#drop-label[hidden], #photo-preview-wrap[hidden] { display: none !important; }
.drop-icon { color: var(--accent); margin-bottom: .5rem; }
.drop-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.35rem;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ink);
}
.drop-browse { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.drop-sub { color: var(--muted); font-size: .9rem; margin-top: .15rem; }
#photo-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
#photo-preview { max-width: 100%; max-height: 300px; border-radius: 10px; box-shadow: var(--shadow-md); }
.drop-change { font-size: .85rem; color: var(--accent); font-weight: 600; }

.photo-tips {
  list-style: none; padding: 1rem 1.15rem; margin: 1rem 0 0;
  background: #f7f4ef; border: 1px solid #ece8e1; border-radius: 10px;
  font-size: .93rem; line-height: 1.5;
  display: grid; gap: .55rem;
}
.photo-tips li { position: relative; padding-left: 1.6rem; color: #3c3f43; }
.photo-tips li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #2e9e5b; font-weight: 700;
}
.photo-tips li.no::before { content: "✕"; color: #c0453a; }
.photo-tips b { font-weight: 700; }

.ofields { display: grid; gap: .2rem; }
.order-card label { display: block; margin: .9rem 0 .35rem; font-weight: 600; }
.order-card .opt { color: var(--muted); font-weight: 400; font-size: .88rem; }
.order-card input[type=text], .order-card input[type=email] {
  width: 100%; padding: .9rem 1rem; border: 1.5px solid #d4cfc7; border-radius: 9px;
  font: inherit; background: #fbfaf8;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.order-card input:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,99,44,.18);
}
.order-card button[type=submit] { margin-top: 1.8rem; width: 100%; font-size: 1.25rem; }

@media (max-width: 560px) {
  .fmt-pick { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .fmt-art img { height: 110px; }
  .fmt-card small { font-size: .8rem; }
  .order-card { padding: 1.6rem 1.1rem 1.8rem; }
}

/* how-to-order tutorial */
.howto { padding: 3rem 0 4rem; }
.howto-step { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.2rem;
  align-items: center; margin: 3rem 0; }
.howto-step:nth-child(even) { direction: rtl; }
.howto-step:nth-child(even) > * { direction: ltr; }
.howto-step .num { font: 700 3.2rem 'Barlow Condensed', sans-serif; color: transparent;
  -webkit-text-stroke: 2px var(--accent); line-height: 1; display: block; margin-bottom: .4rem; }
.howto-step h2 { margin: .2rem 0 .6rem; }
.howto-step figure { margin: 0; border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.12); }
.howto-step img { width: 100%; display: block; }
@media (max-width: 760px) {
  .howto-step { grid-template-columns: 1fr; gap: 1rem; }
  .howto-step:nth-child(even) { direction: ltr; }
}

/* tutorial video */
.howto-video { max-width: 900px; margin: 1.5rem auto 1rem; }
.howto-video video { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.18);
  background: #000; display: block; }
.video-cap { text-align: center; color: var(--muted); font-size: .95rem; margin-top: .7rem; }

/* size cards: recommended badge + highlight */
.variants.sizes figure { position: relative; }
.variants.sizes figure.rec { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,99,44,.25); }
.rec-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font: 700 .68rem 'Barlow', sans-serif;
  letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 20px;
  white-space: nowrap;
}

/* STERN Engine badge on the loading card */
.engine-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font: 700 .72rem 'Barlow', sans-serif; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-hot); background: rgba(232,99,44,.12);
  border: 1px solid rgba(232,99,44,.3); border-radius: 20px;
  padding: .35rem .85rem; margin-bottom: 1.3rem;
}
.engine-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232,99,44,.6); animation: engine-pulse 1.4s ease-out infinite;
}
@keyframes engine-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,99,44,.55); }
  100% { box-shadow: 0 0 0 9px rgba(232,99,44,0); }
}

/* ============================================================
   In Remembrance
   ============================================================ */
.memorial-hero {
  background:
    radial-gradient(700px 380px at 80% 20%, rgba(232,99,44,.10), transparent 60%),
    linear-gradient(170deg, var(--steel-800), var(--steel-950));
  color: #e9e7e3; padding: 5rem 0 4.5rem; border-bottom: 3px solid var(--accent);
}
.memorial-hero h1 { color: #fff; max-width: 16ch; }
.memorial-hero .lede { color: #c4c8ce; margin-bottom: 1.8rem; }
.memorial-soft { color: #8f939a; font-size: .95rem; margin-top: 1rem; }

.memorial-formats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.memorial-formats figure { margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.memorial-formats img { width: 100%; height: 300px; object-fit: contain; background: var(--paper-2); padding: 1rem; }
.memorial-formats figcaption { padding: 1.1rem 1.3rem 1.4rem; color: var(--muted); }
.memorial-formats figcaption strong { color: var(--ink); font-size: 1.15rem;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .04em; }

/* engraved steel nameplate samples */
.plate-samples { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; }
.plate {
  background: linear-gradient(160deg, #23262b, #14161a);
  border: 1px solid #34383f; border-radius: 8px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 1.6rem 1.4rem; text-align: center;
  display: flex; flex-direction: column; gap: .4rem;
}
.plate-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 2.2rem; letter-spacing: .14em; text-transform: uppercase;
  color: #e9e7e3; text-shadow: 0 1px 0 #000, 0 -1px 0 rgba(255,255,255,.08);
}
.plate-dates { color: #a7abb2; font-size: 1rem; letter-spacing: .06em; }

.memorial-give { background: var(--steel-900); }
.memorial-cta { text-align: center; }
.memorial-cta .lede { margin: 0 auto 1.6rem; }

/* order form: memorial toggle + fields */
.memorial-toggle { display: flex; gap: .7rem; align-items: flex-start; cursor: pointer;
  background: #faf8f4; border: 1px solid var(--line); border-radius: 8px; padding: .9rem 1rem; }
.memorial-toggle input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--accent); }
.memorial-toggle span { color: var(--muted); font-size: .97rem; }
.memorial-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.memorial-fields label:first-child, .memorial-fields .mem-name { grid-column: 1 / -1; }
.mem-note { grid-column: 1 / -1; margin: 0; padding: .85rem 1rem;
  background: rgba(232, 99, 44, .07); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 10px;
  color: var(--muted); font-size: .92rem; line-height: 1.55; }
.mem-note strong { color: var(--ink); }

/* footer remembrance plate */
.footer-plate { border-top: 1px solid var(--steel-line); text-align: center;
  padding: 1.1rem 1rem; color: #9aa0a7; font-size: .95rem; letter-spacing: .03em; font-style: italic; }

@media (max-width: 700px) {
  .memorial-formats, .memorial-fields { grid-template-columns: 1fr; }
}

/* memorial showcase (real mockup) */
.memorial-showcase { display: grid; grid-template-columns: .8fr 1fr; gap: 2.5rem;
  align-items: center; margin-bottom: 3rem; }
.memorial-showcase img { width: 100%; max-height: 560px; object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.16)); }
.memorial-showcase-text .overline { justify-content: flex-start; }
@media (max-width: 760px) { .memorial-showcase { grid-template-columns: 1fr; } }

/* memorial opt-in sub-fields, example chips, shelter fields */
.mem-name { display: block; }
.sub-toggle { display: flex; align-items: center; gap: .6rem; cursor: pointer;
  margin-top: 1rem; font-weight: 500; color: var(--ink); }
.sub-toggle input { width: 17px; height: 17px; accent-color: var(--accent); }
.sub-field { margin-top: .6rem; }
.sub-field input { width: 100%; padding: .7rem .8rem; border: 1px solid #c9c5be;
  border-radius: 7px; font: inherit; }
.field-ex { color: var(--muted); font-size: .9rem; margin: .5rem 0 0;
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.ex-chip { background: #f2efe9; border: 1px solid var(--line); border-radius: 20px;
  padding: .28rem .7rem; font: 500 .85rem 'Barlow', sans-serif; color: var(--ink);
  cursor: pointer; transition: background .12s, border-color .12s; }
.ex-chip:hover { background: #fff; border-color: var(--accent); color: var(--accent); }

.shelter-fields { margin-top: 1rem; display: grid; gap: 1rem; }
.shelter-fields input { width: 100%; padding: .7rem .8rem; border: 1px solid #c9c5be;
  border-radius: 7px; font: inherit; }
.donate-note { background: #fbf3ea; border: 1px solid #f0d9c2; border-radius: 8px;
  padding: .8rem 1rem; color: #8a5a33; font-size: .93rem; margin: 0; }
.donation-line { color: #8a5a33; font-weight: 600; margin: .3rem 0; }

/* style picker (sitting/lying/standing/headshot) — roomy 2x2 */
.style-pick { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.style-pick .fmt-card { padding: 1.1rem; }
/* rotating style art: show only the STEEL half of a photo|steel gallery pair */
.fmt-steel {
  display: block; width: 100%; height: 100%;
  background-repeat: no-repeat; background-size: 201% auto; background-position: right center;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}
.style-pick .fmt-art { height: 170px; display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); border-radius: 8px; margin-bottom: .9rem; }
.style-pick .fmt-art img { max-height: 158px; width: auto; object-fit: contain; }
.style-pick .fmt-meta strong { font-size: 1.15rem; }
.style-note { color: var(--muted); font-size: .92rem; margin: .2rem 0 1rem; }
@media (max-width: 620px) { .style-pick { grid-template-columns: 1fr; } }

/* finish picker (raw / painted / rustic) */
.finish-head { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: .5px; font-size: 1.05rem; font-weight: 600; margin: 1.4rem 0 .7rem; }
.finish-pick { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }
.finish-card { display: flex; flex-direction: column; gap: .5rem; cursor: pointer;
  border: 2px solid var(--line); border-radius: 10px; padding: .9rem; background: #fff;
  position: relative; }
.finish-card input { position: absolute; opacity: 0; }
.finish-card:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,99,44,.18); }
.finish-swatch { height: 46px; border-radius: 6px; border: 1px solid rgba(0,0,0,.12); }
.sw-raw { background: linear-gradient(135deg,#b9bcc0,#8b8e93 55%,#a6a9ad); }
.sw-painted { background: linear-gradient(135deg,#3a3d42,#161719 60%,#2a2c30); }
.sw-rustic { background: linear-gradient(135deg,#b5713f,#8a4a2b 45%,#5f3b28); }
.finish-meta strong { display: block; font-size: 1rem; }
.finish-meta small { color: var(--muted); font-size: .85rem; line-height: 1.35; }
.finish-price { font-weight: 700; color: var(--accent); font-size: .95rem; margin-top: auto; }
@media (max-width: 620px) { .finish-pick { grid-template-columns: 1fr; } }

/* QC review page */
.review-page { padding: 3rem 0 4rem; }
.review-tally { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 2rem; }
.tally-chip, .cat-badge { font: 700 .74rem 'Barlow', sans-serif; letter-spacing: .08em;
  text-transform: uppercase; padding: .25rem .7rem; border-radius: 20px; color: #fff;
  background: var(--muted); }
.cat-eyes { background: #c0392b; } .cat-background { background: #2e7d5b; }
.cat-anatomy { background: #b8531f; } .cat-pose { background: #6b4fa0; }
.cat-likeness { background: #b07d1a; } .cat-clipped { background: #37718e; }
.cat-quality { background: #7a5c3e; } .cat-other { background: #555; }
.review-clear { background: #edf6ed; border: 1px solid #cfe6cf; color: #2e6b34;
  padding: 1rem 1.2rem; border-radius: 10px; font-weight: 600; margin-top: 1rem; }
.review-list { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.review-card { display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: 1.4rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm); align-items: center; }
.review-card img { width: 100%; height: 100%; object-fit: cover; background: var(--paper-2); }
.review-body { padding: 1.2rem 1.4rem 1.4rem; }
.review-top { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .5rem; }
.review-top h2 { margin: 0; font-size: 1.5rem; }
.review-section { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.review-issue { font-size: 1.08rem; font-style: italic; color: var(--ink); margin: .3rem 0 .9rem; }
.review-diag { background: #faf8f4; border: 1px solid var(--line); border-radius: 8px;
  padding: .9rem 1.1rem; }
.review-diag p { margin: .2rem 0; font-size: .96rem; color: #3a3c40; }
.review-diag b { color: var(--ink); }
.review-file { color: var(--muted); font-size: .8rem; font-family: monospace; margin: .7rem 0 0; }
@media (max-width: 760px) { .review-card { grid-template-columns: 1fr; } }

/* --- proof page: disapprove / ask for a redo --- */
.rework { margin-top: 1.7rem; text-align: center; }
.rework-open {
  background: none; border: none; color: var(--muted); font: inherit;
  font-size: .95rem; cursor: pointer; padding: .45rem .6rem; border-radius: 8px;
  transition: color .15s ease;
}
.rework-open:hover { color: var(--accent); }
.rework-card {
  margin: 1rem auto 0; max-width: 560px; text-align: left;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 1.4rem 1.5rem 1.5rem;
}
.rework-kicker {
  color: var(--accent); font-weight: 700; font-size: .78rem;
  letter-spacing: .09em; text-transform: uppercase; margin: 0 0 .35rem;
}
.rework-card h3 { margin: 0 0 .45rem; font-size: 1.4rem; color: var(--ink); }
.rework-lede { color: var(--muted); font-size: .96rem; line-height: 1.5; margin: 0 0 1rem; }
.rework-card textarea {
  width: 100%; box-sizing: border-box; resize: vertical; min-height: 96px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  padding: .75rem .85rem; font: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .15s ease;
}
.rework-card textarea::placeholder { color: #a7a29a; }
.rework-card textarea:focus { outline: none; border-color: var(--accent); }
.rework-actions { display: flex; gap: .7rem; justify-content: flex-end; margin-top: 1rem; }
.rework-actions .btn-primary, .rework-actions .btn-ghost { width: auto; margin: 0; }
.rework-err { color: #c0392b; font-size: .9rem; margin: .75rem 0 0; }

/* --- proof page: single sign, approve/decline --- */
.proof-single {
  margin: 1.7rem auto 0; max-width: 540px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.1rem;
}
.proof-single img { width: 100%; height: auto; display: block; border-radius: 8px; }
.proof-nameplate {
  margin: 1rem auto 0; max-width: 540px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.1rem;
}
.proof-nameplate img {
  width: 100%; height: auto; display: block; border-radius: 8px; background: #fff;
}
.nameplate-cap {
  margin-top: .8rem; color: var(--muted); font-size: .9rem; line-height: 1.5; text-align: center;
}
.proof-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.proof-actions .btn-primary, .proof-actions .btn-ghost { margin: 0; width: auto; }

/* --- on-site checkout page --- */
.checkout-page { padding: 2.5rem 0 4rem; }
.checkout-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.2rem; align-items: start;
  margin-top: 1.6rem;
}
.checkout-summary {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.4rem 1.5rem 1.6rem; position: sticky; top: 1.5rem;
}
.checkout-art { margin: 0 0 1.1rem; border-radius: 10px; overflow: hidden; background: var(--paper); }
.checkout-art img { display: block; width: 100%; height: auto; }
.checkout-lines { display: grid; gap: .55rem; }
.checkout-lines .cl {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .98rem; color: var(--ink);
}
.checkout-lines .cl span:last-child { color: var(--muted); text-align: right; }
.checkout-lines .cl.total {
  border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .7rem;
  font-size: 1.25rem; font-weight: 700;
}
.checkout-lines .cl.total span:last-child { color: var(--ink); }
.checkout-donation { color: var(--accent); font-size: .9rem; margin: .5rem 0 0; }
.checkout-note { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 1rem 0 .6rem; }
.checkout-back { color: var(--muted); font-size: .9rem; text-decoration: none; }
.checkout-back:hover { color: var(--accent); }
.checkout-pay {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.5rem; min-height: 420px;
}
.checkout-loading, .checkout-err { color: var(--muted); text-align: center; padding: 3rem 1rem; }
.checkout-err a { color: var(--accent); }
@media (max-width: 800px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  /* Mobile: the sign ran edge-to-edge in the card (a wide dog's paw sat right on the
     rounded corner, which reads as cropped) and a tall portrait sign rendered ~430px
     and swallowed the whole screen. Give it breathing room and cap the height.
     object-fit:contain is the guarantee — the WHOLE sign is always visible, never
     cropped, whatever the dog's aspect ratio. */
  .checkout-art { padding: .75rem; }
  .checkout-art img { max-height: 42vh; object-fit: contain; margin: 0 auto; }
}

/* --- promo code --- */
.promo { margin: 1rem 0 .2rem; border-top: 1px solid var(--line); padding-top: .9rem; }
.promo label {
  display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .4rem;
}
.promo-row { display: flex; gap: .5rem; }
.promo-row input {
  flex: 1; min-width: 0; padding: .6rem .7rem; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 8px; background: var(--paper);
  color: var(--ink); text-transform: uppercase;
}
.promo-row input::placeholder { text-transform: none; color: var(--muted); }
.promo-row input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.promo-row button {
  flex: 0 0 auto; padding: .6rem 1.1rem; border: 0; border-radius: 8px; cursor: pointer;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .95rem;
}
.promo-row button:disabled { opacity: .55; cursor: default; }
.promo-msg { margin: .45rem 0 0; font-size: .88rem; color: var(--muted); min-height: 1.1em; }
.promo-msg.ok { color: #1b7a43; }
.promo-msg.err { color: #b3261e; }
.checkout-lines .cl-discount span:last-child { color: #1b7a43; font-weight: 600; }

/* --- checkout-time options: finish + give-back (both moved off the order form so
   the customer decides them against a live price) --- */
.co-opt { margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: .9rem; }
.co-opt-head {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .55rem;
}
.finish-pick-co { display: grid; gap: .5rem; }
/* In the narrow summary column the cards read better as rows. .finish-card is a COLUMN
   flex, so the swatch (height only, no width) collapses to a line once the cross-axis
   stops stretching — give it an explicit size. */
.finish-pick-co .finish-card {
  flex-direction: row; align-items: center; gap: .7rem; padding: .6rem .7rem;
}
.finish-pick-co .finish-swatch { flex: 0 0 44px; width: 44px; height: 44px; }
.finish-pick-co .finish-meta { flex: 1; min-width: 0; }
.finish-pick-co .finish-meta small { display: block; line-height: 1.35; }
.finish-pick-co .finish-price { margin-top: 0; flex: 0 0 auto; white-space: nowrap; }
.co-toggle { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem;
  line-height: 1.45; cursor: pointer; }
.co-toggle input { margin-top: .25rem; flex: 0 0 auto; }
.co-shelter { display: grid; gap: .6rem; margin-top: .75rem; }
.co-shelter label { display: grid; gap: .25rem; font-size: .85rem; color: var(--muted); }
.co-shelter input {
  padding: .55rem .65rem; font-size: .95rem; border: 1px solid var(--line);
  border-radius: 8px; background: var(--paper); color: var(--ink);
}
.co-shelter input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.co-shelter button {
  justify-self: start; padding: .5rem 1rem; border: 0; border-radius: 8px;
  background: var(--ink); color: #fff; font-weight: 600; cursor: pointer; font-size: .9rem;
}
.co-msg { margin: .4rem 0 0; font-size: .86rem; color: var(--muted); min-height: 1.1em; }
.co-msg.ok { color: #1b7a43; }
.co-msg.err { color: #b3261e; }

/* --- outreach command center --- */
.or-stats { display: flex; gap: 1.4rem; margin: 1.2rem 0; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem 1.2rem; }
.or-stats span { color: var(--muted); font-size: .95rem; }
.or-stats b { color: var(--ink); font-size: 1.15rem; margin-right: .3rem; }
.or-actions { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.or-actions select { padding: .55rem .7rem; border: 1px solid var(--line); border-radius: 8px;
  background: var(--card); color: var(--ink); }
.or-msg { color: var(--accent); font-size: .92rem; }
.or-list { display: grid; gap: 1rem; }
.or-card { background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.2rem; }
.or-head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.or-loc { color: var(--muted); font-size: .9rem; }
.or-tag { display: inline-block; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .05em; padding: .15rem .5rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); margin-left: .45rem; }
.or-status-drafted { border-color: var(--accent); color: var(--accent); }
.or-status-replied { background: var(--accent); color: #fff; border-color: var(--accent); }
.or-status-partner { background: #1d7a3e; color: #fff; border-color: #1d7a3e; }
.or-links { display: flex; gap: 1rem; font-size: .9rem; margin-top: .35rem; flex-wrap: wrap; }
.or-links a { color: var(--accent); }
.or-links span { color: var(--muted); }
.or-fit { color: var(--muted); font-size: .92rem; margin-top: .4rem; }
.or-card details { margin-top: .7rem; border-top: 1px dashed var(--line); padding-top: .6rem; }
.or-card summary { cursor: pointer; color: var(--ink); font-weight: 600; font-size: .95rem; }
.or-card textarea { width: 100%; margin-top: .6rem; padding: .7rem .8rem;
  border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: .92rem;
  background: var(--bg, #fff); color: var(--ink); }
.or-btns { display: flex; gap: .6rem; margin-top: .55rem; flex-wrap: wrap; }
.or-btns .btn-primary, .or-btns .btn-ghost { width: auto; margin: 0;
  padding: .5rem .95rem; font-size: .88rem; }

/* --- customer testimonials (homepage) — distinct from the /review QC page's .review-* --- */
.testimonials { background: var(--paper-2); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem; justify-items: center;
}
.testimonial-card {
  margin: 0; position: relative; max-width: 640px; width: 100%;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 2.2rem 2rem 1.7rem;
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: .35rem; left: 1.3rem;
  font-family: Georgia, 'Times New Roman', serif; font-size: 4.6rem; line-height: 1;
  color: var(--accent); opacity: .2;
}
.testimonial-card blockquote {
  margin: 0; position: relative;
  font-size: 1.24rem; line-height: 1.55; color: var(--ink);
}
.testimonial-card figcaption { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .15rem; }
.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink); font-size: 1.05rem;
}
.testimonial-name::before { content: "— "; color: var(--muted); }
.testimonial-note { color: var(--muted); font-size: .9rem; }
@media (max-width: 480px) {
  .testimonial-card { padding: 1.7rem 1.3rem 1.4rem; }
  .testimonial-card blockquote { font-size: 1.12rem; }
}

/* free-shipping line on checkout + pack/ship link in admin */
.cl-free { color: #1d7a3e; font-weight: 700; letter-spacing: .04em; }
.pack-link { display: inline-block; margin-top: .35rem; color: var(--accent) !important;
  font-weight: 600; white-space: nowrap; }

/* Comp ($0) checkout — Brody/family orders skip Stripe entirely, so the pay column
   shows a plain "place it" affordance instead of the embedded card form. */
.comp-box{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-md);padding:2rem 1.8rem;text-align:center}
.comp-lead{color:var(--muted);max-width:32ch;margin:0 auto 1.4rem;line-height:1.45}
.comp-box .btn-primary{width:100%}

/* ---- Info pages (FAQ / contact / policies) ------------------------------- */
.info-page{ max-width: 46rem; padding: 3rem 1.1rem 5rem; }
.info-head{ margin-bottom: 2.5rem; }
.info-head .overline{ color: var(--accent); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; font-size: .8rem; margin: 0 0 .4rem; }
.info-head h1{ margin: 0 0 .8rem; }
.info-h2{ font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: .04em; margin: 2.8rem 0 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--line); }
.info-list{ padding-left: 1.15rem; line-height: 1.65; }
.info-list li{ margin-bottom: .7rem; }
.info-cta{ margin-top: 3rem; text-align: center; }
.info-cta .btn-primary{ width: auto; display: inline-block; }
/* FAQ accordion */
details.faq{ border: 1px solid var(--line); border-radius: 10px; background: var(--card);
  margin-bottom: .7rem; overflow: hidden; }
details.faq summary{ cursor: pointer; padding: 1rem 1.1rem; font-weight: 600;
  list-style: none; position: relative; padding-right: 2.6rem; }
details.faq summary::-webkit-details-marker{ display: none; }
details.faq summary::after{ content: '+'; position: absolute; right: 1.1rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); line-height: 1; }
details.faq[open] summary::after{ content: '\2013'; }
details.faq summary:hover{ background: var(--paper-2); }
details.faq > p, details.faq > ul{ margin: 0 1.1rem 1rem; color: var(--muted);
  line-height: 1.6; }
details.faq > p:first-of-type{ margin-top: .2rem; }
details.faq strong{ color: var(--ink); }
/* contact + policies bits */
.contact-card{ background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem; text-align: center; }
.contact-card h2{ margin: 0 0 .4rem; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .05em; }
.contact-big{ font-size: 1.25rem; font-weight: 600; margin: 0 0 .6rem; word-break: break-word; }
.contact-note{ color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.5; }
.pol-nav{ display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pol-nav a{ background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .9rem; font-size: .88rem; text-decoration: none; color: var(--ink); }
.pol-nav a:hover{ border-color: var(--accent); color: var(--accent); }
.pol-note{ background: var(--paper-2); border-left: 3px solid var(--accent);
  padding: .8rem 1rem; border-radius: 0 8px 8px 0; color: var(--muted); }
.pol-updated{ margin-top: 2.5rem; color: var(--muted); font-size: .88rem;
  border-top: 1px solid var(--line); padding-top: 1rem; }
.banner-ok{background:#e7f5ec;border:1px solid #b7e0c6;color:#1b5e34;border-radius:10px;
  padding:.7rem 1rem;margin:0 0 1rem;font-weight:600}
.waste-note{color:#5a4a8a;font-weight:700;font-size:.72rem;background:#efeaf7;
            border-radius:3px;padding:.02rem .3rem;display:inline-block;margin-top:.15rem}
