@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

:root {
  --bg: #000;
  --fg: #f5f5f5;
  --muted: #a6a6a6;
  --dim: #666;
  --rule: #1a1a1a;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }

/* Hero / intro */
.intro {
  padding-top: clamp(48px, 10vw, 120px);
  padding-bottom: clamp(40px, 8vw, 80px);
}
.intro h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.intro .tag {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 60ch;
}

/* Hero image */
.hero {
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #0a0a0a;
}

/* Section heading */
.section {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--rule);
}
.section-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px);
}
@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; }
}
.work-card {
  display: block;
  text-decoration: none;
}
.work-card .frame {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover img {
  transform: scale(1.02);
}
.work-card .meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.work-card .title {
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.work-card .place {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
  line-height: 1.4;
}
.work-card:hover .title { color: var(--fg); }
.work-card .arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.work-card:hover .arrow { transform: translate(2px, -2px); }

/* Rolls list */
.rolls-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
.roll-row {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.roll-row .country {
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: -0.01em;
}
.roll-row .year {
  color: var(--dim);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
.roll-row .cities {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 600px) {
  .roll-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}

/* Contact */
.contact {
  padding: clamp(60px, 10vw, 140px) 0;
  max-width: 720px;
}
.contact h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.contact p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  margin-bottom: 32px;
  max-width: 56ch;
}
.contact .lines {
  display: grid;
  gap: 8px;
  font-size: clamp(16px, 1.6vw, 20px);
}
.contact .lines a:hover { color: var(--muted); }

/* Gallery (work/<slug>) */
.gallery {
  padding: 32px 0 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 48px);
}
.gallery img {
  width: 100%;
  height: auto;
  background: #0a0a0a;
}
.gallery-header {
  padding: clamp(48px, 10vw, 120px) 0 clamp(24px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
}
.gallery-header h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gallery-header .place {
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer nav {
  display: flex;
  gap: 20px;
}
.site-footer nav a:hover { color: var(--fg); }
