:root {
  --bg: #121212;
  --card: #1a1a1a;
  --charcoal: #141414;
  --silver: #d8d8d8;
  --accent: linear-gradient(90deg, #d0d0d0, #f9f9f9, #d0d0d0);
  --maxw: 1200px;
  --glass: rgba(255, 255, 255, 0.05);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: radial-gradient(circle at 10% 10%, #0a0a0a 0%, var(--bg) 40%);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  line-height: 1.45;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1.5rem;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

nav a {
  color: var(--silver);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* HERO */
.hero {
  position: relative;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.hero .hero-img {
  width: 100%;
  height: 56vw;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.hero .meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.7));
  color: var(--silver);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  font-size: 0.93rem;
  min-width: 210px;
  transition: all 0.3s ease;
}

.hero .meta b {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero .meta small {
  opacity: 0.85;
}

/* HEADINGS */
h1, h2, h3 {
  text-align: center;
}

/* QUOTE */
.quote {
  margin: 30px 0;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.quote p {
  font-style: italic;
  margin: 0;
  font-size: 1.15rem;
  color: var(--silver);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.gallery .item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery .item:hover img {
  transform: scale(1.06);
}

.gallery .tall {
  grid-row: span 2;
}

.gallery .wide {
  grid-column: span 2;
}

/* ABOUT */
.about {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.avatar {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.06);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  margin: 0 0 6px 0;
}

.about-text p {
  margin: 6px 0;
  color: var(--silver);
}

.tag {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--silver);
}

/* FOOTER */
footer {
  margin: 28px 0;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-nav {
  margin-bottom: 6px;
}

.footer-nav a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 8px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .hero-img {
    height: 48vw;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    margin-left: 8px;
    margin-right: 8px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
@media (max-width: 700px) {
  .hero .meta {
    left: auto;
    right: 10px;
    bottom: 10px;
    text-align: left;
    padding: 8px 10px;
    font-size: 0.8rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
    min-width: 160px;
  }
  .about {
    flex-direction: row;
    gap: 12px;
  }
}

/* HELPERS */
.section {
  margin: 28px 0;
}

.muted {
  color: var(--silver);
}