:root {
  --bg: #0b0b0b;
  --bg-2: #121212;
  --card: #161616;
  --line: #2a2a2a;
  --text: #e8e3d7;
  --muted: #9a9488;
  --copper: #b08d57;
  --copper-2: #c4a574;
  --copper-dim: rgba(176, 141, 87, 0.14);
  --ivory: #e8e3d7;
  --oxide: #3a4f45;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --header: 118px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background-color: #0b0b0b;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg-tentacles.png") right -60px top 20px / min(980px, 78vw) no-repeat;
  opacity: 0.62;
}
header, main, footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header);
  background: rgba(11, 12, 14, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 168px; flex-shrink: 0; }
.brand-mark {
  width: 102px; height: 102px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #f4f1ea;
  font-family: Cinzel, "Times New Roman", serif;
  text-align: center;
}
.brand-line {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-sub::before,
.brand-sub::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.shop-row { display: grid; grid-template-columns: 140px 1fr; gap: 0; }
.shop-row img { height: 140px; object-fit: cover; }
@media (max-width: 560px) {
  .shop-row { grid-template-columns: 1fr; }
  .shop-row img { height: 180px; }
}
.mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--copper);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.mark::after {
  content: "";
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #6e737c, var(--copper));
  transform: rotate(-32deg);
  box-shadow: 6px 0 10px rgba(196, 165, 116, 0.45);
}
main {
  position: relative;
  z-index: 2;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--text); border-color: var(--copper); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; border: 1px solid transparent;
  padding: 11px 18px; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: 0.18s ease;
}
.btn-copper { background: var(--copper); color: #0b0c0e; }
.btn-copper:hover { background: var(--copper-2); }
.btn-ghost {
  background: transparent; border-color: #3a424c; color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-outline-copper {
  background: transparent; border-color: var(--copper); color: var(--copper-2);
}
.btn-outline-copper:hover { background: var(--copper-dim); }

.menu-btn {
  display: none; background: none; border: 0; color: var(--text);
  width: 42px; height: 42px; font-size: 22px; cursor: pointer;
}

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px;
  align-items: center; padding: 40px 0 28px;
}
.eyebrow {
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 14px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02; margin: 0 0 16px; font-weight: 600;
}
.hero p { color: var(--muted); font-size: 18px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-photo {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  min-height: 360px; background: #0b0d10;
}
.hero-photo img { width: 100%; height: 420px; object-fit: cover; }

/* Sections */
.section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 {
  margin: 0 0 8px; font-size: 30px; font-weight: 650;
}
.section-head p { margin: 0; color: var(--muted); }
.page-title { padding: 42px 0 10px; }
.page-title h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 56px); margin: 0 0 10px;
}
.section-head h2,
.step h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
.cat-no {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--copper);
  margin-bottom: 4px;
}
.sigil {
  width: 28px; height: 28px; color: var(--copper);
  opacity: 0.85;
}
.lost-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}
.lost-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  margin: 16px 0 12px;
}
.page-title p { color: var(--muted); margin: 0; max-width: 640px; }

/* Marketplace */
.stores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.store-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.store-card {
  background: #f4f1ea; color: #1b1e22;
  min-height: 148px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.store-card h3 { margin: 0 0 6px; font-size: 20px; }
.store-card p { margin: 0; color: #5c6570; font-size: 14px; }
.store-card span { color: var(--copper); font-weight: 650; font-size: 14px; }
.collection-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 22px 0 0;
}

/* Work grid */
.work-grid, .product-grid, .gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.work-card, .product-card, .gallery-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.work-card img, .product-card img, .gallery-item img {
  width: 100%; height: 210px; object-fit: cover;
}
.work-card figcaption, .product-body, .gallery-item figcaption {
  padding: 12px 14px 16px;
}
.work-card figcaption, .gallery-item figcaption { color: var(--muted); font-size: 14px; }
.product-body h3 { margin: 0 0 4px; font-size: 17px; }
.product-body p { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.price { color: var(--text); font-weight: 700; margin-bottom: 12px; }

/* Process / capabilities */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  text-align: center; padding: 26px 18px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2);
}
.step .n {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border: 1px solid var(--copper); color: var(--copper);
  border-radius: 50%; display: grid; place-items: center; font-weight: 700;
}
.step h3 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.split img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; border-radius: 16px; }

/* Forms */
form { display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%; background: #12161b; border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 12px;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(196, 120, 58, 0.45); border-color: var(--copper);
}
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.notice {
  display: none; padding: 12px 14px; border-radius: 10px;
  background: var(--copper-dim); color: var(--copper-2); border: 1px solid rgba(196,165,116,.35);
}
.notice.show { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.chip {
  border: 1px solid var(--line); background: transparent; color: var(--muted);
  border-radius: 999px; padding: 8px 14px; cursor: pointer;
}
.chip.active, .chip:hover { border-color: var(--copper); color: var(--text); background: var(--copper-dim); }
.gallery-item[hidden] { display: none; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.stat { border-top: 1px solid var(--line); padding-top: 12px; }
.stat b { display: block; color: var(--copper-2); font-size: 13px; letter-spacing: .06em; }
.stat span { color: var(--muted); font-size: 14px; }

.list { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.list li { padding: 7px 0; border-bottom: 1px solid var(--line); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px; margin-top: 40px; color: var(--muted); font-size: 14px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.socials { display: flex; gap: 14px; }

@media (max-width: 960px) {
  .stores, .work-grid, .product-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .split, .steps { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--header); left: 0; right: 0;
    background: #14181d; border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
  }
  .menu-btn { display: block; }
  .header-inner { position: relative; }
}
@media (max-width: 560px) {
  .stores, .work-grid, .product-grid, .gallery-grid, .stats { grid-template-columns: 1fr; }
  .hero-photo img { height: 260px; }
}
