/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:          #080a0d;
  --bg-alt:      #0b0d10;
  --card:        #0d1015;
  --text:        rgba(220, 215, 204, 0.90);
  --text-muted:  rgba(190, 185, 175, 0.52);
  --gold:        #c8ae58;
  --gold-dim:    rgba(200, 174, 88, 0.72);
  --gold-border: rgba(200, 174, 88, 0.26);
  --silver:      rgba(168, 198, 222, 0.88);
  --border:      rgba(255, 255, 255, 0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Spectral', serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 10, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-brand:hover { color: #fff; }
.nav-note {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ─── */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 90px;
  background:
    radial-gradient(ellipse 160% 70% at 50% 0%,  rgba(12,16,24,1) 0%, rgba(8,10,13,1) 55%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(9,11,8,1)   0%, rgba(8,10,13,1) 60%);
  background-color: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.055;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; }
.hero-eyebrow {
  font-family: 'Spectral', serif;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero-rule {
  width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,195,185,0.22), transparent);
  margin: 0 auto 28px;
}
.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 10vw, 104px);
  letter-spacing: 16px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Work section ─── */
.work {
  padding: 100px 0 130px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 0 48px; }

.work-header { margin-bottom: 64px; text-align: center; }
.section-eyebrow {
  font-family: 'Spectral', serif;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--text);
}
.section-rule {
  width: 52px; height: 1px;
  background: var(--gold-dim);
  opacity: 0.55;
  margin: 20px auto 0;
}

/* ─── Grid + cards ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}
.card.featured { grid-column: 1 / -1; }

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-border);
}

.shot {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #05070a;
}
.shot img {
  width: 100%;
  aspect-ratio: 1440 / 900;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.96) brightness(0.94);
  transition: transform 0.6s ease, filter 0.35s ease;
}
.card:hover .shot img { transform: scale(1.035); filter: saturate(1.02) brightness(1); }
.card.featured .shot img { aspect-ratio: 1440 / 620; }

.body {
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-eyebrow {
  font-family: 'Spectral', serif;
  font-size: 10.5px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
}
.card.featured .card-title { font-size: 34px; }
.card-desc {
  font-family: 'Spectral', serif;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 62ch;
}
.card-foot {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.card-domain {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
}
.card-visit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 7px 16px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover .card-visit {
  color: var(--gold);
  border-color: rgba(200,174,88,0.5);
  background: rgba(200,174,88,0.06);
}

/* ─── Footer ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 48px;
  text-align: center;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-note {
  font-family: 'Spectral', serif;
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-note a { color: var(--gold-dim); transition: color 0.2s; }
.footer-note a:hover { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 820px) {
  nav { padding: 0 22px; }
  .nav-note { display: none; }
  .section-wrap { padding: 0 22px; }
  .hero-name { letter-spacing: 10px; }
  .grid { grid-template-columns: 1fr; gap: 30px; }
  .card.featured .shot img { aspect-ratio: 1440 / 900; }
  .body { padding: 26px 24px 28px; }
}
