:root {
  --bg: #0A0A0A;
  --fg: #F5F5F2;
  --muted: #888888;
  --border: #222222;
  --accent: #4FA6C9;
  /* Other accent options from the original design, if you want to swap: */
  /* --accent: #E8543D;  orange-red */
  /* --accent: #D9A441;  gold */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; }

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

.mono { font-family: 'IBM Plex Mono', monospace; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active {
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav { padding: 20px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
}

/* ---------- Layout helpers ---------- */
.section {
  padding: 120px 40px 100px;
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .section { padding: 72px 24px 64px; }
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.01em; }

h2 {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0 0 4px;
  cursor: pointer;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  border-bottom: 1px solid transparent;
}

.filter-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- Work / grid ---------- */
.grid {
  display: flex;
  align-items: flex-start;
}

.grid-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.grid-item {
  background: var(--bg);
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(135deg, #161616, #161616 2px, #0d0d0d 2px, #0d0d0d 36px);
  border: 1px solid var(--border);
  overflow: hidden;
}

.thumb--vertical {
  aspect-ratio: 4 / 5;
}

.thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #555;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.grid-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  gap: 12px;
}

.grid-item-title {
  font-size: 17px;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grid-item-cat {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---------- Hero (home page) ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #151515, #151515 2px, #0d0d0d 2px, #0d0d0d 40px);
}

.hero-shorts-card {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.hero-shorts-card.open {
  display: block;
}

.hero-shorts-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.45);
  transform: scale(1.15);
}

.hero-shorts-fg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: 40%;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.hero-shorts-badge {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid #444;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero-shorts-fg { max-width: 70%; }
  .hero-shorts-badge { bottom: 64px; font-size: 11px; padding: 10px 18px; }
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.85) 88%, #0A0A0A 100%);
}

.hero-label {
  position: absolute;
  top: 100px;
  left: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-mute {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid #444;
  color: var(--fg);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.hero-mute:hover {
  border-color: var(--accent);
}

@media (max-width: 720px) {
  .hero-mute { top: 84px; right: 24px; }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid #444;
  color: var(--fg);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.hero-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-nav--prev { left: 40px; }
.hero-nav--next { right: 40px; }

@media (max-width: 720px) {
  .hero-nav { width: 40px; height: 40px; font-size: 20px; }
  .hero-nav--prev { left: 16px; }
  .hero-nav--next { right: 16px; }
}

.hero-text {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 64px;
}

.hero-text h1 {
  font-weight: 800;
  font-size: clamp(40px, 10vw, 132px);
  line-height: 0.92;
  max-width: 1100px;
}

.hero-text p {
  margin: 24px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

@media (max-width: 720px) {
  .hero-label { top: 84px; left: 24px; }
  .hero-text { left: 24px; right: 24px; bottom: 40px; }
}

/* ---------- Shop preview (home page) ---------- */
.shop-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .shop-preview-grid { grid-template-columns: 1fr; gap: 40px; }
}

.link-accent {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.shop-preview-list { border-top: 1px solid var(--border); }

.shop-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.item-name { font-size: 19px; font-weight: 500; }
.item-desc { color: var(--muted); font-size: 14px; margin-top: 4px; }

.tag {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ---------- About (home page) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-grid p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stat-label {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portrait-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, #161616, #161616 2px, #0d0d0d 2px, #0d0d0d 36px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #555;
  text-transform: uppercase;
  /* Replace with: <img src="../assets/your-photo.jpg" alt="Hollow1304"> */
}

/* ---------- Contact (home page) ---------- */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-top p { margin: 0; color: var(--muted); font-size: 16px; }

.contact-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-links a {
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}

.contact-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
}

.footer a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.footer a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.page-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
}

.page-footer a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.page-footer a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.legal-placeholder {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  border: 1px dashed #333;
  padding: 20px;
}

/* ---------- Page header (work / shop pages) ---------- */
.page-header {
  padding: 160px 40px 60px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 720px) {
  .page-header { padding: 110px 24px 40px; }
}

.page-header h1 {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 88px);
  margin-bottom: 20px;
}

.page-header p {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}

.page-header.no-filters p { margin-bottom: 0; }

.work-grid-section { padding: 64px 40px 120px; }

@media (max-width: 720px) {
  .work-grid-section { padding: 40px 24px 72px; }
}

/* ---------- Shop page ---------- */
.shop-group {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .shop-group { padding: 56px 24px; }
}

.shop-group h2 { margin-bottom: 40px; font-size: clamp(28px, 3.5vw, 40px); }

.shop-list { border-top: 1px solid var(--border); }

.shop-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 640px) {
  .shop-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
}

.shop-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--muted);
}

.buy-btn {
  background: none;
  border: 1px solid #333;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  white-space: nowrap;
  cursor: not-allowed;
}

/* ---------- Modal (video lightbox) ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  background: var(--bg);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.modal-category {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-close {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.modal-close:hover { color: var(--accent); }

.modal-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.modal-body { padding: 28px; }

.modal-body h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }

.modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
}
