:root {
  --ink: #10241c;
  --mist: #e8f0eb;
  --panel: #f3f7f4;
  --forest: #0f3d2e;
  --copper: #c46a2d;
  --copper-hot: #e08a45;
  --trace: rgba(15, 61, 46, 0.12);
  --line: rgba(16, 36, 28, 0.14);
  --ok: #1a7a4c;
  --err: #a33a2c;
  --font-display: "Syne", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 106, 45, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(15, 61, 46, 0.14), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, var(--mist) 45%, #dfe9e3 100%);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

.trace-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(var(--trace) 1px, transparent 1px),
    linear-gradient(90deg, var(--trace) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 75%);
  animation: drift 28s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

.env-banner {
  position: relative;
  z-index: 5;
  background: var(--copper);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 0.35rem;
}

.top, main, footer, .site-footer { position: relative; z-index: 1; }
main {
  flex: 1 0 auto;
  width: 100%;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  flex-shrink: 0;
  align-self: stretch;
  box-sizing: border-box;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.85);
  backdrop-filter: blur(8px);
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
}
.top nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.75;
  white-space: nowrap;
}
.top nav a:hover { opacity: 1; color: var(--copper); }

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 5rem);
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--forest);
  margin: 0 0 0.75rem;
  animation: rise 0.9s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
  animation: rise 0.9s var(--ease) 0.08s both;
}
.lede {
  margin: 0 0 1.75rem;
  max-width: 40ch;
  opacity: 0.85;
  animation: rise 0.9s var(--ease) 0.16s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.prompt-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: rise 0.9s var(--ease) 0.24s both;
}
.prompt-form label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
textarea {
  width: 100%;
  resize: vertical;
  min-height: 96px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196, 106, 45, 0.18);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.check { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; cursor: pointer; }

button[type="submit"] {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-hot) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.2s var(--ease), filter 0.2s;
}
button[type="submit"]:hover { transform: translateY(-1px); filter: brightness(1.05); }
button[type="submit"]:disabled { opacity: 0.65; cursor: wait; transform: none; }
.btn-spin {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hint { font-size: 0.72rem; opacity: 0.6; margin: 0.75rem 0 0; }

.hero-visual { animation: rise 1s var(--ease) 0.2s both; }
.board-frame {
  aspect-ratio: 4 / 3;
  width: 100%;
  background:
    linear-gradient(145deg, rgba(15, 61, 46, 0.92), rgba(8, 28, 22, 0.96));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(16, 36, 28, 0.18);
}
.board-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(196, 106, 45, 0.08) 22px 23px),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(196, 106, 45, 0.05) 22px 23px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: pulse-grid 4s ease-in-out infinite;
}
@keyframes pulse-grid {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.8; }
}
.board-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  color: rgba(232, 240, 235, 0.55);
  text-align: center;
  padding: 1.5rem;
  z-index: 1;
}
.ghost-board { width: min(70%, 260px); margin: 0 auto; color: rgba(232, 240, 235, 0.45); }
.board-placeholder p { margin: 0; font-size: 0.8rem; }
#board-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  animation: fadein 0.6s var(--ease);
}
@keyframes fadein { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: none; } }

.quote-panel {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--line);
  animation: rise 0.6s var(--ease);
}
.quote-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
}
.quote-head p { margin: 0 0 1.5rem; opacity: 0.75; max-width: 60ch; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.price-block {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.25rem 1.4rem;
}
.price-label { margin: 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.price-label span { color: var(--copper); }
.price-sell {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0.25rem 0;
  color: var(--forest);
  letter-spacing: -0.03em;
}
.price-cost { margin: 0; font-size: 0.85rem; opacity: 0.75; }
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
}
.specs dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.55; margin: 0; }
.specs dd { margin: 0 0 0.35rem; font-weight: 500; }

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.opt {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
}
.opt strong { color: var(--forest); }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn-secondary, .btn-ghost {
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--forest);
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-secondary { background: var(--forest); color: #fff; }
.btn-ghost { background: transparent; color: var(--forest); }
.disclaimer { font-size: 0.72rem; opacity: 0.55; margin-top: 1rem; }

.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.how h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.how ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.how li {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  padding: 1.1rem;
  counter-increment: step;
}
.how li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper);
  margin-bottom: 0.35rem;
}
.how strong { font-family: var(--font-display); }

footer,
.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  padding: 1.75rem 1.5rem 2.25rem;
  font-size: 0.75rem;
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.72);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand p { margin: 0.4rem 0 0; opacity: 0.7; max-width: 28ch; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.75;
}
.footer-nav a:hover { opacity: 1; color: var(--copper); }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0.5rem 0 0; opacity: 0.55; }
.lang-switch {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: 0.35rem;
}
.lang-switch a {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.45;
  border: 1px solid transparent;
  padding: 0.15rem 0.35rem;
}
.lang-switch a.is-active {
  opacity: 1;
  border-color: var(--forest);
  color: var(--forest);
}
.msg.ok { color: var(--ok); }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-size: 0.85rem;
  z-index: 20;
  max-width: min(90vw, 420px);
  text-align: center;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 0.5rem; }
  .quote-grid { grid-template-columns: 1fr; }
  .how ol { grid-template-columns: 1fr; }
  .brand-mark { font-size: clamp(2.4rem, 12vw, 3.5rem); }
}

/* Gallery thumbs */
.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.thumbs .thumb {
  border: 1px solid var(--line);
  background: #0a221a;
  padding: 0;
  width: 64px;
  height: 48px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}
.thumbs .thumb.active { outline: 2px solid var(--copper); }
.thumbs .thumb img,
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumbs.mini img {
  width: 72px;
  height: 54px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.thumbs a { display: inline-block; width: 96px; height: 72px; }
.thumbs a img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.35rem;
}
.sublead { opacity: 0.7; font-size: 0.85rem; margin: 0 0 0.75rem; max-width: 70ch; }
.form-table-wrap { overflow-x: auto; margin-bottom: 0.75rem; }
.form-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.55);
}
.form-table th, .form-table td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.65rem;
  text-align: left;
}
.form-table th { background: rgba(15,61,46,0.08); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.muted { opacity: 0.55; font-size: 0.8rem; }
.link-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.75rem 0 1.25rem; }
#order-cta { display: inline-flex; margin-top: 1rem; text-decoration: none; }

.checkout-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}
.checkout-wrap.wide { max-width: 960px; }
.checkout-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}
.panel {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}
.panel h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
}
.lines { display: grid; gap: 0.45rem; margin-bottom: 0.75rem; }
.line { display: flex; justify-content: space-between; gap: 1rem; font-weight: 500; }
.line.muted { opacity: 0.7; font-weight: 400; }
.fields { display: grid; gap: 0.65rem; }
.fields label { display: grid; gap: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.fields input, .fields textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.status-pill {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(196,106,45,0.18);
  color: #8a3e12;
  margin-bottom: 0.75rem;
}
.status-pill.is-paid { background: rgba(26,122,76,0.18); color: var(--ok); }
.addr { opacity: 0.75; line-height: 1.45; }
.customer-notes {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: rgba(15,61,46,0.06);
  border: 1px solid var(--line);
  white-space: pre-wrap;
}
.customer-notes strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.55;
  margin-bottom: 0.3rem;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.admin-actions form { margin: 0; }
.pcbway-btn { background: linear-gradient(135deg, #0f3d2e, #1a5c44) !important; }
.msg.err { color: var(--err); }
#co-submit { margin-top: 1rem; border: none; cursor: pointer; }

/* ── Landing ──────────────────────────────────────── */
.home {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100dvh - 5.5rem);
  position: relative;
  z-index: 1;
}
.landing-hero-copy .brand-mark {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
}
.landing-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
  animation: rise 0.9s var(--ease) 0.08s both;
}
.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  animation: rise 0.9s var(--ease) 0.22s both;
}
.landing-cta .btn-secondary,
.landing-cta .btn-ghost {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.landing-proof {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
  animation: rise 0.9s var(--ease) 0.3s both;
}
.landing-hero-visual {
  position: relative;
  min-height: min(52vh, 420px);
  border: 1px solid var(--line);
  background: #0a241c;
  overflow: hidden;
  animation: rise 1s var(--ease) 0.12s both;
}
.landing-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: min(52vh, 420px);
  transition: transform 8s var(--ease);
}
.landing-hero-visual:hover img { transform: scale(1.03); }

.landing-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.45rem;
  font-weight: 500;
}
.landing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.section-sub {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  opacity: 0.8;
}

.landing-pipe {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.landing-pipe li {
  padding: 1rem 0.9rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-top: 2px solid var(--forest);
  animation: rise 0.55s var(--ease) both;
}
.landing-pipe li:nth-child(2) { animation-delay: 0.06s; }
.landing-pipe li:nth-child(3) { animation-delay: 0.12s; }
.landing-pipe li:nth-child(4) { animation-delay: 0.18s; }
.pipe-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.landing-pipe strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}
.landing-pipe p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.45;
}

.landing-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}
.path-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.15rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.25s var(--ease);
}
.path-card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}
.path-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.2rem;
}
.path-card p { margin: 0; opacity: 0.75; font-size: 0.9rem; }
.path-card span { color: var(--copper); font-size: 0.85rem; margin-top: 0.35rem; }

.landing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-card {
  display: grid;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  padding: 0.55rem;
  transition: border-color 0.2s, transform 0.25s var(--ease);
}
.gallery-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}
.gallery-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: #0a241c;
  display: block;
}
.gallery-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.gallery-card span { color: var(--copper); font-size: 0.85rem; }

.landing-trust {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}
.landing-trust p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 0.8;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 720px;
}
.faq-list details {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: var(--forest); }
.faq-list details p {
  margin: 0.65rem 0 0;
  opacity: 0.8;
  font-size: 0.92rem;
}

.design-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 2rem;
  }
  .landing-hero-visual { min-height: 220px; }
  .landing-hero-visual img { min-height: 220px; }
  .landing-pipe { grid-template-columns: 1fr 1fr; }
  .landing-paths { grid-template-columns: 1fr; }
  .landing-gallery { grid-template-columns: 1fr 1fr; }
  .landing-trust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .landing-pipe { grid-template-columns: 1fr; }
  .landing-gallery { grid-template-columns: 1fr; }
}

/* ── Wizard ───────────────────────────────────────── */
.wizard-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
  scroll-margin-top: 1rem;
}
/* Hero: only chat, centered in first viewport; size scales with screen */
.wizard-page.is-hero {
  border-top: none;
  max-width: none;
  width: 100%;
  flex: 1 1 auto;
  min-height: calc(100dvh - 3.4rem);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.wizard-page.is-hero.is-past-agent {
  min-height: 0;
  flex: 0 0 auto;
  max-width: 920px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 2.5rem;
}
.wizard-page.is-hero.is-past-agent .agent-stage {
  min-height: 0;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.wizard-page.is-hero.is-past-agent .hero-chat {
  width: min(100%, 52rem);
  max-width: 52rem;
}
.wizard-page.is-hero.is-past-agent .agent-stage {
  justify-content: flex-start;
}
.agent-stage {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: stage-in 0.55s var(--ease) both;
}
@keyframes stage-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
/* Full-height hero: IN | main | OUT — rails span entire hero */
.hero-chat {
  width: 100%;
  flex: 1 1 auto;
  min-height: calc(100dvh - 3.4rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
}
.hero-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.25rem, 3.4vh, 2.25rem);
  padding: clamp(0.55rem, 1.6vh, 1rem) clamp(0.85rem, 2.5vw, 1.5rem) clamp(1.25rem, 3.2vh, 2rem);
}
.hero-orient {
  text-align: center;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
  flex-shrink: 0;
  animation: rise 0.5s var(--ease) both;
}
.hero-orient-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.hero-orient-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.55rem;
  color: var(--forest);
  text-wrap: pretty;
  line-height: 1.05;
}
.hero-orient-sub {
  margin: 0;
  font-size: clamp(0.82rem, 1.45vw, 0.98rem);
  opacity: 0.68;
  line-height: 1.45;
  max-width: 38rem;
  margin-inline: auto;
}
.hero-core {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2.2vh, 1.25rem);
  max-width: 48rem;
  width: min(100%, 48rem);
  margin-inline: auto;
}
.hero-note--in {
  justify-self: stretch;
}
.hero-note--out {
  justify-self: stretch;
}
.wizard-page.is-hero #step-1 {
  width: 100%;
  margin: 0;
  flex: 0 0 auto;
  display: block;
}
.wizard-page.is-hero .agent-shell {
  flex: 0 0 auto;
}
/* Full-height vertical rails */
.hero-note {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.55rem;
  height: 100%;
  min-height: 100%;
  max-width: none;
  padding: 0;
  border: none;
  animation: rise 0.6s var(--ease) 0.1s both;
}
.hero-note::before { display: none; }
.hero-note-mark {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  letter-spacing: 0.32em;
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 1rem 0.2rem;
  border-right: 1px solid rgba(196, 106, 45, 0.45);
  background:
    linear-gradient(180deg, rgba(196, 106, 45, 0.12), transparent 35%, transparent 65%, rgba(15, 61, 46, 0.07));
  flex-shrink: 0;
}
.hero-note--out .hero-note-mark {
  border-right: none;
  border-left: 1px solid rgba(196, 106, 45, 0.45);
  transform: none;
}
.hero-note-copy {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 0.2rem;
  flex: 1 1 auto;
  align-self: stretch;
  min-height: 0;
}
.hero-note--out .hero-note-copy {
  transform: none;
  text-align: start;
}
.hero-note--out { flex-direction: row; }
.hero-note-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  margin: 0;
  color: var(--forest);
  letter-spacing: 0.12em;
  line-height: 1.25;
  white-space: nowrap;
}
.hero-note-body {
  margin: 0;
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  opacity: 0.68;
  max-height: none;
}
.path-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  position: relative;
  padding: 0.35rem 0 0.85rem;
  margin-bottom: 0.15rem;
}
.path-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--copper), var(--line), transparent);
  pointer-events: none;
}
.path-map-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.15rem;
  position: relative;
  z-index: 1;
}
.path-map-item strong {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--forest);
  background: var(--mist);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.path-map-item span {
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  opacity: 0.55;
  line-height: 1.3;
}
.path-map-item.is-now strong {
  border-color: var(--copper);
  color: var(--copper);
}
.path-map-item.is-now span { opacity: 0.9; color: var(--forest); }
.hero-starters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 1.15rem 0.45rem;
  border-top: 1px solid rgba(16, 36, 28, 0.06);
  background: rgba(243, 247, 244, 0.4);
}
.hero-starters-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-right: 0.15rem;
}
.hero-starter {
  font: inherit;
  font-size: 0.75rem;
  color: var(--forest);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15, 61, 46, 0.28);
  padding: 0.1rem 0;
  cursor: pointer;
  opacity: 0.8;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.hero-starter:hover {
  opacity: 1;
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.hero-reassure {
  margin: 0;
  font-size: 0.7rem;
  opacity: 0.55;
  flex: 1;
  text-align: left;
}
/* Minimal CTAs under chat — typographic, not card buttons */
.hero-after {
  margin-top: clamp(1rem, 2.4vh, 1.5rem);
  padding-top: clamp(0.85rem, 2vh, 1.15rem);
  border-top: 1px dashed rgba(16, 36, 28, 0.16);
  text-align: center;
  animation: rise 0.55s var(--ease) 0.16s both;
}
.hero-after-or {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
}
.hero-after-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem 1.5rem;
}
.hero-after-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--forest);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid var(--copper);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-after-cta:hover {
  color: var(--copper);
  transform: translateY(-1px);
}
.hero-after-cta-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}
.hero-after-cta-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-after-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.55;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.hero-after-link:hover {
  opacity: 1;
  color: var(--forest);
  border-bottom-color: rgba(15, 61, 46, 0.35);
}
.wizard-page.is-hero.is-past-agent .hero-orient,
.wizard-page.is-hero.is-past-agent .hero-note,
.wizard-page.is-hero.is-past-agent .path-map,
.wizard-page.is-hero.is-past-agent .hero-starters,
.wizard-page.is-hero.is-past-agent .hero-reassure,
.wizard-page.is-hero.is-past-agent .hero-after {
  display: none;
}
.wizard-page.is-hero.is-past-agent .hero-chat {
  display: block;
  min-height: 0;
  max-width: 52rem;
  margin: 0 auto;
  width: min(100%, 52rem);
  padding: 0.75rem 1.5rem 2rem;
}
.wizard-page.is-hero.is-past-agent .hero-main {
  padding: 0;
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .hero-chat {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-main {
    padding: clamp(0.55rem, 1.6vh, 0.9rem) clamp(0.85rem, 3vw, 1.25rem) 1.25rem;
  }
  .hero-core {
    max-width: none;
    width: 100%;
  }
  .hero-note {
    min-height: 0;
    height: auto;
    border-left: 2px solid rgba(196, 106, 45, 0.4);
    padding: 0.15rem 0.85rem;
  }
  .hero-note-mark,
  .hero-note-copy {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .hero-note-mark {
    border: none;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    padding: 0.3rem 0.45rem;
    align-self: center;
    background: rgba(196, 106, 45, 0.08);
  }
  .hero-note--out .hero-note-mark { border: none; }
  .hero-note-copy {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
    padding: 0.3rem 0.45rem;
  }
  .hero-note-title {
    white-space: normal;
    letter-spacing: -0.02em;
  }
  .path-map { grid-template-columns: repeat(2, 1fr); }
  .path-map::before { display: none; }
}
.home-below {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding-top: 0.25rem;
}
#boards { scroll-margin-top: 1.25rem; }

.steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 0 0.15rem;
  margin: 0 0 0.15rem;
  width: 100%;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.steps .step {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.55rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: clamp(0.58rem, 1.6vw, 0.68rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: -1px;
}
.steps .step span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--copper);
}
.steps .step.is-active {
  opacity: 1;
  border-bottom-color: var(--copper);
  background: transparent;
}
.steps .step.is-done { opacity: 0.8; }

.wiz-panel {
  animation: rise 0.45s var(--ease);
}
.wizard-page.is-hero #step-1 {
  width: 100%;
  margin: 0;
}
.wiz-panel h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.wiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  align-items: center;
}

.agent-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  box-shadow: 0 12px 36px rgba(16, 36, 28, 0.06);
  animation: rise 0.55s var(--ease) 0.08s both;
}
.chat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 0 0 auto;
  height: clamp(13.5rem, 38vh, 22rem);
  min-height: 13.5rem;
  max-height: clamp(13.5rem, 38vh, 22rem);
  overflow-y: auto;
  padding: 0.95rem 1.1rem;
  margin: 0;
  background: transparent;
  border: none;
  justify-content: flex-start;
}
.bubble {
  max-width: 92%;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.45;
  animation: rise 0.35s var(--ease);
}
.bubble.agent {
  align-self: flex-start;
  background: var(--forest);
  color: #e8f0eb;
}
.bubble.user {
  align-self: flex-end;
  background: rgba(196, 106, 45, 0.16);
  border: 1px solid rgba(196, 106, 45, 0.35);
}
.chat-form {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
  background: rgba(243, 247, 244, 0.65);
}
.chat-form input {
  flex: 1;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
}
.chat-form input:focus {
  outline: 2px solid rgba(196, 106, 45, 0.35);
  outline-offset: 0;
  border-color: rgba(196, 106, 45, 0.55);
}
.chat-form button {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--copper), var(--copper-hot));
  color: #fff;
  padding: 0 1.15rem;
  cursor: pointer;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.chat-form button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.agent-shell-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  padding: 0.75rem 1.2rem 0.95rem;
  margin-top: 0.1rem;
  border-top: 1px solid rgba(16, 36, 28, 0.06);
  background: rgba(243, 247, 244, 0.4);
}
.btn-text {
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--forest);
  background: none;
  border: none;
  padding: 0.2rem 0;
  cursor: pointer;
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.btn-text:hover { opacity: 1; color: var(--copper); }

.specs-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
}
.specs-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.specs-form label.full { grid-column: 1 / -1; }
.specs-form input,
.specs-form select,
.specs-form textarea {
  font: inherit;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.gallery-layout { margin: 1rem 0; }
.price-block.big .price-sell { font-size: clamp(2.8rem, 7vw, 4rem); }

@media (max-width: 640px) {
  .specs-form { grid-template-columns: 1fr; }
  .steps .step { font-size: 0.65rem; padding: 0.3rem 0.45rem; }
}

/* ── Account / shop ───────────────────────────────── */
.brand-mark.sm {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.35rem;
}
.auth-page,
.account-page,
.shop-page,
.cart-page,
.product-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}
.auth-page { max-width: 480px; }
.auth-tabs,
.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}
.auth-tabs a,
.account-tabs a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  opacity: 0.65;
}
.auth-tabs a.is-active,
.account-tabs a.is-active {
  opacity: 1;
  border-color: var(--forest);
  background: rgba(255,255,255,0.9);
  color: var(--forest);
}
.auth-form .full { grid-column: 1 / -1; }
.account-panel h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.panel-head h2 { margin: 0; }
.empty { opacity: 0.7; }
.item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  animation: rise 0.4s var(--ease) both;
}
.item-main { display: grid; gap: 0.2rem; }
.item-main strong {
  font-family: var(--font-display);
  font-weight: 700;
}
.meta { font-size: 0.75rem; opacity: 0.65; }
.item-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.item-actions a,
.linkish {
  font-size: 0.78rem;
  color: var(--copper);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
}
.item-actions a:hover,
.linkish:hover { color: var(--forest); }

.cart-item {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.cart-thumb {
  width: 64px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: #0a241c;
}
.cart-desc {
  display: block;
  max-width: 48ch;
  margin-top: 0.15rem;
}
.cart-specs {
  width: 100%;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
  animation: rise 0.3s var(--ease);
}
.form-table.compact { font-size: 0.82rem; }
.form-table.compact td,
.form-table.compact th { padding: 0.35rem 0.5rem; }
@media (max-width: 720px) {
  .cart-item-top { flex-wrap: wrap; }
}

.shop-hero h1,
.cart-page h1,
.product-page h1,
.account-hero h1,
.auth-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.shop-filters select,
.shop-filters input {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.shop-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  animation: rise 0.5s var(--ease) both;
}
.shop-card-link { text-decoration: none; color: inherit; display: grid; gap: 0.35rem; }
.shop-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.02em;
}
.shop-price { margin: 0; color: var(--copper); font-weight: 500; }
.shop-desc { margin: 0; font-size: 0.8rem; opacity: 0.75; }
.shop-card-actions { display: flex; gap: 0.45rem; margin-top: auto; }
.shop-card-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.shop-card-img.tall {
  height: min(52vh, 400px);
  object-fit: contain;
  background: #141414;
}
.gallery-card img {
  object-fit: cover;
  object-position: center;
  height: 130px;
  background: #141414;
}
.shop-card-art {
  height: 120px;
  background:
    radial-gradient(circle at 30% 30%, rgba(196,106,45,0.35), transparent 45%),
    linear-gradient(145deg, var(--forest), #1a5c44 55%, #0a2a1f);
  position: relative;
  overflow: hidden;
}
.shop-card-art::after {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border: 1px solid rgba(232,240,235,0.35);
  background:
    repeating-linear-gradient(90deg, rgba(232,240,235,0.12) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(0deg, rgba(232,240,235,0.1) 0 1px, transparent 1px 10px);
}
.shop-card-art.tall { height: min(48vh, 360px); }
.shop-card-art[data-cat="power"] { filter: hue-rotate(-12deg); }
.shop-card-art[data-cat="audio"] { filter: hue-rotate(28deg); }
.shop-card-art[data-cat="sensors"] { filter: hue-rotate(70deg) saturate(0.85); }
.btn-ghost.is-fav { color: var(--copper); border-color: rgba(196,106,45,0.45); }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}
.product-page .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.product-page .tags span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  padding: 0.2rem 0.45rem;
  opacity: 0.75;
}
.back-link {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.7;
  text-decoration: none;
}
.back-link:hover { opacity: 1; color: var(--copper); }

@media (max-width: 720px) {
  .product-layout { grid-template-columns: 1fr; }
  .item-row { flex-direction: column; align-items: flex-start; }
}
