/* ======================================================================
   ZingZee - Selected Work
   Premium editorial portfolio. Cinematic dark hero + quiet content.
====================================================================== */

:root {
  /* Palette - cold cinematic */
  --ink-0: #05080A;
  --ink-1: #0D1B22;
  --ink-2: #16242C;
  --ink-3: #314B5B;
  --mist-1: #5E7888;
  --mist-2: #AFC0C9;
  --mist-3: #DCE5EA;
  --paper:  #EEF4F7;
  --white:  #F3F7FA;

  /* Light surface (content sections) */
  --surface-0: #F4F5F2;
  --surface-1: #ECEEEA;
  --surface-2: #DDE0DA;

  --rule:    rgba(255,255,255,0.08);
  --rule-dk: rgba(13,27,34,0.10);

  --accent:  #C9D56A;

  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-0);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

/* ----------------------------------------------------------------------
   Hero
---------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink-0);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("../img/hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.92);
}

.hero__bg video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* subtle vignette to anchor logo */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,8,10,0.0) 0%, rgba(5,8,10,0.18) 45%, rgba(5,8,10,0.55) 100%),
    linear-gradient(to bottom, rgba(5,8,10,0.0) 60%, rgba(5,8,10,0.85) 100%);
}

.hero__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 56px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist-2);
}

.hero__top .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--paper);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
}

.hero__center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.hero__logo {
  width: clamp(280px, 60vw, 920px);
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.35));
}

.hero__lede {
  margin-top: clamp(28px, 5vh, 56px);
  max-width: 640px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--mist-2);
  letter-spacing: 0.005em;
}

.hero__bottom {
  position: absolute;
  z-index: 2;
  bottom: clamp(24px, 4vh, 48px);
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 clamp(24px, 5vw, 56px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist-2);
}

.hero__edition {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__edition strong {
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.22em;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}

.hero__scroll svg { width: 14px; height: 14px; }

/* dotted brand motif (echoes the logo) */
.hero__motif {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  opacity: 0.75;
}
.hero__motif span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--paper);
}
.hero__motif span:nth-child(2) { width: 22px; height: 1px; border-radius: 0; opacity: 0.6; }
.hero__motif span:nth-child(4) { width: 22px; height: 1px; border-radius: 0; opacity: 0.6; }

/* ----------------------------------------------------------------------
   Section: intro (after hero)
---------------------------------------------------------------------- */
.section {
  padding: clamp(80px, 14vh, 180px) clamp(24px, 6vw, 80px);
}

.section--dark {
  background: var(--ink-1);
  color: var(--paper);
}

.section--paper {
  background: var(--surface-0);
  color: var(--ink-1);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist-1);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section--paper .eyebrow {
  color: rgba(13, 27, 34, 0.55);
}

.h-display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
}

.h-display em {
  font-style: normal;
  font-weight: 300;
  color: var(--mist-2);
}

.section--paper .h-display em {
  color: var(--ink-3);
  font-weight: 300;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 720px;
  color: var(--mist-2);
}

.section--paper .lede {
  color: var(--ink-2);
  opacity: 0.78;
}

/* ----------------------------------------------------------------------
   Footer
---------------------------------------------------------------------- */
.footer {
  background: var(--ink-0);
  color: var(--mist-1);
  padding: 80px clamp(24px, 6vw, 80px) 60px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__row {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__mark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--paper);
}

/* ----------------------------------------------------------------------
   Mobile
---------------------------------------------------------------------- */
@media (max-width: 720px) {
  .hero { min-height: 100vh; }
  .hero__top, .hero__bottom { padding-left: 20px; padding-right: 20px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
