/*
Theme Name: Questline
Theme URI: https://example.com/questline
Author: Copilot
Description: A custom WordPress theme for Questline cosplay masks, helmets, and weapons.
Version: 9.6
Text Domain: questline
*/

:root {
  --ink: #090909;
  --blackened-steel: #131313;
  --steel: #242424;
  --steel-2: #303131;
  --iron: #6f7474;
  --ivory: #f4efe6;
  --plaster: #ebe2d4;
  --plaster-2: #d8cdbc;
  --muted: #c7beb0;
  --charcoal-text: #171717;
  --brass: #b98a4a;
  --brass-bright: #d6ad70;
  --burnished-brass: #9c7441;
  --warm-ivory-text: #efe6d2;
  --forged-edge: #3a3935;
  --hammered-steel: #171716;
  --ember: #b85f36;
  --verdigris: #6f9187;
  --border-dark: rgba(214, 173, 112, 0.28);
  --border-light: rgba(33, 31, 28, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --max-width: 1400px;
  --gutter: clamp(20px, 5vw, 96px);
  --section-y: clamp(72px, 9vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #050505;
  color: var(--ivory);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.42)),
    linear-gradient(to top, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.02) 58%);
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
  opacity: 0.76;
}

.site-forge-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at -8% 74%, rgba(184, 95, 54, 0.38), transparent 42%),
    radial-gradient(ellipse at 78% 18%, rgba(177, 167, 145, 0.1), transparent 36%),
    url("assets/images/hero-forge.png") center center / cover no-repeat;
  filter: saturate(0.84) contrast(1.08) brightness(0.54);
  transform: scale(1.035);
}

.site-forge-backdrop::before,
.site-forge-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.site-forge-backdrop::before {
  background:
    linear-gradient(106deg, transparent 0 18%, rgba(0, 0, 0, 0.22) 23%, transparent 32% 46%, rgba(0, 0, 0, 0.18) 54%, transparent 66%),
    linear-gradient(76deg, transparent 0 32%, rgba(0, 0, 0, 0.12) 38%, transparent 48% 72%, rgba(0, 0, 0, 0.14) 82%, transparent 100%);
  background-size: 150% 150%, 180% 180%;
  mix-blend-mode: multiply;
  opacity: 0.72;
  animation: shadow-dance 4.8s ease-in-out infinite;
}

.site-forge-backdrop::after {
  background:
    radial-gradient(ellipse at -12% 78%, rgba(255, 230, 142, 0.3) 0%, rgba(238, 108, 35, 0.24) 18%, rgba(142, 38, 14, 0.12) 42%, transparent 68%);
  opacity: 0.76;
  animation: fire-light-dance 3.2s ease-in-out infinite;
}

.page-content {
  position: relative;
  z-index: 3;
  transition: opacity 500ms ease, transform 500ms ease, filter 500ms ease;
}

.questline-loading .page-content,
.questline-js body:not(.is-loaded) .page-content {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(28px) brightness(0.66) saturate(0.8);
}

body.is-loaded .page-content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0) brightness(1);
}

body.is-leaving .page-content {
  opacity: 0;
  transform: translateY(-12px) scale(0.965);
  filter: blur(24px) brightness(0.7) saturate(0.8);
}

.page-content > main > section {
  opacity: 0;
  transform: translateY(72px) scale(0.95);
  filter: blur(28px) brightness(0.68);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms ease;
  transition-delay: 120ms;
  will-change: opacity, transform, filter;
}

.page-content > main > section.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.page-content > main > section.page-hero {
  transition-duration: 500ms;
}

.questline-js .page-content .page-reveal {
  opacity: 0;
  transform: translateY(62px) scale(0.95);
  filter: blur(24px) brightness(0.7);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms ease;
  transition-delay: 120ms;
  will-change: opacity, transform, filter;
}

.questline-js .page-content .page-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) brightness(1);
}

.questline-js .page-content .page-hero-reveal {
  transition-duration: 500ms;
}

body.questline-shop-page .page-content,
body.questline-custom-build-page .page-content,
body.questline-shop-page .page-content > main > section,
body.questline-custom-build-page .page-content > main > section,
body.questline-shop-page .page-content .page-reveal,
body.questline-custom-build-page .page-content .page-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

body.questline-custom-build-page .page-content,
body.questline-custom-build-page .page-content > main > section,
body.questline-custom-build-page .page-content .page-reveal {
  transition: none;
}

html.questline-js body.questline-custom-build-page .page-content,
html.questline-js body.questline-custom-build-page .page-content > main > section,
html.questline-js body.questline-custom-build-page .page-content .page-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

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

.announcement-bar {
  position: relative;
  z-index: 30;
  background: #050505;
  border-bottom: 1px solid var(--brass);
}

.announcement-inner {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-inner p {
  margin: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: clamp(20px, 2.2vw, 28px) 0 10px;
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.72), rgba(9, 8, 7, 0.2)),
    radial-gradient(circle at 8% 0%, rgba(184, 95, 54, 0.16), transparent 34%);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.site-header-row {
  --brand-mark-size: clamp(128px, 12.6vw, 184px);
  --brand-gap: clamp(12px, 2.1vw, 26px);
  --header-control-start: calc(var(--brand-mark-size) + var(--brand-gap) + clamp(74px, 7.4vw, 124px));
  --header-control-end: clamp(14px, 2.6vw, 38px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: clamp(106px, 8.8vw, 122px);
  padding: clamp(52px, 4.7vw, 68px) var(--header-control-end) 12px 0;
  background:
    linear-gradient(115deg, rgba(42, 39, 34, 0.7), rgba(16, 15, 13, 0.84) 48%, rgba(45, 37, 29, 0.64)),
    radial-gradient(circle at 4% 50%, rgba(214, 173, 112, 0.26), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px, 24px 24px;
  border: 1px solid rgba(214, 173, 112, 0.24);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 244, 210, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px) saturate(0.86);
  overflow: visible;
}

.site-brand {
  position: absolute;
  left: clamp(-8px, -1vw, 0px);
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--brand-gap);
  width: max-content;
  color: var(--ivory);
}

.brand-mark {
  width: var(--brand-mark-size);
  height: var(--brand-mark-size);
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.72));
  transform: none;
}

.brand-mark img,
.brand-mark .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name {
  color: #c98962;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.62);
  transform: translateY(clamp(-22px, -1.45vw, -13px));
}

.site-center {
  position: relative;
  z-index: 6;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: calc(100% - var(--header-control-start) - var(--header-control-end));
  margin-left: var(--header-control-start);
  min-width: 0;
  justify-self: stretch;
  align-self: end;
  flex-wrap: nowrap;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  min-height: 32px;
  min-width: clamp(70px, 6vw, 88px);
  padding: 7px 11px;
  border: 1px solid rgba(214, 173, 112, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.08), rgba(0, 0, 0, 0.24)),
    rgba(19, 18, 16, 0.42);
  color: var(--warm-ivory-text);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--ivory);
  border-color: rgba(214, 173, 112, 0.68);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.18), rgba(0, 0, 0, 0.24)),
    rgba(29, 25, 20, 0.56);
  transform: translateY(-1px);
}

.site-right {
  display: flex;
  justify-content: flex-end;
}

.site-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  min-width: 44px;
  padding: 7px 10px;
  border: 1px solid rgba(214, 173, 112, 0.34);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.12), rgba(0, 0, 0, 0.24)),
    rgba(19, 18, 16, 0.5);
  color: var(--warm-ivory-text);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-action-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid rgba(214, 173, 112, 0.4);
  background: rgba(214, 173, 112, 0.14);
  color: var(--ivory);
  font-size: 0.62rem;
  line-height: 1;
}

.site-actions a:hover,
.site-actions a:focus {
  color: var(--ivory);
  border-color: rgba(214, 173, 112, 0.72);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.2), rgba(0, 0, 0, 0.24)),
    rgba(29, 25, 20, 0.58);
  transform: translateY(-1px);
}

@media (min-width: 761px) {
  body.home {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.home-landing {
  position: relative;
  min-height: calc(100svh - 109px);
  overflow-x: hidden;
  overflow-y: visible;
  background: transparent;
}

.landing-hero {
  position: relative;
  min-height: calc(100svh - 109px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.landing-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.86) contrast(1.08) brightness(0.58);
  opacity: 0.78;
  transform: scale(1.04);
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.landing-hero::before {
  left: -42vw;
  bottom: -38vh;
  z-index: 0;
  width: min(94vw, 1180px);
  height: min(94vw, 1180px);
  background:
    radial-gradient(ellipse at 56% 48%, rgba(255, 230, 142, 0.86) 0%, rgba(238, 108, 35, 0.54) 17%, rgba(142, 38, 14, 0.26) 39%, transparent 70%),
    radial-gradient(ellipse at 64% 56%, rgba(255, 128, 42, 0.42), transparent 58%);
  opacity: 0.78;
  animation: fire-light-dance 3.2s ease-in-out infinite;
  will-change: opacity, transform;
}

.landing-hero::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(106deg, transparent 0 18%, rgba(0, 0, 0, 0.22) 23%, transparent 32% 46%, rgba(0, 0, 0, 0.18) 54%, transparent 66%),
    linear-gradient(76deg, transparent 0 32%, rgba(0, 0, 0, 0.12) 38%, transparent 48% 72%, rgba(0, 0, 0, 0.14) 82%, transparent 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.04) 56%),
    radial-gradient(ellipse at 6% 84%, rgba(184, 95, 54, 0.42), transparent 42%),
    radial-gradient(ellipse at 78% 18%, rgba(177, 167, 145, 0.1), transparent 36%);
  background-size: 150% 150%, 180% 180%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.78;
  animation: shadow-dance 4.8s ease-in-out infinite;
  will-change: opacity, transform;
}

.forge-fire {
  position: absolute;
  left: clamp(-110px, -7vw, -58px);
  bottom: clamp(-82px, -8vw, -46px);
  z-index: 1;
  width: clamp(250px, 28vw, 440px);
  height: clamp(250px, 28vw, 440px);
  pointer-events: none;
  filter: blur(0.2px);
  animation: fire-body-shift 3.8s ease-in-out infinite;
}

.forge-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100svh;
  pointer-events: none;
}

.forge-fire::before {
  content: "";
  position: absolute;
  inset: 28% 4% 0 18%;
  background:
    radial-gradient(ellipse at 48% 72%, rgba(255, 232, 125, 0.72), transparent 22%),
    radial-gradient(ellipse at 46% 58%, rgba(239, 96, 28, 0.72), transparent 42%),
    radial-gradient(ellipse at 56% 84%, rgba(93, 22, 12, 0.92), transparent 58%);
  border-radius: 48% 52% 42% 58%;
  opacity: 0.9;
  animation: flame-pulse 1.9s ease-in-out infinite;
}

.forge-fire span {
  position: absolute;
  bottom: 14%;
  display: block;
  width: 30%;
  height: 62%;
  border-radius: 62% 38% 56% 44%;
  background:
    radial-gradient(ellipse at 48% 28%, rgba(255, 242, 165, 0.88), transparent 20%),
    linear-gradient(to top, rgba(153, 39, 16, 0.1), rgba(247, 94, 28, 0.7) 46%, rgba(255, 202, 82, 0.86));
  box-shadow:
    0 0 22px rgba(255, 159, 63, 0.6),
    0 0 60px rgba(184, 95, 54, 0.5);
  opacity: 0.8;
  transform-origin: 50% 100%;
  mix-blend-mode: screen;
  animation: flame-sway 1.08s ease-in-out infinite alternate, flame-flicker 0.42s steps(2, end) infinite;
}

.forge-fire span:nth-child(1) {
  left: 15%;
  height: 55%;
  width: 24%;
  animation-duration: 1.26s, 0.5s;
}

.forge-fire span:nth-child(2) {
  left: 32%;
  bottom: 8%;
  width: 32%;
  height: 82%;
  animation-delay: -0.34s, -0.1s;
}

.forge-fire span:nth-child(3) {
  left: 55%;
  height: 50%;
  width: 24%;
  animation-duration: 0.92s, 0.38s;
  animation-delay: -0.68s, -0.22s;
}

.forge-fire span:nth-child(4) {
  left: 42%;
  bottom: 5%;
  width: 18%;
  height: 48%;
  opacity: 0.9;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 255, 208, 0.95), transparent 18%),
    linear-gradient(to top, rgba(255, 126, 39, 0.18), rgba(255, 183, 66, 0.8) 50%, rgba(255, 245, 168, 0.9));
  animation-duration: 0.76s, 0.32s;
  animation-delay: -0.2s, -0.16s;
}

.forge-fire span:nth-child(5) {
  left: 70%;
  bottom: 18%;
  width: 17%;
  height: 42%;
  opacity: 0.72;
  animation-duration: 1.42s, 0.48s;
  animation-delay: -0.52s, -0.28s;
}

.landing-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(28px, 5vw, 62px) 0;
}

.landing-copy {
  max-width: 800px;
}

.landing-copy h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.35rem, 4.9vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.landing-copy .lead {
  max-width: 680px;
  margin: 0;
}

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

.landing-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 24px;
}

.landing-lines a,
.artifact-types span {
  border: 1px solid rgba(214, 173, 112, 0.3);
  background: rgba(0, 0, 0, 0.36);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-lines a {
  padding: 8px 10px;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.landing-lines a:hover,
.landing-lines a:focus {
  border-color: var(--brass-bright);
  background: rgba(185, 138, 74, 0.16);
  color: var(--ivory);
}

.landing-artifact {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
  aspect-ratio: 0.86;
}

.landing-artifact::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  z-index: -1;
  border: 1px solid rgba(214, 173, 112, 0.18);
  background: rgba(0, 0, 0, 0.18);
}

.landing-artifact img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: 52% 50%;
  border: 1px solid rgba(214, 173, 112, 0.26);
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.08);
}

.landing-artifact-gallery {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: var(--shadow);
}

.landing-artifact-gallery img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  animation: hero-catalog-fade 75s ease-in-out infinite;
  animation-delay: var(--slide-delay);
  will-change: opacity, transform, filter;
}

.landing-artifact-gallery img:first-child {
  opacity: 1;
}

@keyframes hero-catalog-fade {
  0% {
    opacity: 0;
    transform: scale(1.015);
    filter: saturate(0.74) contrast(1.04) brightness(0.9);
  }

  1.8%,
  18% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(0.86) contrast(1.08) brightness(1);
  }

  21.5%,
  100% {
    opacity: 0;
    transform: scale(0.992);
    filter: saturate(0.72) contrast(1.04) brightness(0.88);
  }
}

.concept-creation {
  position: relative;
  padding: clamp(58px, 8vw, 118px) 0;
  overflow: hidden;
  background: #050505;
  color: var(--ivory);
}

.concept-creation::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.72) 18%, rgba(5, 5, 5, 0.86) 66%, var(--blackened-steel) 100%),
    radial-gradient(circle at 8% 0%, rgba(184, 95, 54, 0.22), transparent 30%),
    url("assets/images/anvil.png") center center / cover no-repeat;
  opacity: 0.78;
}

.concept-creation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.38), transparent 34%, rgba(5, 5, 5, 0.44));
  background-size: 28px 28px, 28px 28px, 100% 100%;
  background-repeat: repeat, repeat, no-repeat;
  opacity: 0.48;
}

.concept-creation-inner {
  position: relative;
  z-index: 3;
}

.concept-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: clamp(24px, 5vw, 78px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.concept-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.concept-copy h2 {
  grid-column: 1;
  max-width: 820px;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 3.9vw, 4.8rem);
  line-height: 1.02;
}

.concept-copy p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.concept-copy .section-actions {
  grid-column: 2;
  margin-top: 24px;
}

.concept-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 173, 112, 0.32);
  background: #050505;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.concept-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.concept-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.28)),
    linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 38%);
}

.concept-media img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.88) contrast(1.06) brightness(0.86);
}

.artifact-types {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artifact-types span {
  padding: 7px 9px;
}

.ember-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ember-field span {
  position: absolute;
  left: var(--ember-left);
  bottom: -18px;
  width: var(--ember-size);
  height: var(--ember-size);
  background: #ffd27c;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 205, 122, 1), 0 0 42px rgba(255, 116, 42, 0.72);
  opacity: 0;
  transform-origin: center;
  animation: ember-rise var(--ember-duration) cubic-bezier(0.22, 0.68, 0.2, 1) infinite, spark-flicker 0.55s steps(2, end) infinite;
  animation-delay: var(--ember-delay);
}

.ember-field span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255, 213, 136, 0.7), transparent);
  transform: translate(-50%, -8%) rotate(12deg);
}

@keyframes fire-light-dance {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.66;
  }

  18% {
    transform: translate3d(1.4%, -0.8%, 0) scale(1.05);
    opacity: 0.86;
  }

  43% {
    transform: translate3d(-1%, 1.2%, 0) scale(0.96);
    opacity: 0.58;
  }

  68% {
    transform: translate3d(2.2%, -1.4%, 0) scale(1.08);
    opacity: 0.92;
  }
}

@keyframes shadow-dance {
  0%,
  100% {
    opacity: 0.74;
    transform: translate3d(-0.8%, 0.4%, 0) scale(1.012) skewX(0deg);
  }

  28% {
    opacity: 0.92;
    transform: translate3d(0.9%, -0.5%, 0) scale(1.026) skewX(-1.1deg);
  }

  57% {
    opacity: 0.68;
    transform: translate3d(-0.6%, 0.7%, 0) scale(1.006) skewX(0.8deg);
  }

  79% {
    opacity: 0.86;
    transform: translate3d(0.4%, -0.8%, 0) scale(1.02) skewX(-0.6deg);
  }
}

@keyframes forge-flicker {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  21% {
    transform: translate3d(-1.2%, 1.5%, 0) scale(1.04);
    opacity: 0.88;
  }

  48% {
    transform: translate3d(1.5%, -0.8%, 0) scale(0.98);
    opacity: 0.64;
  }

  73% {
    transform: translate3d(-0.6%, -1.2%, 0) scale(1.07);
    opacity: 0.92;
  }
}

@keyframes ember-rise {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.4);
    opacity: 0;
  }

  10% {
    opacity: 0.95;
  }

  28% {
    transform: translate3d(calc(var(--ember-drift) * -0.14), -24vh, 0) rotate(90deg) scale(0.86);
  }

  52% {
    transform: translate3d(calc(var(--ember-drift) * 0.42), -52vh, 0) rotate(210deg) scale(1);
    opacity: 0.62;
  }

  78% {
    transform: translate3d(calc(var(--ember-drift) * 0.8), -74vh, 0) rotate(305deg) scale(0.72);
  }

  100% {
    transform: translate3d(var(--ember-drift), -92vh, 0) rotate(420deg) scale(0.34);
    opacity: 0;
  }
}

@keyframes spark-flicker {
  0%,
  100% {
    filter: brightness(0.92);
  }

  50% {
    filter: brightness(1.85);
  }
}

@keyframes fire-body-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  42% {
    transform: translate3d(-1.4%, 0.8%, 0) scale(1.03);
  }

  72% {
    transform: translate3d(1.2%, -1.5%, 0) scale(0.98);
  }
}

@keyframes flame-pulse {
  0%,
  100% {
    transform: scale(0.94) skewX(-2deg);
    opacity: 0.68;
  }

  45% {
    transform: scale(1.12) translate3d(-2%, -2%, 0) skewX(3deg);
    opacity: 1;
  }
}

@keyframes flame-sway {
  0% {
    transform: translate3d(-3%, 2%, 0) rotate(-10deg) scaleY(0.9) scaleX(1.08);
    opacity: 0.64;
  }

  100% {
    transform: translate3d(4%, -5%, 0) rotate(9deg) scaleY(1.16) scaleX(0.9);
    opacity: 0.92;
  }
}

@keyframes flame-flicker {
  0%,
  100% {
    filter: brightness(0.88) blur(0);
  }

  50% {
    filter: brightness(1.45) blur(0.3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero::before,
  .landing-hero::after,
  .site-forge-backdrop::before,
  .site-forge-backdrop::after,
  .forge-fire,
  .forge-fire::before,
  .forge-fire span,
  .ember-field span,
  .ember-field span::after {
    animation: none;
  }

  .ember-field {
    display: none;
  }

  .landing-artifact-gallery img {
    animation: none;
  }

  .landing-artifact-gallery img:not(:first-child) {
    display: none;
  }

  .shop-stage {
    transition: none;
  }

  .page-content {
    animation: none;
    transition: none;
  }

  .questline-js body:not(.is-loaded) .page-content,
  body.is-loaded .page-content,
  body.is-leaving .page-content {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .page-content > main > section {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .questline-js .page-content .page-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .landing-grid {
    gap: clamp(20px, 4vw, 58px);
    padding: 14px 0 22px;
  }

  .landing-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
  }

  .landing-copy .lead {
    font-size: 0.96rem;
  }

  .landing-actions {
    margin-top: 18px;
  }

  .landing-lines {
    margin-top: 14px;
  }

  .landing-artifact {
    width: min(100%, 300px);
  }
}

.hero-large {
  position: relative;
  min-height: 75vh;
  height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #101010;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(0.86) brightness(0.62);
}

.hero-large::before,
.hero-large::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-large::before {
  background:
    radial-gradient(circle at 78% 34%, rgba(184, 95, 54, 0.38), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.12) 72%);
  z-index: 1;
}

.hero-large::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(52px, 7vw, 88px) 0;
}

.hero-copy {
  max-width: 760px;
}

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

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

.hero h1,
.section-heading h1,
.section-heading h2,
.brand-statement h2,
.commission-copy h2,
.workshop-strip h2,
.final-callout h2,
.newsletter-section h2 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 22px;
  max-width: 820px;
  color: var(--ivory);
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  font-weight: 700;
  line-height: 0.98;
}

.lead,
.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  border: 2px solid var(--forged-edge);
  border-radius: 0;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  overflow: hidden;
  color: var(--warm-ivory-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.72);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, color 180ms ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.button::before {
  z-index: -1;
  inset: 3px;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
}

.button::after {
  background:
    radial-gradient(circle at 12px 12px, #d8d2c3 0 2px, #242321 2.5px 4px, transparent 4.5px),
    radial-gradient(circle at calc(100% - 12px) 12px, #d8d2c3 0 2px, #242321 2.5px 4px, transparent 4.5px),
    radial-gradient(circle at 12px calc(100% - 12px), #d8d2c3 0 2px, #242321 2.5px 4px, transparent 4.5px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), #d8d2c3 0 2px, #242321 2.5px 4px, transparent 4.5px);
  opacity: 0.72;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  filter: grayscale(0.12);
}

.button-primary {
  background:
    linear-gradient(135deg, var(--burnished-brass), transparent 12px) top left,
    linear-gradient(225deg, var(--burnished-brass), transparent 12px) top right,
    linear-gradient(45deg, var(--burnished-brass), transparent 12px) bottom left,
    linear-gradient(315deg, var(--burnished-brass), transparent 12px) bottom right,
    linear-gradient(180deg, #4a4a45, #111110 42%, #070707);
  background-size: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 100% 100%;
  background-repeat: no-repeat;
  border-color: rgba(156, 116, 65, 0.96);
  color: var(--warm-ivory-text);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(239, 230, 210, 0.08),
    inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.button-primary::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--hammered-steel);
  border: 1px solid rgba(239, 230, 210, 0.13);
}

.button-primary:hover,
.button-primary:focus {
  border-color: var(--brass-bright);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(214, 173, 112, 0.28),
    inset 0 0 0 1px rgba(239, 230, 210, 0.12),
    inset 0 0 18px rgba(0, 0, 0, 0.62);
  filter: brightness(1.08);
}

.button-secondary {
  background: rgba(244, 239, 230, 0.94);
  border-color: rgba(58, 57, 53, 0.96);
  color: #171717;
  text-shadow: none;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.button-secondary::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(circle at 32% 20%, rgba(0, 0, 0, 0.05), transparent 18%),
    #f5f0e7;
  border: 1px solid rgba(20, 20, 18, 0.18);
}

.button-secondary::after {
  opacity: 0.5;
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--burnished-brass);
  color: #080808;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(214, 173, 112, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.hero-visual {
  align-self: end;
  justify-self: end;
  width: min(100%, 580px);
  padding-bottom: clamp(16px, 3vw, 44px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: 52% 50%;
  border: 1px solid rgba(214, 173, 112, 0.22);
  box-shadow: var(--shadow);
}

.section {
  padding: var(--section-y) 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 28%),
    var(--blackened-steel);
}

.section-light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 34%),
    radial-gradient(circle at 8% 12%, rgba(185, 138, 74, 0.12), transparent 24%),
    rgba(235, 226, 212, 0.92);
  backdrop-filter: blur(4px);
  color: var(--charcoal-text);
}

.section-heading {
  margin-bottom: clamp(26px, 4vw, 48px);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.05;
}

.text-link,
.quick-action {
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-light .text-link,
.section-light .quick-action {
  color: #6c4b22;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.category-card,
.product-card,
.review-card,
.gallery-tile {
  border-radius: 8px;
}

.category-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  isolation: isolate;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.84));
}

.category-card:hover,
.category-card:focus {
  border-color: var(--brass-bright);
}

.category-image-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.84);
  transition: transform 450ms ease;
}

.category-card:hover img,
.category-card:focus img {
  transform: scale(1.06);
}

.category-copy {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.category-title {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.category-description {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-arrow {
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--brass-bright);
  font-size: 1.2rem;
}

.brand-statement {
  position: relative;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.brass-rule {
  display: block;
  width: 78px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--brass);
}

.brand-statement h2 {
  margin-bottom: 0;
  max-width: 900px;
  color: #141414;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.statement-copy {
  color: #2c2924;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.statement-copy p {
  margin: 0 0 18px;
}

.home-promise-grid {
  display: grid;
  gap: 18px;
}

.promise-item {
  padding: 22px 0 20px;
  border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.promise-item h3 {
  margin-bottom: 8px;
  color: #171717;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
}

.promise-item p {
  margin: 0;
  color: #34312c;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

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

.products-page {
  background: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.shop-catalog {
  min-height: auto;
  padding: clamp(22px, 3.5vw, 52px) 0 clamp(36px, 4.5vw, 72px);
  background:
    radial-gradient(circle at 16% 0%, rgba(184, 95, 54, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18));
}

.category-index {
  min-height: auto;
  padding: clamp(34px, 5vw, 70px) 0 clamp(38px, 5vw, 72px);
}

.shop-stage {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1000ms ease, transform 1000ms ease;
  will-change: opacity, transform;
}

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

.shop-stage.is-exiting {
  opacity: 0;
  transform: translateY(-8px);
}

.category-index[hidden],
.product-catalog[hidden],
.product-category[hidden] {
  display: none;
}

.shop-index-heading {
  max-width: 1120px;
  margin-bottom: clamp(12px, 1.8vw, 22px);
  padding-bottom: clamp(10px, 1.4vw, 16px);
  border-bottom: 1px solid rgba(214, 173, 112, 0.18);
}

.shop-index-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 4.2rem);
}

.shop-index-heading p:not(.eyebrow) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  line-height: 1.45;
}

.shop-filter-panel {
  position: sticky;
  top: clamp(104px, 8.6vw, 136px);
  z-index: 20;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  display: grid;
  gap: 10px;
  padding: clamp(10px, 1.1vw, 14px);
  border: 1px solid rgba(214, 173, 112, 0.32);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.09), rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(184, 95, 54, 0.1), transparent 42%, rgba(111, 145, 135, 0.08)),
    rgba(12, 12, 11, 0.94);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 244, 210, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(16px) saturate(0.9);
}

.shop-filter-panel.is-collapsed {
  gap: 0;
  padding-block: 8px;
}

.shop-filter-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(214, 173, 112, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.16), rgba(0, 0, 0, 0.18)),
    rgba(31, 27, 22, 0.84);
  color: var(--ivory);
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.shop-filter-toggle:hover,
.shop-filter-toggle:focus,
.shop-filter-toggle:focus-visible {
  border-color: rgba(214, 173, 112, 0.68);
  color: var(--ivory);
  outline: none;
}

.shop-filter-toggle-label {
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-filter-toggle-count {
  min-width: 0;
  color: rgba(239, 230, 210, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-filter-toggle-icon {
  justify-self: end;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(239, 230, 210, 0.82);
  border-bottom: 2px solid rgba(239, 230, 210, 0.82);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.shop-filter-panel.is-collapsed .shop-filter-toggle-icon {
  transform: rotate(-135deg);
}

.shop-filter-body {
  display: grid;
  gap: 12px;
  overflow: hidden;
  max-height: 1800px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    max-height 500ms ease,
    opacity 500ms ease,
    transform 500ms ease,
    visibility 0s linear 0s;
}

.shop-filter-panel.is-collapsed .shop-filter-body {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 500ms ease,
    opacity 500ms ease,
    transform 500ms ease,
    visibility 0s linear 500ms;
}

.shop-filter-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(214, 173, 112, 0.16);
  color: rgba(239, 230, 210, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.shop-sort-label {
  color: rgba(214, 173, 112, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-sort-select {
  min-height: 32px;
  min-width: 180px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.06), rgba(0, 0, 0, 0.18)),
    rgba(25, 24, 22, 0.66);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-sort-select:hover,
.shop-sort-select:focus {
  border-color: rgba(214, 173, 112, 0.68);
  outline: none;
}

.shop-filter-groups {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.2fr) minmax(190px, 0.7fr);
  gap: clamp(10px, 1.4vw, 18px);
}

.shop-filter-group {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  padding-top: 2px;
}

.shop-filter-label {
  color: rgba(214, 173, 112, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.shop-filter-chip,
.shop-clear-filters {
  min-height: 32px;
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.06), rgba(0, 0, 0, 0.18)),
    rgba(25, 24, 22, 0.66);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-filter-chip {
  padding: 7px 11px;
}

.shop-clear-filters {
  padding: 7px 12px;
}

.shop-filter-chip:hover,
.shop-filter-chip:focus,
.shop-clear-filters:hover,
.shop-clear-filters:focus {
  border-color: rgba(214, 173, 112, 0.68);
  color: var(--ivory);
  transform: translateY(-1px);
}

.shop-filter-chip.is-active {
  border-color: rgba(214, 173, 112, 0.88);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.28), rgba(184, 95, 54, 0.13)),
    rgba(35, 29, 23, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.12),
    0 0 20px rgba(184, 95, 54, 0.14);
  color: var(--ivory);
}

.shop-products-grid {
  align-items: stretch;
}

.product-card[hidden] {
  display: none;
}

.shop-empty-state {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(214, 173, 112, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.06), transparent 40%),
    rgba(10, 10, 9, 0.72);
  color: var(--muted);
}

.shop-empty-state[hidden] {
  display: none;
}

.shop-empty-state p {
  margin: 0;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: clamp(12px, 1.35vw, 18px);
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: rgba(214, 173, 112, 0.48) rgba(255, 255, 255, 0.06);
}

.shop-category-card {
  position: relative;
  min-height: clamp(174px, 17vw, 236px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(214, 173, 112, 0.32);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(214, 173, 112, 0.22), transparent 44%),
    linear-gradient(145deg, rgba(255, 244, 210, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(35, 34, 30, 0.9), rgba(13, 13, 12, 0.96));
  color: var(--warm-ivory-text);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 210, 0.08),
    inset 0 0 26px rgba(0, 0, 0, 0.42);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.shop-category-card::before,
.shop-category-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shop-category-card::before {
  inset: 0;
  border-top: 2px solid rgba(214, 173, 112, 0.48);
}

.shop-category-card::after {
  inset: auto 14px 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 173, 112, 0.72), transparent);
}

.shop-category-card:hover,
.shop-category-card:focus {
  border-color: rgba(214, 173, 112, 0.72);
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(184, 95, 54, 0.1),
    inset 0 1px 0 rgba(255, 244, 210, 0.12),
    inset 0 0 26px rgba(0, 0, 0, 0.42);
}

.shop-category-number {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(214, 173, 112, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
}

.shop-category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.15rem, 1.55vw, 1.72rem);
}

.shop-category-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.shop-category-action {
  position: relative;
  z-index: 1;
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.category-tabs a {
  min-width: 112px;
  padding: 9px 14px;
  border: 1px solid rgba(214, 173, 112, 0.32);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.08), rgba(0, 0, 0, 0.18)),
    rgba(25, 24, 22, 0.68);
  color: var(--warm-ivory-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 244, 210, 0.06);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-tabs a:hover,
.category-tabs a:focus,
.category-tabs a.is-active {
  border-color: rgba(214, 173, 112, 0.68);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.18), rgba(0, 0, 0, 0.2)),
    rgba(31, 27, 23, 0.82);
  color: var(--ivory);
  transform: translateY(-1px);
}

.product-catalog {
  min-height: auto;
  padding: clamp(34px, 5vw, 64px) 0 clamp(42px, 5vw, 76px);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(18px, 2.8vw, 30px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214, 173, 112, 0.16);
}

.catalog-back {
  min-width: 128px;
}

.product-category {
  scroll-margin-top: 180px;
}

.product-category + .product-category {
  margin-top: clamp(54px, 8vw, 108px);
  padding-top: clamp(36px, 5vw, 70px);
  border-top: 1px solid rgba(214, 173, 112, 0.18);
}

.product-category-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(18px, 4vw, 54px);
  margin-bottom: clamp(16px, 2.4vw, 26px);
}

.product-category-heading h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.product-category-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

.theme-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}

.theme-filter {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.06), rgba(0, 0, 0, 0.18)),
    rgba(19, 18, 16, 0.34);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.theme-filter:hover,
.theme-filter:focus,
.theme-filter.is-active {
  border-color: rgba(214, 173, 112, 0.7);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.16), rgba(0, 0, 0, 0.2)),
    rgba(29, 25, 20, 0.5);
  color: var(--ivory);
  transform: translateY(-1px);
}

.products-page .button {
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(214, 173, 112, 0.34);
  border-radius: 4px;
  clip-path: none;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.08), rgba(0, 0, 0, 0.2)),
    rgba(24, 23, 21, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.07),
    0 8px 18px rgba(0, 0, 0, 0.22);
  color: var(--warm-ivory-text);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.products-page .button::before,
.products-page .button::after {
  display: none;
}

.products-page .button-primary,
.products-page .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, #6d563a, #3d2f20 56%, #221911);
  border-color: rgba(214, 173, 112, 0.62);
  color: var(--warm-ivory-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.products-page .product-actions-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.products-page .product-actions-footer .button {
  width: 100%;
  min-height: 44px;
  align-self: stretch;
  display: flex;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button {
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, #6d563a, #3d2f20 56%, #221911);
  border-color: rgba(214, 173, 112, 0.62);
  color: var(--warm-ivory-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.products-page .product-actions-footer .button,
.woocommerce ul.products li.product .button,
.woocommerce .product .button {
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, #6d563a, #3d2f20 56%, #221911) !important;
  border-color: rgba(214, 173, 112, 0.62) !important;
  color: var(--warm-ivory-text) !important;
}

.products-page .product-actions-footer .button:hover,
.products-page .product-actions-footer .button:focus,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus,
.woocommerce .product .button:hover,
.woocommerce .product .button:focus {
  border-color: rgba(214, 173, 112, 0.72) !important;
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.18), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, #7a5d3b, #463120 56%, #281b12) !important;
  color: var(--ivory) !important;
  filter: none;
  transform: translateY(-1px);
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce .button:hover,
.woocommerce .button:focus {
  border-color: rgba(214, 173, 112, 0.72);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.18), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, #7a5d3b, #463120 56%, #281b12);
  color: var(--ivory);
  filter: none;
  transform: translateY(-1px);
}

.woocommerce-cart main.container,
.woocommerce-account main.container {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  padding: clamp(46px, 7vw, 88px) 0 clamp(64px, 8vw, 110px) !important;
  color: var(--warm-ivory-text);
}

.woocommerce-cart main.container > article,
.woocommerce-account main.container > article {
  margin-bottom: 0 !important;
}

.woocommerce-cart main.container > article > h2,
.woocommerce-account main.container > article > h2 {
  margin: 0 0 24px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0;
}

.woocommerce-cart .woocommerce,
.woocommerce-account .woocommerce {
  color: var(--warm-ivory-text);
}

.woocommerce table.shop_table,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.questline-account-tools {
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.055), transparent 34%),
    rgba(15, 14, 12, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.woocommerce table.shop_table {
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(214, 173, 112, 0.18);
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon,
.woocommerce-MyAccount-content,
.questline-account-tools {
  padding: clamp(18px, 3vw, 30px);
}

.woocommerce-MyAccount-navigation {
  padding: 12px;
}

.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a,
.questline-account-tool-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 173, 112, 0.32);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--warm-ivory-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation a:focus,
.questline-account-tool-links a:hover,
.questline-account-tool-links a:focus {
  border-color: rgba(214, 173, 112, 0.72);
  color: var(--ivory);
  background: rgba(214, 173, 112, 0.14);
}

.questline-account-tools {
  margin: 24px 0;
}

.questline-account-tools h2 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0;
}

.questline-account-tool-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.woocommerce-account main.container {
  width: min(1240px, calc(100% - 40px));
}

body.woocommerce-account main.container > article {
  position: relative;
}

body.woocommerce-account main.container > article > h2 {
  position: relative;
  margin-bottom: clamp(18px, 2.8vw, 32px);
  padding-bottom: 16px;
}

body.woocommerce-account main.container > article > h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(214, 173, 112, 0.18), transparent);
}

.questline-account-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  margin: 0 0 clamp(18px, 3vw, 30px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(214, 173, 112, 0.1), transparent 42%),
    radial-gradient(circle at 94% 12%, rgba(184, 95, 54, 0.13), transparent 30%),
    rgba(13, 11, 9, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.08),
    0 22px 70px rgba(0, 0, 0, 0.26);
}

.questline-account-kicker {
  margin: 0 0 8px;
  color: var(--brass-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.questline-account-intro h3 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 3.6vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.questline-account-intro p:not(.questline-account-kicker) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.questline-account-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.questline-account-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(214, 173, 112, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--warm-ivory-text);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce-account #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin: 0;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
  display: none;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
  float: none;
  width: 100%;
}

.woocommerce-account #customer_login h2 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  letter-spacing: 0;
}

.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
  margin: 0;
  padding: clamp(20px, 2.8vw, 30px);
  border-color: rgba(214, 173, 112, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.075), transparent 34%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.24), transparent 44%),
    rgba(15, 14, 12, 0.96);
}

.woocommerce-account .woocommerce form .form-row {
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce form label {
  margin-bottom: 7px;
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce form .required {
  color: #d07064;
}

.woocommerce-account .woocommerce input.input-text,
.woocommerce-account .woocommerce input[type="text"],
.woocommerce-account .woocommerce input[type="email"],
.woocommerce-account .woocommerce input[type="password"],
.woocommerce-account .woocommerce textarea,
.woocommerce-account .woocommerce select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.035), transparent),
    rgba(0, 0, 0, 0.42);
  color: var(--ivory);
  font: 700 0.95rem/1.3 "Manrope", sans-serif;
  padding: 10px 13px;
  box-shadow: inset 0 1px 0 rgba(255, 244, 210, 0.08);
}

.woocommerce-account .woocommerce input.input-text:focus,
.woocommerce-account .woocommerce input[type="text"]:focus,
.woocommerce-account .woocommerce input[type="email"]:focus,
.woocommerce-account .woocommerce input[type="password"]:focus,
.woocommerce-account .woocommerce textarea:focus,
.woocommerce-account .woocommerce select:focus {
  outline: 2px solid rgba(214, 173, 112, 0.24);
  outline-offset: 2px;
  border-color: rgba(214, 173, 112, 0.68);
}

.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--warm-ivory-text) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce-account .woocommerce-form-login__rememberme input {
  width: 16px;
  height: 16px;
  accent-color: var(--brass);
}

.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce .woocommerce-button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.woocommerce-account .woocommerce form.login button.button,
.woocommerce-account .woocommerce form.register button.button {
  width: 100%;
}

.woocommerce-account .lost_password {
  margin: -4px 0 0;
}

.woocommerce-account .lost_password a,
.woocommerce-account .woocommerce-privacy-policy-text a,
.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
  color: var(--brass-bright);
  text-decoration-color: rgba(214, 173, 112, 0.4);
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-privacy-policy-text,
.woocommerce-account .woocommerce form.register > p:not(.form-row) {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

body.logged-in.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2.4vw, 28px);
}

body.logged-in.woocommerce-account .woocommerce::before,
body.logged-in.woocommerce-account .woocommerce::after {
  display: none;
}

body.logged-in.woocommerce-account .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
  position: sticky;
  top: 118px;
  padding: 10px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a {
  justify-content: flex-start;
  min-height: 46px;
  padding: 11px 13px;
  text-align: left;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  box-shadow:
    inset 3px 0 0 var(--brass-bright),
    inset 0 1px 0 rgba(255, 244, 210, 0.08);
}

.woocommerce-MyAccount-content {
  min-height: 420px;
}

.woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
  color: var(--warm-ivory-text);
  font-size: 1rem;
  line-height: 1.7;
}

.questline-account-tools {
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: clamp(18px, 2.6vw, 28px);
  border-color: rgba(214, 173, 112, 0.34);
}

.questline-account-tools h2 {
  position: relative;
  padding-bottom: 10px;
}

.questline-account-tools h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 173, 112, 0.7), transparent);
}

.questline-account-tool-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.questline-account-tool-links a {
  min-height: 68px;
  justify-content: flex-start;
  border-color: rgba(214, 173, 112, 0.28);
  background:
    linear-gradient(135deg, rgba(214, 173, 112, 0.09), transparent 38%),
    rgba(0, 0, 0, 0.28);
  text-align: left;
}

.woocommerce-account .woocommerce table.shop_table,
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields {
  border-color: rgba(214, 173, 112, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.045), transparent 36%),
    rgba(11, 10, 8, 0.82);
}

.woocommerce-account .woocommerce table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-account .woocommerce table.shop_table th {
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce table.shop_table td {
  color: var(--warm-ivory-text);
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
  border-top: 0;
  border-left: 3px solid var(--brass-bright);
  border-radius: 6px;
  background: rgba(15, 14, 12, 0.94);
  color: var(--warm-ivory-text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
}

/* Keep express wallet/payment choices on checkout, not in the cart. */
.woocommerce-cart .wc-block-components-express-payment,
.woocommerce-cart .wc-block-components-express-payment__title,
.woocommerce-cart .wc-block-components-express-payment__content,
.woocommerce-cart .wc-block-components-express-payment-continue-rule,
.woocommerce-cart .wc-block-cart__payment-options,
.woocommerce-cart .wc-block-cart__payment-option,
.woocommerce-cart .wcpay-payment-request-wrapper,
.woocommerce-cart #wcpay-payment-request-button,
.woocommerce-cart .wc-stripe-payment-request-wrapper,
.woocommerce-cart .stripe-payment-request-button,
.woocommerce-cart .ppc-button-wrapper,
.woocommerce-cart .paypal-button,
.woocommerce-cart .paypal-buttons,
.woocommerce-cart .wc-block-components-payment-methods,
.woocommerce-cart .wc-block-components-payment-method-icons {
  display: none !important;
}

.products-page .button:hover,
.products-page .button:focus,
.products-page .button-primary:hover,
.products-page .button-primary:focus,
.products-page .button-secondary:hover,
.products-page .button-secondary:focus {
  border-color: rgba(214, 173, 112, 0.72);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.18), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, #7a5d3b, #463120 56%, #281b12);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 210, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(184, 95, 54, 0.1);
  color: var(--ivory);
  filter: none;
  transform: translateY(-1px);
}

.line-section {
  padding-bottom: clamp(34px, 5vw, 72px);
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.line-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(214, 173, 112, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 48%),
    linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent),
    #181818;
  color: var(--ivory);
}

.line-card h3 {
  margin-bottom: 10px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.14rem;
}

.line-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 12px;
  min-height: 0;
  background:
    radial-gradient(circle at 22% 8%, rgba(214, 173, 112, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 244, 210, 0.08), transparent 34%),
    #15110d;
  border: 1px solid rgba(214, 173, 112, 0.42);
  border-radius: 8px;
  color: var(--ivory);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(0, 0, 0, 0.74),
    inset 0 0 34px rgba(0, 0, 0, 0.72);
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(214, 173, 112, 0.32);
}

.product-card::after {
  inset: 16px;
  border-color: rgba(239, 225, 188, 0.13);
  clip-path: polygon(0 0, 18% 0, 18% 1px, 82% 1px, 82% 0, 100% 0, 100% 18%, calc(100% - 1px) 18%, calc(100% - 1px) 82%, 100% 82%, 100% 100%, 82% 100%, 82% calc(100% - 1px), 18% calc(100% - 1px), 18% 100%, 0 100%, 0 82%, 1px 82%, 1px 18%, 0 18%);
}

.product-portrait,
.product-image-shell {
  position: relative;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.72;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 42%, rgba(0, 0, 0, 0.58)),
    #0b0b0b;
  border: 1px solid rgba(214, 173, 112, 0.24);
}

.product-card .product-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.08);
  transition: opacity 520ms ease, transform 650ms ease, filter 520ms ease;
}

.product-image-reveal {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
}

.product-reveal {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  max-height: calc(100% - 32px);
  background:
    linear-gradient(180deg, rgba(46, 36, 25, 0.54), rgba(16, 13, 10, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(214, 173, 112, 0.12), transparent 54%);
  border: 1px solid rgba(214, 173, 112, 0.38);
  color: var(--warm-ivory-text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 360ms ease, transform 460ms ease;
}

.product-reveal p {
  margin: 0 0 14px;
  color: rgba(244, 239, 230, 0.9);
  font-size: 0.82rem;
  line-height: 1.55;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.95);
}

.product-meta h2,
.product-meta h3,
.product-price {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.product-reveal {
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 173, 112, 0.62) rgba(0, 0, 0, 0.22);
}

.product-reveal::-webkit-scrollbar {
  width: 8px;
}

.product-reveal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.22);
}

.product-reveal::-webkit-scrollbar-thumb {
  background: rgba(214, 173, 112, 0.62);
  border-radius: 999px;
}

.product-actions {
  display: grid;
  gap: 8px;
}

.product-actions-footer {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: auto;
  padding: 10px 8px 6px;
}

.product-actions-footer .button {
  flex: 1 1 0;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.74rem;
}

.purchase-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #080706;
  background-image:
    linear-gradient(90deg, rgba(8, 7, 6, 0.2) 0%, rgba(8, 7, 6, 0.32) 48%, rgba(8, 7, 6, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.1) 0%, rgba(8, 7, 6, 0.18) 68%, rgba(8, 7, 6, 0.62) 100%),
    var(--purchase-background-image, none);
  background-position: center;
  background-size: cover;
}

.purchase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(36px, 7vw, 96px) 0;
}

.purchase-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.purchase-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 820px);
  border: 1px solid rgba(214, 173, 112, 0.36);
  border-radius: 8px;
  background: #0b0a09;
  box-shadow: var(--shadow);
}

.purchase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(8, 7, 6, 0.45) 78%, rgba(8, 7, 6, 0.92) 100%),
    radial-gradient(ellipse at 50% 38%, transparent 28%, rgba(8, 7, 6, 0.08) 52%, rgba(8, 7, 6, 0.62) 100%);
}

.purchase-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
  filter: brightness(0.86) saturate(0.88) contrast(1.06);
}

.purchase-collection-label {
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  left: clamp(24px, 4vw, 42px);
  z-index: 2;
  margin: 0;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.98);
}

.purchase-visual .purchase-copy {
  width: 100%;
  padding: clamp(24px, 4vw, 42px);
}

.purchase-visual .purchase-copy h1,
.purchase-visual .purchase-copy p {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.98);
}

.purchase-visual-no-image {
  align-items: center;
  min-height: 420px;
  background:
    radial-gradient(circle at 22% 18%, rgba(214, 173, 112, 0.12), transparent 34%),
    #0b0a09;
}

.purchase-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(214, 173, 112, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.06), transparent 34%),
    rgba(12, 11, 9, 0.88);
  box-shadow: var(--shadow);
}

.purchase-label {
  margin: 0 0 10px;
  color: var(--brass-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.purchase-text {
  margin: 0 0 18px;
  color: var(--muted);
}

.purchase-price-line {
  margin: -6px 0 18px;
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-estimate {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(214, 173, 112, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.purchase-estimate-head {
  display: grid;
  gap: 10px;
}

.purchase-estimate-meta {
  display: grid;
  gap: 6px;
}

.purchase-estimate-base,
.purchase-estimate-addons {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.purchase-estimate-total {
  margin: 0;
  color: var(--brass-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.purchase-estimate-breakdown {
  display: grid;
  gap: 8px;
}

.purchase-estimate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(214, 173, 112, 0.14);
  color: var(--muted);
  font-size: 0.82rem;
}

.purchase-estimate-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.purchase-estimate-row-label {
  color: var(--ivory);
  font-weight: 700;
}

.purchase-estimate-row-value {
  min-width: 0;
}

.purchase-estimate-row-price {
  justify-self: end;
  color: var(--brass-bright);
  font-weight: 800;
  white-space: nowrap;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.purchase-actions .button {
  min-width: 220px;
}

.purchase-checkout-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.purchase-safety-care {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(202, 118, 72, 0.52);
  border-left-width: 4px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(73, 34, 20, 0.34), rgba(13, 12, 11, 0.82));
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.18);
}

.purchase-safety-heading {
  margin: 4px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.purchase-safety-warning {
  margin: 0;
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.65;
}

.purchase-care-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.purchase-safety-link {
  width: fit-content;
  color: var(--brass-bright);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.purchase-form {
  display: grid;
  gap: 18px;
}

.purchase-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.purchase-field {
  display: grid;
  gap: 8px;
}

.purchase-field-wide {
  grid-column: 1 / -1;
}

.purchase-field label {
  margin: 0;
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.purchase-field input,
.purchase-field select,
.purchase-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(214, 173, 112, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ivory);
  font: inherit;
  box-sizing: border-box;
}

.purchase-field textarea {
  min-height: 140px;
  resize: vertical;
}

.purchase-field input[readonly] {
  cursor: default;
  border-color: rgba(214, 173, 112, 0.34);
  background: rgba(214, 173, 112, 0.08);
  color: var(--brass-bright);
}

.purchase-field input::placeholder,
.purchase-field textarea::placeholder {
  color: rgba(226, 220, 210, 0.56);
}

.purchase-customization {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(214, 173, 112, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.purchase-customization-header {
  display: grid;
  gap: 6px;
}

.purchase-customization-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.purchase-customization-grid {
  display: grid;
  gap: 14px;
}

.purchase-customization-field-described {
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  column-gap: 18px;
  align-items: start;
}

.purchase-customization-field-described > label {
  grid-column: 1;
  grid-row: 1;
}

.purchase-customization-field-described > select {
  grid-column: 1;
  grid-row: 2;
}

.purchase-customization-field {
  transition: opacity 0.2s ease;
}

.purchase-customization-field.is-disabled {
  opacity: 0.42;
}

.purchase-customization-field.is-disabled select {
  cursor: not-allowed;
}

.purchase-option-description {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 100%;
  padding: 4px 0 4px 16px;
  border-left: 2px solid rgba(214, 173, 112, 0.38);
}

.purchase-option-description-title {
  margin: 0 0 6px;
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-option-description-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.purchase-option-list {
  display: grid;
  gap: 8px;
}

.purchase-option-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid rgba(214, 173, 112, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
}

.purchase-option-item input {
  margin-top: 2px;
}

.purchase-option-item-label {
  min-width: 0;
}

.purchase-option-item-price {
  justify-self: end;
  color: var(--brass-bright);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.purchase-notice {
  padding: 18px;
  border: 1px solid rgba(214, 173, 112, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.purchase-notice-success {
  border-color: rgba(116, 151, 96, 0.48);
}

.purchase-notice-error {
  border-color: rgba(172, 72, 54, 0.48);
}

.custom-build-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.52)),
    radial-gradient(circle at 14% 18%, rgba(184, 95, 54, 0.18), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(214, 173, 112, 0.1), transparent 28%),
    #080706;
}

.custom-build-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1.15fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(40px, 7vw, 96px) 0;
}

.custom-build-intro {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.custom-build-intro h1 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.custom-build-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.custom-build-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(214, 173, 112, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.06), transparent 34%),
    rgba(12, 11, 9, 0.9);
  box-shadow: var(--shadow);
}

.custom-build-layout.is-confirmation {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.custom-build-layout.is-confirmation .custom-build-panel {
  max-width: 780px;
  margin: 0 auto;
}

.custom-build-form {
  display: grid;
  gap: 22px;
}

.questline-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-build-form-section {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 173, 112, 0.16);
}

.custom-build-form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.custom-build-section-heading {
  display: grid;
  gap: 4px;
}

.custom-build-section-heading h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.custom-build-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.custom-build-type-option {
  position: relative;
  min-width: 0;
}

.custom-build-type-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-build-type-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 173, 112, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 244, 210, 0.07), rgba(0, 0, 0, 0.2)),
    rgba(21, 19, 17, 0.78);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.custom-build-type-option input:checked + span,
.custom-build-type-option input:focus-visible + span {
  border-color: rgba(214, 173, 112, 0.78);
  background:
    linear-gradient(180deg, rgba(214, 173, 112, 0.24), rgba(184, 95, 54, 0.12)),
    rgba(32, 26, 21, 0.94);
  color: var(--ivory);
}

.custom-build-type-option:hover span {
  border-color: rgba(214, 173, 112, 0.62);
  color: var(--ivory);
  transform: translateY(-1px);
}

.custom-build-other-panel {
  margin-top: 2px;
}

.custom-build-other-panel[hidden],
.custom-build-measurements[hidden] {
  display: none;
}

.custom-build-measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-build-measurement-field {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(214, 173, 112, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 173, 112, 0.08), transparent 46%),
    rgba(0, 0, 0, 0.18);
}

.custom-build-measurement-figure {
  margin: 0;
  min-width: 0;
}

.custom-build-measurement-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(214, 173, 112, 0.24);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.28);
}

.custom-build-measurement-input {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.custom-build-measurement-grid .purchase-field label span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
}

.custom-build-form .purchase-field label span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.custom-build-upload-field input[type="file"] {
  cursor: pointer;
  padding: 14px;
}

.custom-build-upload-note,
.custom-build-file-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.custom-build-file-summary {
  color: var(--brass-bright);
}

.custom-build-actions {
  padding-top: 4px;
}

.product-card:hover .product-image-front,
.product-card:focus-within .product-image-front {
  opacity: 0;
  transform: scale(0.98);
}

.product-card:hover .product-image-reveal,
.product-card:focus-within .product-image-reveal {
  opacity: 1;
  transform: scale(1);
  filter: saturate(0.9) contrast(1.08) brightness(0.86);
}

.product-card:hover .product-reveal,
.product-card:focus-within .product-reveal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
  .product-card {
    display: grid;
    gap: 12px;
  }

  .product-portrait {
    display: contents;
    aspect-ratio: auto;
    overflow: visible;
    background: none;
    border: 0;
  }

  .product-card .product-image-front {
    grid-column: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 0.72;
    border: 1px solid rgba(214, 173, 112, 0.24);
    border-radius: 6px;
  }

  .product-image-reveal {
    display: none;
  }

  .product-reveal {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1;
    margin: 0;
    padding: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .product-reveal p {
    margin-bottom: 0;
  }

  .product-body {
    padding-top: 0;
  }

  .product-actions-footer {
    margin-top: 0;
  }

  .product-card:hover .product-image-front,
  .product-card:focus-within .product-image-front {
    opacity: 1;
    transform: none;
  }

  .product-card:hover .product-image-reveal,
  .product-card:focus-within .product-image-reveal {
    opacity: 0;
    transform: none;
    filter: none;
  }

  .product-card:hover .product-reveal,
  .product-card:focus-within .product-reveal {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 9px;
  background: rgba(9, 9, 9, 0.82);
  border: 1px solid rgba(214, 173, 112, 0.5);
  color: var(--brass-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body {
  position: relative;
  z-index: 4;
  padding: 15px 8px 8px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.product-meta-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.product-meta h2,
.product-meta h3 {
  margin-bottom: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.96rem;
  line-height: 1.25;
}

.product-tier {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-title-note {
  font-size: 0.84em;
  font-style: italic;
  font-weight: 500;
}

.product-price {
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

body.model-modal-open {
  overflow: hidden;
}

.model-modal[hidden] {
  display: none;
}

.model-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.model-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(184, 95, 54, 0.22), transparent 36%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.model-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(760px, calc(100vh - 64px));
  height: min(760px, calc(100svh - 64px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(214, 173, 112, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 210, 0.06), transparent 36%),
    var(--blackened-steel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
}

.model-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(214, 173, 112, 0.22);
}

.model-modal-header h2 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.model-close {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 173, 112, 0.34);
  background: rgba(0, 0, 0, 0.28);
  color: var(--warm-ivory-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.model-close:hover,
.model-close:focus {
  border-color: rgba(214, 173, 112, 0.68);
  color: var(--ivory);
}

.product-model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(420px, calc(100vh - 160px));
  min-height: min(420px, calc(100svh - 160px));
  background:
    radial-gradient(circle at 50% 30%, rgba(214, 173, 112, 0.14), transparent 35%),
    #090909;
}

.product-model-stage {
  position: relative;
  min-height: 0;
  isolation: isolate;
  touch-action: none;
}

.model-fallback-link {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(214, 173, 112, 0.5);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(170, 104, 57, 0.95), rgba(92, 54, 36, 0.95));
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
}

.model-fallback-link[hidden] {
  display: none;
}

.model-close-floating {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  min-width: 88px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.model-status {
  position: absolute;
  inset: 64px 0 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 45%, rgba(9, 9, 9, 0.62), transparent 42%);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.model-status[hidden] {
  display: none;
}

.commission-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  min-height: 720px;
  background: var(--blackened-steel);
}

.commission-image {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) contrast(1.04) brightness(0.72);
}

.commission-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 112px) var(--gutter);
  color: var(--ivory);
}

.vertical-rule {
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brass), transparent);
}

.commission-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
}

.commission-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-section {
  overflow: hidden;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(111, 116, 116, 0.42);
}

.process-step {
  position: relative;
  padding-top: 2px;
}

.step-number {
  display: block;
  margin-bottom: 16px;
  color: #6c4b22;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.step-emblem {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--steel), #0d0d0d);
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  box-shadow: 0 0 0 8px var(--plaster);
}

.process-step h3 {
  margin-bottom: 8px;
  color: #171717;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: #34312c;
}

.section-dark .process-steps::before {
  background: rgba(214, 173, 112, 0.28);
}

.section-dark .step-number {
  color: var(--brass-bright);
}

.section-dark .step-emblem {
  background: linear-gradient(135deg, var(--steel), #080808);
  box-shadow: 0 0 0 8px var(--blackened-steel);
}

.section-dark .process-step h3 {
  color: var(--ivory);
}

.section-dark .process-step p {
  color: var(--muted);
}

.workshop-strip {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  isolation: isolate;
}

.workshop-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 20%, rgba(184, 95, 54, 0.35), transparent 22%),
    linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.36));
}

.workshop-overlay {
  padding: 96px 0;
}

.workshop-strip h2 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.04;
}

.workshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workshop-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(214, 173, 112, 0.34);
  background: rgba(0, 0, 0, 0.32);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section {
  padding-bottom: clamp(40px, 6vw, 86px);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: clamp(14px, 2vw, 24px);
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #171717;
}

.gallery-tile:nth-child(1) {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-tile:nth-child(2) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-tile:nth-child(3) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-tile:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-tile:nth-child(5) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(9, 9, 9, 0.72);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-section {
  padding-top: clamp(40px, 6vw, 86px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.review-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 42%),
    #f3eadb;
  border: 1px solid var(--border-light);
  color: var(--charcoal-text);
}

.quote-mark {
  position: absolute;
  right: 26px;
  top: 8px;
  color: rgba(185, 138, 74, 0.26);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.review-card p {
  position: relative;
  margin: 0 0 34px;
  font-size: 1.05rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-meta img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(23, 23, 23, 0.18);
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  color: #5a554f;
  font-size: 0.86rem;
}

.final-callout {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  isolation: isolate;
}

.final-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 42%, rgba(184, 95, 54, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3));
}

.final-callout-content {
  padding: 88px 0;
}

.final-callout h2 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.2vw, 6rem);
  line-height: 1;
}

.final-callout p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.22rem;
}

.shop-callout {
  min-height: 560px;
}

.info-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #090909;
  color: var(--ivory);
}

.info-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(236, 229, 219, 0.76), rgba(236, 229, 219, 0.76)),
    url("assets/images/coming_soon_background.png") center center / cover no-repeat;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.02);
}

.info-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 18% 12%, rgba(214, 173, 112, 0.07), transparent 28%),
    radial-gradient(circle at 82% 86%, rgba(214, 173, 112, 0.05), transparent 24%);
  pointer-events: none;
}

.info-page > * {
  position: relative;
  z-index: 1;
}

.info-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101010;
  color: var(--ivory);
}

.info-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22)),
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.14));
}

.info-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(86px, 12vw, 150px) 0 clamp(64px, 8vw, 104px);
}

.info-hero-content .button {
  margin-top: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.info-panel {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 48%),
    #f3eadb;
  color: var(--charcoal-text);
}

.info-page .section-light {
  padding-top: calc(var(--section-y) + clamp(28px, 3.2vw, 52px));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    rgba(245, 239, 230, 0.38);
  backdrop-filter: blur(6px);
}

.info-page .info-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 48%),
    rgba(243, 234, 219, 0.9);
}

.info-panel h3 {
  margin-bottom: 12px;
  color: #171717;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
}

.info-panel p {
  margin: 0;
  color: #34312c;
}

.privacy-page {
  position: relative;
  isolation: isolate;
  background: #0b0b0b;
  color: var(--ivory);
}

.privacy-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.92) 30%),
    url("assets/images/coming_soon_background.png") center top / cover fixed no-repeat;
  filter: saturate(0.72) contrast(1.08);
}

.privacy-hero {
  padding: clamp(84px, 10vw, 142px) 0 clamp(54px, 7vw, 90px);
  border-bottom: 1px solid var(--border-dark);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28));
}

.privacy-hero-inner {
  max-width: 980px;
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 8px 0 22px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.privacy-intro {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.privacy-updated {
  margin: 24px 0 0;
  color: var(--brass-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-content {
  padding: clamp(60px, 8vw, 112px) 0;
  background: rgba(8, 8, 8, 0.78);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 840px);
  justify-content: center;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 172px;
  display: grid;
  gap: 7px;
  padding-left: 20px;
  border-left: 1px solid var(--border-dark);
}

.privacy-nav p {
  margin: 0 0 8px;
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-nav a {
  color: #aaa196;
  font-size: 0.88rem;
}

.privacy-nav a:hover,
.privacy-nav a:focus {
  color: var(--ivory);
}

.privacy-copy > section {
  padding: 0 0 clamp(44px, 6vw, 70px);
  margin: 0 0 clamp(44px, 6vw, 70px);
  border-bottom: 1px solid rgba(214, 173, 112, 0.18);
  scroll-margin-top: 180px;
}

.privacy-copy > section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-copy h2 {
  margin: 0 0 22px;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.15;
}

.privacy-copy h3 {
  margin: 30px 0 8px;
  color: var(--brass-bright);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-copy p,
.privacy-copy li,
.privacy-copy address {
  color: #cbc2b6;
  font-size: 1rem;
}

.privacy-copy p {
  margin: 0 0 18px;
}

.privacy-copy ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.privacy-copy li + li {
  margin-top: 8px;
}

.privacy-copy a {
  color: var(--brass-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-copy address {
  font-style: normal;
}

@media (max-width: 820px) {
  .privacy-page::before {
    background-attachment: scroll;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
  }

  .privacy-nav p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding-top: 66px;
  }

  .privacy-nav {
    grid-template-columns: 1fr;
  }
}

.contact-band {
  padding: clamp(56px, 7vw, 94px) 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 28%),
    rgba(19, 19, 19, 0.76);
  color: var(--ivory);
}

.info-page .contact-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 28%),
    rgba(19, 19, 19, 0.84);
  backdrop-filter: blur(8px);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.05;
}

.newsletter-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(4px);
  color: var(--charcoal-text);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
}

.newsletter-section .eyebrow {
  color: #6c4b22;
}

.newsletter-section h2 {
  margin-bottom: 0;
  max-width: 860px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 23, 23, 0.24);
  border-radius: 6px;
  background: #fffaf1;
  color: var(--charcoal-text);
}

.site-footer {
  position: relative;
  z-index: 30;
  padding: 18px 0 14px;
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.84), rgba(7, 7, 7, 0.94)),
    rgba(7, 7, 7, 0.92);
  border-top: 1px solid var(--brass);
  color: var(--muted);
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 6px;
  color: var(--ivory);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: inline-block;
  margin: 0 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-grid a:hover,
.footer-grid a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--brass-bright);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.social-links a {
  margin-bottom: 0;
}

.footer-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-grid .footer-account-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(214, 173, 112, 0.42);
  border-radius: 6px;
  background: rgba(214, 173, 112, 0.08);
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid .footer-account-actions a:hover,
.footer-grid .footer-account-actions a:focus {
  border-color: rgba(214, 173, 112, 0.72);
  background: rgba(214, 173, 112, 0.16);
  color: var(--brass-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8f877d;
  font-size: 0.72rem;
  line-height: 1.35;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 1120px) {
  .site-header-row {
    --brand-mark-size: clamp(102px, 12.4vw, 136px);
    --brand-gap: clamp(10px, 2vw, 22px);
    --header-control-start: calc(var(--brand-mark-size) + var(--brand-gap) + clamp(62px, 7vw, 88px));
    --header-control-end: 18px;
    min-height: clamp(104px, 10.6vw, 120px);
    padding: clamp(46px, 5.6vw, 62px) var(--header-control-end) 12px 0;
  }

  .brand-name {
    font-size: clamp(1.8rem, 4.7vw, 3.1rem);
  }

  .site-center {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-self: stretch;
  }

  .site-nav {
    flex-wrap: nowrap;
  }

  .site-nav,
  .site-nav ul {
    gap: 8px;
  }

  .site-nav a {
    min-width: clamp(64px, 7vw, 78px);
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .site-actions {
    gap: 8px;
  }

  .site-action-link {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .hero-grid,
  .statement-grid,
  .newsletter-grid,
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .landing-grid {
    align-content: center;
    gap: 28px;
  }

  .concept-copy {
    grid-template-columns: 1fr;
  }

  .product-category-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-catalog {
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .shop-index-heading {
    margin-bottom: 10px;
    padding-bottom: 12px;
  }

  .shop-index-heading h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .shop-index-heading p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .shop-filter-panel {
    top: clamp(116px, 12vw, 150px);
  }

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

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

  .concept-copy h2,
  .concept-copy p:not(.eyebrow),
  .concept-copy .section-actions {
    grid-column: 1;
  }

  .concept-copy .section-actions {
    margin-top: 0;
  }

  .concept-media img {
    aspect-ratio: 2.6 / 1;
  }

  .landing-artifact {
    justify-self: start;
    width: min(100%, 390px);
  }

  .hero-large {
    height: auto;
    min-height: 0;
  }

  .hero-grid {
    padding: 72px 0 56px;
  }

  .hero-visual {
    justify-self: start;
    max-width: 520px;
    padding-bottom: 0;
  }

  .category-grid,
  .product-row,
  .products-grid,
  .info-grid,
  .line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commission-feature {
    grid-template-columns: 1fr;
  }

  .vertical-rule {
    left: var(--gutter);
    right: var(--gutter);
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brass), transparent);
  }

  .process-steps,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps::before {
    display: none;
  }

  .purchase-inner {
    grid-template-columns: 1fr;
  }

  .purchase-visual {
    position: relative;
    top: auto;
    min-height: min(680px, 78vh);
  }

  .custom-build-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 54px 0 64px;
  }

  .custom-build-intro {
    position: static;
    max-width: 760px;
  }

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

@media (min-width: 761px) and (max-width: 1120px) {
  .site-center {
    transform: translateY(4px);
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .container {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .announcement-inner {
    justify-content: flex-start;
    overflow: visible;
    white-space: normal;
    font-size: 0.68rem;
    text-align: left;
  }

  .purchase-form-grid {
    grid-template-columns: 1fr;
  }

  .purchase-customization-field-described {
    grid-template-columns: 1fr;
  }

  .purchase-customization-field-described > label,
  .purchase-customization-field-described > select,
  .purchase-option-description {
    grid-column: 1;
    grid-row: auto;
  }

  .purchase-option-description {
    min-height: 0;
    margin-top: 4px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .questline-account-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .purchase-visual {
    min-height: min(520px, 68vh);
  }

  .purchase-visual .purchase-copy {
    padding: 24px;
  }

  .purchase-actions {
    flex-direction: column;
  }

  .purchase-actions .button {
    min-width: 0;
    width: 100%;
  }

  .custom-build-layout {
    gap: 18px;
    padding: 30px 0 46px;
  }

  .custom-build-intro {
    gap: 12px;
  }

  .custom-build-panel {
    padding: 18px;
  }

  .custom-build-form {
    gap: 18px;
  }

  .custom-build-form-section {
    gap: 12px;
    padding-top: 16px;
  }

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

  .custom-build-measurement-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .custom-build-measurement-field {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .custom-build-actions .button {
    min-width: 0;
    width: 100%;
  }

  .woocommerce-cart main.container,
  .woocommerce-account main.container {
    width: min(100% - 28px, 1180px);
    padding-top: 38px !important;
  }

  .questline-account-intro,
  .woocommerce-account #customer_login,
  body.logged-in.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .questline-account-intro {
    align-items: start;
    padding: 20px;
  }

  .questline-account-benefits {
    justify-content: flex-start;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    grid-column: auto;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    margin-bottom: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .questline-account-tool-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .purchase-estimate-row,
  .purchase-option-item {
    grid-template-columns: 1fr;
  }

  .purchase-estimate-row-price,
  .purchase-option-item-price {
    justify-self: start;
  }

  body.questline-shop-page .page-content {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.questline-shop-page .page-content > main > section,
  body.questline-shop-page .page-content .page-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .site-header {
    position: relative;
    padding: 18px 0 10px;
  }

  .site-header-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .site-center {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: stretch;
  }

  .site-nav,
  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    overflow: visible;
    padding-bottom: 2px;
  }

  .site-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .site-nav a {
    min-width: 0;
    padding: 9px 8px;
    font-size: 0.62rem;
  }

  .site-actions a {
    width: 100%;
    min-width: 0;
    padding: 9px 10px;
    font-size: 0.7rem;
  }

  .site-brand {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    transform: none;
    gap: 10px;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
    transform: none;
  }

  .brand-name {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2.08rem);
    transform: none;
  }

  .home-landing,
  .landing-hero {
    min-height: auto;
  }

  .landing-hero {
    align-items: start;
  }

  .landing-grid {
    padding: clamp(42px, 10vw, 70px) 0;
  }

  .landing-copy h1 {
    font-size: clamp(1.95rem, 7.8vw, 2.95rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .landing-copy .lead {
    font-size: 0.98rem;
  }

  .landing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-actions .button {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    letter-spacing: 0.1em;
  }

  .landing-lines {
    gap: 7px;
  }

  .landing-lines a {
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .landing-artifact {
    width: min(100%, 330px);
  }

  .landing-artifact img {
    aspect-ratio: 1 / 0.88;
  }

  .concept-creation {
    padding: 54px 0 64px;
  }

  .category-tabs {
    gap: 8px;
  }

  .category-index,
  .product-catalog {
    padding-top: 34px;
  }

  .shop-index-heading {
    margin-bottom: 16px;
  }

  .shop-catalog {
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .shop-index-heading {
    margin-bottom: 8px;
    padding-bottom: 10px;
  }

  .shop-index-heading h2 {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .shop-index-heading p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .shop-filter-panel {
    top: 0;
    margin-bottom: 18px;
  }

  .shop-filter-toggle {
    min-height: 36px;
    padding: 8px 10px;
  }

  .shop-filter-toggle-label {
    font-size: 0.68rem;
  }

  .shop-filter-toggle-count {
    font-size: 0.6rem;
  }

  .shop-filter-body {
    max-height: min(64vh, 540px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .shop-filter-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 10px;
    gap: 8px;
  }

  .shop-filter-options {
    gap: 7px;
  }

  .shop-filter-chip,
  .shop-clear-filters {
    min-height: 32px;
    font-size: 0.64rem;
  }

  .shop-controls {
    justify-content: flex-start;
    width: 100%;
  }

  .shop-sort-select {
    min-width: 0;
    width: min(100%, 240px);
  }

  .category-card-grid {
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 12px;
  }

  .shop-category-card {
    min-height: 168px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-tabs a {
    min-width: calc(50% - 4px);
    padding: 9px 12px;
  }

  .product-category {
    scroll-margin-top: 28px;
  }

  .product-category + .product-category {
    margin-top: 44px;
    padding-top: 34px;
  }

  .concept-copy {
    margin-bottom: 24px;
  }

  .concept-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .concept-copy .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .concept-media {
    width: calc(100vw - 40px);
  }

  .concept-media img {
    aspect-ratio: 1.45 / 1;
    object-position: left center;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.2vw, 2.45rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lead,
  .hero p {
    max-width: 100%;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

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

  .category-card {
    min-height: 360px;
  }

  .product-row {
    display: grid;
    grid-auto-columns: minmax(260px, 82%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .products-grid,
  .info-grid,
  .line-grid {
    grid-template-columns: 1fr;
  }

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

  .info-panel {
    min-height: 0;
  }

  .contact-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card {
    scroll-snap-align: start;
  }

  .commission-feature {
    min-height: 0;
  }

  .commission-image {
    min-height: 380px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 18px;
    padding-bottom: 30px;
  }

  .process-step::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 42px;
    bottom: 0;
    width: 1px;
    background: rgba(111, 116, 116, 0.36);
  }

  .process-step:last-child::before {
    display: none;
  }

  .step-number {
    grid-column: 2;
    margin-bottom: 6px;
  }

  .step-emblem {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 8px 0 0;
    box-shadow: 0 0 0 7px var(--plaster);
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile,
  .gallery-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .review-grid,
  .footer-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}

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

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    display: inline;
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .site-nav a {
    padding: 8px 5px;
    font-size: 0.56rem;
  }

  .site-action-link {
    gap: 6px;
    font-size: 0.58rem;
  }

  .site-action-icon {
    width: 15px;
    height: 15px;
  }
}
