:root {
  --bg: #0f0e0c;
  --bg2: #17150f;
  --panel: #1d1a14;
  --ink: #ece7dc;
  --muted: #a89f8d;
  --gold: #c9a24b;
  --red: #9e2b25;
  --line: #2e2a20;
  --studio1: #c4beb2;
  --studio2: #918b7f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
}
h1, h2, h3, .btn, .filter { font-family: 'Oswald', 'Arial Narrow', sans-serif; }

.topbar {
  background: var(--red);
  color: #f5e9d8;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 7px 10px;
}

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(15,14,12,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-text { font-family: 'Oswald'; font-weight: 700; font-size: 19px; letter-spacing: 2px; }
.brand-text em { font-style: normal; color: var(--gold); font-weight: 500; font-size: 14px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-family: 'Oswald'; font-size: 14px; letter-spacing: 2px;
  margin-left: 26px;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 70px 48px 60px;
  max-width: 1400px; margin: 0 auto;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,162,75,.08), transparent),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(158,43,37,.09), transparent);
}
.hero-kicker { color: var(--gold); font-family: 'Oswald'; letter-spacing: 4px; font-size: 13px; margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero h1 span { color: var(--red); -webkit-text-stroke: 0; }
.hero-sub { color: var(--muted); max-width: 560px; margin: 22px 0 30px; font-size: 16.5px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px; letter-spacing: 3px; font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all .18s;
}
.btn-solid { background: var(--gold); color: #171204; }
.btn-solid:hover { background: #e0bb63; border-color: #e0bb63; }
.btn-ghost { color: var(--gold); background: transparent; }
.btn-ghost:hover { background: rgba(201,162,75,.12); }

.hero-shirts {
  display: flex; gap: 4px; justify-content: center; align-items: center;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--studio1), var(--studio2) 85%);
  border-radius: 8px;
  padding: 34px 12px 26px;
  border: 1px solid var(--line);
}
.hero-shirts .mock { width: 200px; flex-shrink: 0; }
.hero-shirts .mock:nth-child(1) { transform: rotate(-6deg) translateY(14px); }
.hero-shirts .mock:nth-child(3) { transform: rotate(6deg) translateY(14px); }
.hero-shirts .mock:nth-child(2) { z-index: 2; transform: scale(1.12); }

/* CREED */
.creed { background: var(--bg2); border-block: 1px solid var(--line); padding: 70px 32px; }
.creed-inner { max-width: 1100px; margin: 0 auto; }
.creed h2, .shop-head h2, .about h2 {
  font-size: 40px; letter-spacing: 3px;
  border-left: 5px solid var(--red);
  padding-left: 18px;
  margin-bottom: 34px;
}
.creed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.creed-item h3 { color: var(--gold); letter-spacing: 2px; font-size: 19px; margin-bottom: 8px; }
.creed-item p { color: var(--muted); font-size: 14.5px; }
.creed blockquote {
  margin-top: 50px; text-align: center;
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 26px; color: var(--ink);
}
.creed cite { display: block; margin-top: 8px; font-size: 15px; color: var(--gold); font-style: normal; font-family: 'Oswald'; letter-spacing: 2px; }

/* SHOP */
.shop { max-width: 1400px; margin: 0 auto; padding: 70px 32px; }
.shop-head p { color: var(--muted); max-width: 620px; margin-bottom: 24px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line);
  padding: 9px 22px; font-size: 13px; letter-spacing: 2px;
  cursor: pointer; transition: all .15s;
}
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.on { background: var(--gold); color: #171204; border-color: var(--gold); font-weight: 600; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .18s, border-color .18s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-mock {
  background: radial-gradient(ellipse 90% 75% at 50% 38%, var(--studio1), var(--studio2));
  padding: 18px 10px 6px;
}
.card-body { padding: 16px 18px 18px; }
.card-cat { font-family: 'Oswald'; font-size: 11px; letter-spacing: 3px; color: var(--red); }
.card.cat-faith .card-cat { color: var(--gold); }
.card h3 { font-size: 19px; letter-spacing: 1px; font-weight: 600; margin: 4px 0 2px; }
.card .verse { font-family: 'EB Garamond', serif; font-style: italic; color: var(--muted); font-size: 14px; min-height: 22px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.card .price { font-family: 'Oswald'; font-size: 20px; color: var(--gold); }
.card .cta { font-family: 'Oswald'; font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.card:hover .cta { color: var(--gold); }

/* MOCKUP */
.mock { position: relative; width: 100%; aspect-ratio: 0.931; }
.mock img.tee {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.28));
}
.mock .artbox {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
.mock .art {
  position: absolute; inset: 0;
  width: 100%;
  opacity: 0.97;
}
.card-mock { position: relative; }
.flag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  font-family: 'Oswald'; font-size: 10px; letter-spacing: 2px;
  background: rgba(20,18,14,.82); color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
}
.pair { display: flex; align-items: flex-end; gap: 4px; width: 100%; }
.pair-even .pair-main { flex: 1; }
.pair-main { flex: 1.6; position: relative; }
.pair-alt { flex: 1; position: relative; opacity: 0.96; }
.side-tag {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  font-family: 'Oswald'; font-size: 10px; letter-spacing: 2px;
  color: #4a453b;
}

/* BANNER */
.banner {
  background: var(--red);
  padding: 34px 20px;
  text-align: center;
}
.banner p {
  font-family: 'Oswald'; font-weight: 600;
  color: #f5e9d8; letter-spacing: 3px;
  font-size: clamp(16px, 2.4vw, 26px);
}

/* ABOUT */
.about { background: var(--bg2); border-block: 1px solid var(--line); padding: 70px 32px; }
.about-inner { max-width: 820px; margin: 0 auto; }
.about p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.about-verse { font-family: 'EB Garamond', serif; font-style: italic; color: var(--gold) !important; font-size: 20px; }

/* FOOTER */
.footer { padding: 60px 32px 30px; }
.foot-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.foot-brand { font-family: 'Oswald'; font-weight: 700; letter-spacing: 2px; font-size: 18px; }
.foot-tag { color: var(--gold); font-family: 'EB Garamond', serif; font-style: italic; margin-top: 6px; }
.foot-h { font-family: 'Oswald'; letter-spacing: 3px; font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.foot-small { color: var(--muted); font-size: 13.5px; }
.foot-small a { color: var(--ink); }
.signup { display: flex; gap: 8px; margin-top: 14px; }
.signup input {
  flex: 1; background: var(--panel); border: 1px solid var(--line);
  color: var(--ink); padding: 10px 14px; font-size: 14px;
}
.signup .btn { padding: 10px 18px; font-size: 13px; }
.foot-legal { text-align: center; color: #6b6355; font-size: 12px; margin-top: 50px; letter-spacing: 1px; }

/* MODAL */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal-back { position: absolute; inset: 0; background: rgba(0,0,0,.78); }
.modal-card {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(920px, 94vw);
  max-height: 92vh;
  background: var(--panel);
  border: 1px solid var(--gold);
  overflow: hidden;
}
.modal-mock {
  background: radial-gradient(ellipse 90% 75% at 50% 40%, var(--studio1), var(--studio2));
  display: grid; place-items: center; padding: 26px 14px;
}
.modal-mock .mock { max-width: 380px; }
.modal-info { padding: 34px 32px; overflow-y: auto; }
.modal-info .card-cat { font-size: 12px; }
.modal-info h3 { font-family: 'Oswald'; font-size: 30px; letter-spacing: 1px; margin: 6px 0 4px; }
.modal-info .verse { font-family: 'EB Garamond', serif; font-style: italic; color: var(--gold); font-size: 17px; }
.modal-info .desc { color: var(--muted); font-size: 15px; margin: 16px 0 20px; }
.modal-info .price { font-family: 'Oswald'; font-size: 30px; color: var(--gold); }
.swatch-label { font-family: 'Oswald'; letter-spacing: 2px; font-size: 12px; color: var(--muted); margin: 18px 0 8px; }
.swatches { display: flex; gap: 10px; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--line); cursor: pointer;
  transition: transform .12s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.on { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,162,75,.4); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.size {
  font-family: 'Oswald'; font-size: 13px;
  border: 1px solid var(--line); color: var(--ink);
  background: transparent;
  padding: 7px 13px; cursor: pointer;
}
.size:hover, .size.on { border-color: var(--gold); color: var(--gold); }
.modal-info .btn { width: 100%; text-align: center; margin-top: 22px; }
.modal-x {
  position: absolute; top: 10px; right: 12px; z-index: 5;
  background: none; border: none; color: var(--ink);
  font-size: 22px; cursor: pointer;
}
.ship-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 50px 24px; }
  .hero-shirts .mock { width: 30%; }
  .modal-card { grid-template-columns: 1fr; overflow-y: auto; }
  .nav-links a { margin-left: 14px; font-size: 12px; }
  body { overflow-x: hidden; }
}
