:root {
  --bg: #080705;
  --bg-2: #11100c;
  --panel: #15120c;
  --panel-2: #1e190f;
  --text: #f8efd7;
  --muted: #b9ad90;
  --gold: #f0bd45;
  --gold-2: #b97f23;
  --red: #a03425;
  --green: #6d8a35;
  --blue: #3b6f7d;
  --line: rgba(240, 189, 69, 0.25);
  --soft-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 12% 12%, rgba(240, 189, 69, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(96, 65, 26, 0.38), transparent 24rem),
    linear-gradient(135deg, var(--bg) 0%, #12100a 52%, #080705 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 5, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), transparent 38%),
    linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #0a0703;
  font-family: Cinzel, serif;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 0 34px rgba(240, 189, 69, 0.18);
}

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

.brand strong {
  font-family: Cinzel, serif;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.menu-item:hover > a {
  color: var(--gold);
}

.menu-item {
  position: relative;
  padding: 0.85rem 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  display: none;
  width: min(38rem, 80vw);
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 13, 8, 0.96);
  box-shadow: var(--shadow);
}

.menu-item:hover .mega-menu {
  display: grid;
}

.mega-menu a {
  padding: 0.85rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.mega-menu strong,
.mega-menu span {
  display: block;
}

.mega-menu span {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cart-count {
  display: inline-grid;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.nav-cta,
.button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta {
  border-color: var(--line);
  background: rgba(240, 189, 69, 0.1);
  color: var(--gold);
}

.button:hover,
.card-button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.primary {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), transparent 35%),
    linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #090703;
}

.ghost,
.card-button {
  border-color: var(--line);
  background: rgba(11, 10, 7, 0.7);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.52fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 80vh;
  padding: clamp(4.5rem, 8vw, 7.2rem) clamp(1rem, 4vw, 4rem) clamp(2.2rem, 5vw, 4rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.64)),
    radial-gradient(circle at 72% 36%, rgba(240, 189, 69, 0.16), transparent 22rem),
    linear-gradient(145deg, #21170b, #080705 68%);
}

.hero-bg::before {
  position: absolute;
  inset: 8% 6%;
  content: "";
  border: 1px solid rgba(240, 189, 69, 0.12);
  border-radius: 8px;
  transform: skewY(-2deg);
}

.hero-bg::after {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: min(36vw, 28rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(240, 189, 69, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, rgba(240, 189, 69, 0.14) 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(240, 189, 69, 0.1) 46% 54%, transparent 55%);
  opacity: 0.8;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Cinzel, serif;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 46rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-panel {
  width: min(100%, 25rem);
  justify-self: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(15, 13, 9, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-panel ol {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.8rem;
  padding: 0.85rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-panel li span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.hero-panel small {
  color: var(--muted);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin: -1.7rem clamp(1rem, 4vw, 4rem) 0;
  position: relative;
  z-index: 2;
}

.category-strip a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.4rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(17, 14, 9, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.category-strip span,
.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, #3a2a15, #12100c);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 4rem) 0;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft-line);
}

.trust-strip div {
  padding: 1.1rem;
  background: rgba(18, 17, 14, 0.9);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section,
.request-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(16rem, 0.35fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) 1fr;
  gap: 1rem;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 5.8rem;
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 11, 7, 0.82);
}

.filter-panel strong {
  margin-bottom: 0.3rem;
  color: var(--gold);
}

.filter-button {
  width: 100%;
  min-height: 2.6rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  padding: 0 0.8rem;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--line);
  color: var(--gold);
  background: rgba(240, 189, 69, 0.08);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 13, 9, 0.86);
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 82% 18%, rgba(240, 189, 69, 0.12), transparent 9rem);
}

.service-card.featured {
  border-color: rgba(240, 189, 69, 0.42);
}

.service-card:hover {
  border-color: var(--line);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  overflow: hidden;
  font-size: 0;
}

.service-icon img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 0.2rem 0.35rem rgba(0, 0, 0, 0.55));
}

.service-icon:has(img)::before,
.service-icon:has(img)::after {
  display: none;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-icon.coin {
  background: linear-gradient(145deg, #58400f, #151007);
}

.service-icon.coin::before {
  width: 2.15rem;
  height: 1.55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 32%, #ffe084 0 12%, transparent 13%),
    linear-gradient(145deg, #f3c34d, #9c7119);
  box-shadow: -0.5rem 0.45rem 0 -0.12rem #d89e2e, 0.45rem 0.4rem 0 -0.14rem #b98420;
  transform: rotate(-14deg);
}

.service-icon.fire {
  background: linear-gradient(145deg, #4c1713, #130908);
}

.service-icon.fire::before {
  width: 1.3rem;
  height: 2.25rem;
  border-radius: 0 0 0.7rem 0.7rem;
  background:
    radial-gradient(circle at 50% 42%, #1a1411 0 18%, transparent 19%),
    repeating-linear-gradient(135deg, #f0aa23 0 0.28rem, #6f1d18 0.3rem 0.55rem, #181413 0.58rem 0.9rem);
  clip-path: polygon(50% 0, 88% 12%, 100% 74%, 50% 100%, 0 74%, 12% 12%);
  transform: rotate(-18deg);
}

.service-icon.fire::after {
  width: 1.25rem;
  height: 0.5rem;
  top: 0.35rem;
  right: 0.38rem;
  border: 0.18rem solid #2e2a2a;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: rotate(25deg);
}

.service-icon.ember {
  background: linear-gradient(145deg, #3d2714, #11100c);
}

.service-icon.ember::before {
  width: 1.6rem;
  height: 2.25rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, transparent 0 18%, #244f5c 19% 64%, transparent 65%),
    radial-gradient(circle at 50% 50%, #b64a3d 0 18%, transparent 19%),
    linear-gradient(145deg, #7b5126, #2a1a10);
  transform: rotate(-22deg);
}

.service-icon.ember::after {
  width: 1.8rem;
  height: 0.75rem;
  top: 0.15rem;
  left: 0.25rem;
  background: linear-gradient(90deg, transparent 0 22%, #d6a33d 23% 34%, transparent 35% 43%, #d6a33d 44% 55%, transparent 56%);
  transform: rotate(-22deg);
}

.service-icon.blood {
  background: linear-gradient(145deg, #251817, #0d0908);
}

.service-icon.blood::before {
  width: 2.05rem;
  height: 2.45rem;
  background:
    radial-gradient(ellipse at 50% 45%, #e23621 0 14%, transparent 15%),
    linear-gradient(145deg, #4c4848, #171313);
  clip-path: polygon(50% 0, 66% 22%, 88% 14%, 78% 48%, 98% 66%, 68% 72%, 50% 100%, 32% 72%, 2% 66%, 22% 48%, 12% 14%, 34% 22%);
}

.service-icon.oath {
  background: linear-gradient(145deg, #2b2a21, #0e0d09);
}

.service-icon.oath::before {
  width: 2.25rem;
  height: 2.25rem;
  background:
    linear-gradient(35deg, transparent 0 38%, #d82d18 39% 58%, transparent 59%),
    linear-gradient(145deg, #89856f, #36331f);
  clip-path: polygon(20% 4%, 54% 36%, 82% 12%, 65% 52%, 96% 88%, 54% 72%, 28% 96%, 36% 58%, 5% 28%);
  transform: rotate(-8deg);
}

.service-icon.fang {
  background: linear-gradient(145deg, #2d241e, #0e0b09);
}

.service-icon.fang::before,
.service-icon.fang::after {
  width: 0.75rem;
  height: 2.2rem;
  background: linear-gradient(160deg, #d7c9a9, #766c55);
  clip-path: polygon(50% 0, 100% 90%, 52% 100%, 0 90%);
}

.service-icon.fang::before {
  left: 0.75rem;
  transform: rotate(22deg);
}

.service-icon.fang::after {
  right: 0.75rem;
  transform: rotate(-22deg);
}

.service-icon.crystal,
.service-icon.oath {
  background: linear-gradient(145deg, #315965, #111a1d);
}

.service-icon.crystal::before {
  width: 2rem;
  height: 2rem;
  border: 0.28rem solid #4f74ce;
  background: #777171;
  clip-path: polygon(50% 0, 92% 18%, 100% 58%, 72% 100%, 28% 100%, 0 58%, 8% 18%);
}

.service-icon.crystal::after {
  width: 2.2rem;
  height: 0.28rem;
  background: rgba(160, 190, 255, 0.48);
  box-shadow: 0 0 0 0.18rem rgba(49, 83, 160, 0.75);
  transform: rotate(45deg);
}

.service-icon.shield {
  background: linear-gradient(145deg, #302612, #11100c);
}

.service-icon.shield::before {
  width: 2rem;
  height: 2.3rem;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(230, 190, 88, 0.85) 44% 56%, transparent 57%),
    linear-gradient(0deg, transparent 0 43%, rgba(230, 190, 88, 0.85) 44% 56%, transparent 57%),
    linear-gradient(145deg, #5d4b1e, #1a1510);
  clip-path: polygon(50% 0, 88% 16%, 82% 72%, 50% 100%, 18% 72%, 12% 16%);
}

.service-icon.scroll {
  background: linear-gradient(145deg, #3b2b15, #120e08);
}

.service-icon.scroll::before {
  width: 2.25rem;
  height: 1.65rem;
  border-radius: 0.25rem;
  background:
    linear-gradient(90deg, #8a6731 0 10%, transparent 11% 89%, #8a6731 90%),
    repeating-linear-gradient(0deg, #d7bd7a 0 0.22rem, #c29b52 0.23rem 0.27rem);
  transform: rotate(-12deg);
}

.service-icon.scroll::after {
  width: 1.25rem;
  height: 0.18rem;
  background: #6f4c23;
  box-shadow: 0 0.42rem 0 #6f4c23, 0 0.84rem 0 #6f4c23;
  transform: rotate(-12deg);
}

.service-icon.blade {
  background: linear-gradient(145deg, #302019, #0c0908);
}

.service-icon.blade::before {
  width: 2.3rem;
  height: 2.3rem;
  background:
    radial-gradient(circle at 62% 38%, #ff3a1e 0 10%, transparent 11%),
    linear-gradient(145deg, #514747, #1d1717);
  clip-path: polygon(14% 45%, 35% 18%, 50% 0, 65% 18%, 86% 45%, 68% 72%, 50% 100%, 32% 72%);
}

.service-icon.blade::after {
  width: 2.3rem;
  height: 0.35rem;
  background: #2a2626;
  transform: rotate(-38deg);
}

.service-icon.custom {
  background: linear-gradient(145deg, #3d2c13, #0e0b08);
}

.service-icon.custom::before {
  width: 2rem;
  height: 2rem;
  border: 0.18rem solid var(--gold);
  border-radius: 50%;
}

.service-icon.custom::after {
  width: 1.25rem;
  height: 0.24rem;
  background: var(--gold);
  box-shadow: 0 0 0 0.16rem rgba(240, 189, 69, 0.15);
}

.service-icon.misc {
  background: linear-gradient(145deg, #26311f, #0d0f09);
}

.service-icon.misc::before {
  width: 2rem;
  height: 2rem;
  background:
    radial-gradient(circle at 50% 50%, #11100c 0 20%, transparent 21%),
    conic-gradient(from 0deg, #d6a33d, #80672b, #d6a33d, #80672b, #d6a33d);
  clip-path: polygon(50% 0, 60% 24%, 86% 14%, 76% 40%, 100% 50%, 76% 60%, 86% 86%, 60% 76%, 50% 100%, 40% 76%, 14% 86%, 24% 60%, 0 50%, 24% 40%, 14% 14%, 40% 24%);
}

.service-card-top,
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-between;
}

.service-tag,
.difficulty,
.service-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-tag {
  color: var(--gold);
}

.difficulty.easy {
  color: #a6d36e;
}

.difficulty.normal {
  color: #9cc7d1;
}

.difficulty.hard {
  color: #ffcb73;
}

.difficulty.elite {
  color: #ff8f7e;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  margin: 0.75rem 0 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-meta {
  margin-top: auto;
  margin-bottom: 1rem;
  color: var(--muted);
}

.service-meta span:last-child {
  color: var(--gold);
}

.card-button {
  width: 100%;
  position: relative;
  z-index: 1;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--soft-line);
  background:
    radial-gradient(circle at 78% 20%, rgba(240, 189, 69, 0.08), transparent 24rem),
    rgba(255, 255, 255, 0.02);
}

.request-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.cart-panel {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(11, 10, 7, 0.78);
}

.cart-heading,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-item,
.cart-empty {
  padding: 0.75rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.cart-item span,
.cart-empty,
.cart-panel small {
  color: var(--muted);
}

.cart-item strong {
  display: block;
}

.cart-total {
  padding-top: 0.8rem;
  border-top: 1px solid var(--soft-line);
}

.cart-total strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.remove-item,
.text-button {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
}

.remove-item {
  min-width: 2rem;
  min-height: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-pill {
  display: inline-flex;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(240, 189, 69, 0.08);
  color: var(--gold);
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(11, 10, 7, 0.8);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #0d0c09;
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 3rem;
  padding: 0 0.9rem;
}

textarea {
  resize: vertical;
  min-height: 9rem;
  padding: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 189, 69, 0.12);
}

.request-output {
  display: block;
  min-height: 8rem;
  padding: 0.9rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.55;
  white-space: pre-wrap;
}

.proof-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--soft-line);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: stretch;
}

.proof-feature,
.proof-grid article,
.vouch-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(15, 13, 9, 0.84);
}

.proof-feature {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  justify-content: end;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 70% 18%, rgba(240, 189, 69, 0.18), transparent 12rem),
    linear-gradient(145deg, #2a1a0d, #090806 72%);
}

.proof-image-card {
  position: relative;
  overflow: hidden;
}

.proof-image-card img {
  display: block;
  width: 100%;
  min-height: 12rem;
  max-height: 22rem;
  object-fit: cover;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  margin-bottom: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
}

.proof-feature.proof-image-card {
  justify-content: start;
}

.proof-feature.proof-image-card img {
  min-height: 17rem;
  max-height: 24rem;
}

.proof-feature span,
.proof-grid span {
  color: var(--gold);
  font-weight: 900;
}

.proof-feature p {
  color: var(--muted);
  line-height: 1.6;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.proof-grid article,
.gallery-grid article {
  display: flex;
  min-height: 10.5rem;
  flex-direction: column;
  justify-content: end;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(240, 189, 69, 0.08), transparent 54%),
    #100d08;
}

.proof-grid strong,
.proof-grid span,
.gallery-grid strong {
  display: block;
}

.proof-grid span {
  margin-top: 0.25rem;
  color: var(--muted);
}

.gallery-grid .proof-image-card img {
  min-height: 8rem;
  max-height: 10rem;
}

.vouch-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.vouch-strip article {
  padding: 1rem;
}

.vouch-card img {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: contain;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  background: #080705;
}

.vouch-strip p {
  color: var(--muted);
  line-height: 1.55;
}

.configurator[hidden] {
  display: none;
}

.configurator {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.configurator-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.configurator-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 46rem);
  max-height: min(90vh, 58rem);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 10%, rgba(240, 189, 69, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    #100d08;
  box-shadow: var(--shadow);
}

.config-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.config-copy {
  color: var(--muted);
  line-height: 1.6;
}

.config-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

fieldset {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
}

legend {
  padding: 0 0.4rem;
  color: var(--gold);
  font-weight: 900;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.multi-picker {
  display: grid;
  gap: 0.75rem;
}

.multi-picker[hidden],
.custom-config[hidden],
.form-row[hidden],
fieldset[hidden],
label[hidden] {
  display: none;
}

.custom-config {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.multi-list {
  display: grid;
  gap: 0.5rem;
  max-height: 18rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.multi-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.multi-option input {
  width: 1rem;
  height: 1rem;
}

.multi-option strong,
.multi-option small {
  display: block;
}

.multi-option small {
  color: var(--muted);
  margin-top: 0.15rem;
}

.multi-option b {
  color: var(--gold);
}

.option-card {
  display: grid;
  gap: 0.32rem;
  min-height: 6.8rem;
  padding: 0.8rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:has(input:checked) {
  border-color: var(--line);
  background: rgba(240, 189, 69, 0.09);
}

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

.option-card span {
  color: var(--gold);
  font-weight: 900;
}

.option-card small {
  color: var(--muted);
  line-height: 1.35;
}

.config-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(240, 189, 69, 0.08);
}

.config-summary strong {
  color: var(--gold);
  font-size: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.chat-launcher {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chat-launcher a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 13, 9, 0.95);
  color: var(--gold);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 13, 9, 0.95);
  color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 180ms ease;
}

.toast.visible {
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .shop-layout,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    justify-self: start;
  }

  .category-strip,
  .trust-strip,
  .proof-layout,
  .vouch-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .service-grid,
  .proof-grid,
  .custom-config,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cart-heading,
  .cart-total,
  .cart-item,
  .config-summary,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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