/* TigerWorks — the studio site.
   Monochrome, editorial, quiet. The work supplies the colour. */

:root {
  --ink: #0c0c0e;
  --ink-2: #16171a;
  --paper: #f6f5f3;
  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(12, 12, 14, .12);
  --muted: #9b9ba1;
  --muted-dark: #5f6066;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--ink);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.wrap.narrow { max-width: 780px; }
.center { text-align: center; }

/* ── top bar ─────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  backdrop-filter: blur(10px);
  background: rgba(12, 12, 14, .55);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.topbar.solid { background: rgba(12, 12, 14, .92); border-color: var(--line); }
.brand img { width: 74px; opacity: .95; }
.nav { display: flex; gap: 2rem; }
.nav a {
  text-decoration: none; font-size: .82rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase; color: #c9c9cf;
  transition: color .2s;
}
.nav a:hover { color: #fff; }
@media (max-width: 720px) { .nav { display: none; } }

/* ── hero ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  filter: grayscale(.35) brightness(.42) contrast(1.05);
  transform: scale(1.04);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,.72) 0%, rgba(12,12,14,.55) 45%, var(--ink) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 6.5rem 1.5rem 5rem; }
.hero-mark { width: clamp(112px, 13vh, 168px); margin: 0 auto clamp(1.2rem, 3vh, 2.4rem); }
.hero-line {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.1rem, min(6vw, 7.5vh), 4.6rem);
  line-height: 1.08;
  letter-spacing: -.015em;
}
.hero-sub {
  max-width: 40rem; margin: clamp(1rem, 2.6vh, 1.6rem) auto clamp(1.4rem, 3vh, 2.4rem);
  color: #c6c6cc; font-size: 1.06rem; line-height: 1.7; font-weight: 300;
}
.btn {
  display: inline-block; text-decoration: none;
  padding: .95rem 2.1rem; border-radius: 2px;
  background: #fff; color: var(--ink);
  font-size: .84rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .9; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid var(--line); }
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; z-index: 2;
  width: 1px; height: 46px; background: linear-gradient(#fff, transparent);
  opacity: .5;
}

/* ── bands ───────────────────────────────────────── */
.band { padding: 7rem 0; border-top: 1px solid var(--line); }
.band.alt { background: var(--ink-2); }
.eyebrow {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.2rem;
}
h2 {
  font-family: "Fraunces", Georgia, serif; font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.15;
  letter-spacing: -.01em;
}
.section-title { margin-bottom: 2.6rem; }
.section-title.mt { margin-top: 5rem; }
.lede {
  color: #c6c6cc; font-size: 1.05rem; line-height: 1.8;
  font-weight: 300; margin-top: 1.3rem; max-width: 46rem;
}

/* ── stats ───────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; margin-top: 3.4rem; padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.stats strong {
  display: block; font-family: "Fraunces", serif; font-weight: 400;
  font-size: 2.4rem; line-height: 1;
}
.stats span {
  display: block; margin-top: .5rem; color: var(--muted);
  font-size: .82rem; letter-spacing: .04em;
}

/* ── divisions ───────────────────────────────────── */
.divisions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.division { background: var(--ink-2); padding: 2.6rem 2rem 2.8rem; }
.num {
  font-size: .74rem; letter-spacing: .2em; color: var(--muted);
}
.division h3 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: 1.42rem; margin: 1rem 0 .9rem;
}
.division p { color: #b9b9c0; font-size: .95rem; line-height: 1.72; font-weight: 300; }
.division .tag {
  margin-top: 1.4rem; color: var(--muted);
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ── work ────────────────────────────────────────── */
.work { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.work-card {
  text-decoration: none; border: 1px solid var(--line);
  background: var(--ink-2); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.work-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); }
.shot {
  height: 240px; background-size: cover; background-position: center;
  filter: saturate(.95);
}
.work-body { padding: 1.8rem 1.8rem 2rem; }
.work-body h3 { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.4rem; }
.work-body p { color: #b9b9c0; font-size: .95rem; line-height: 1.7; margin: .8rem 0 1.2rem; font-weight: 300; }
.link { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; }



/* ── footer ──────────────────────────────────────── */
.foot { background: #000; padding: 4rem 0 3rem; border-top: 1px solid var(--line); }
.foot-in { display: grid; gap: 1.6rem; justify-items: center; text-align: center; }
.foot-mark { width: 92px; opacity: .9; }
.foot-links { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.foot-links a {
  text-decoration: none; color: #c9c9cf; font-size: .84rem;
  letter-spacing: .04em;
}
.foot-links a:hover { color: #fff; }
.foot-fine { color: #6a6a70; font-size: .78rem; letter-spacing: .06em; }

@media (max-width: 640px) {
  .band { padding: 5rem 0; }
  .wrap { padding: 0 1.4rem; }
}

/* ── arrival ─────────────────────────────────────── */
.rise { opacity: 0; transform: translateY(18px); }
.rise.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.hero-inner.rise { transition-delay: .1s; }
@media (prefers-reduced-motion: reduce) {
  .rise, .rise.in { opacity: 1; transform: none; transition: none; }
}

/* ── brands ──────────────────────────────────────── */
.brands {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.bcard {
  background: var(--ink-2); display: flex; flex-direction: column;
  transition: background .25s ease;
}
.bcard:hover { background: #1b1c20; }
.plate {
  height: 148px; display: flex; align-items: center; justify-content: center;
  padding: 1.4rem; background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,255,255,.055), rgba(255,255,255,0) 70%);
  border-bottom: 1px solid var(--line);
}
.plate img { max-height: 72px; max-width: 76%; width: auto; object-fit: contain; }
.plate img.tall { max-height: 94px; }
.plate img.wide { max-height: 30px; max-width: 56%; }
.bbody {
  padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column;
  flex: 1;
}
.bbody .role {
  color: var(--muted); font-size: .72rem; letter-spacing: .17em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.bbody p { color: #b9b9c0; font-size: .95rem; line-height: 1.72; font-weight: 300; }
.blink {
  margin-top: auto; padding-top: 1.5rem; text-decoration: none; color: #fff;
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
}
.blink.muted { color: var(--muted); }
a.blink:hover { text-decoration: underline; }

/* typographic brand marks */
.wordmark { color: #fff; display: inline-block; text-align: center; }
.wordmark.pfb {
  font-family: "Bricolage Grotesque", "Inter", sans-serif; font-weight: 700;
  font-size: 1.62rem; letter-spacing: -.02em; line-height: 1;
}
.wordmark.pfb em {
  font-style: normal; font-weight: 400; font-size: .74em;
  opacity: .55; margin: 0 .3em;
}
.wordmark.siama {
  font-family: "Archivo", "Inter", sans-serif; font-weight: 600;
  font-size: 1.5rem; letter-spacing: .3em; line-height: 1; padding-left: .3em;
}
.wordmark.siama i {
  display: block; font-style: normal; font-weight: 400; font-size: .55em;
  letter-spacing: .42em; opacity: .62; margin-top: .55em; padding-left: .42em;
}

/* ── work ────────────────────────────────────────── */
.worksplit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: end; margin-bottom: 3.4rem;
}
.books { display: grid; grid-template-columns: repeat(2, minmax(130px, 205px)); gap: 1.8rem; }
.books img { box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.books figcaption { margin-top: .9rem; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.worknote {
  color: #b9b9c0; font-size: 1rem; line-height: 1.8; font-weight: 300;
  max-width: 30rem; padding-bottom: .4rem;
}
.stills { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.still {
  position: relative; height: 260px; background-size: cover;
  background-position: center; border: 1px solid var(--line);
}
.still::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,0) 45%, rgba(12,12,14,.85) 100%);
}
.still span {
  position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 2;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
}

@media (max-width: 820px) {
  .worksplit { grid-template-columns: 1fr; gap: 2.2rem; align-items: start; }
  .stills { grid-template-columns: 1fr; }
  .still { height: 200px; }
  .plate { height: 128px; }
}

/* ── section headings sit in the middle ──────────────────────────── */
.band .eyebrow,
.band h2 { text-align: center; }
.band .wrap.narrow .lede {
  text-align: center; margin-left: auto; margin-right: auto;
}
.stats { text-align: center; }
/* the cards keep their own left-set type — centred body copy in a
   three-up grid reads as a poster, not a studio */
.bcard .bbody, .division { text-align: left; }
