:root {
  --bg: #111214;
  --bg-soft: #17191d;
  --panel: #1d2026;
  --line: #353c48;
  --text: #ece8de;
  --muted: #b8b2a4;
  --accent: #d9a34c;
  --accent-soft: #7a623c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(217, 163, 76, 0.22), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(122, 98, 60, 0.22), transparent 25%),
    linear-gradient(130deg, #0e0f12 0%, #171a20 52%, #11131a 100%);
  line-height: 1.6;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#fff 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.8rem 1.1rem 2rem;
}

.kicker {
  display: inline-block;
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(217, 163, 76, 0.1);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.6rem);
  margin-top: 1.3rem;
  letter-spacing: 0.01em;
}

.lead {
  max-width: 760px;
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
}

.hero-slider {
  position: relative;
  margin-top: 1.6rem;
  min-height: clamp(320px, 54vw, 560px);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #0f1115;
  box-shadow: var(--shadow);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 5.8s ease;
}

.hero-slides img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 760px;
  background: linear-gradient(120deg, rgba(10, 12, 14, 0.84), rgba(10, 12, 14, 0.48));
  border: 1px solid rgba(240, 226, 196, 0.16);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(2px);
}

.hero-eyebrow {
  margin: 0;
  color: #f0d59d;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-slide-title {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  margin-top: 0.35rem;
}

.hero-slide-description {
  margin: 0.35rem 0 0.55rem;
  color: #e3dccd;
  font-size: 0.96rem;
}

.hero-slide-source {
  color: #f5dfb4;
  font-size: 0.9rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 12, 14, 0.55);
  color: var(--text);
  cursor: pointer;
}

.hero-prev {
  left: 0.8rem;
}

.hero-next {
  right: 0.8rem;
}

.hero-dots {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  gap: 0.32rem;
}

.hero-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--accent);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1.1rem;
  border-radius: 0.55rem;
  transition: 0.3s ease;
}

.hero-actions a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.1rem 4rem;
  display: grid;
  gap: 1.35rem;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-intro {
  margin: 0.7rem 0 1.2rem;
  color: var(--muted);
}

.biography {
  display: grid;
  gap: 1rem;
}

.biography p {
  margin: 0.8rem 0;
}

blockquote {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  color: #e6cf98;
  font-style: italic;
}

.biography figure {
  margin: 0;
}

.biography img {
  width: 100%;
  display: block;
  border-radius: 0.65rem;
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.55rem;
}

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.album-card {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.8rem 0.8rem 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-soft);
  transition: 0.25s ease;
}

.album-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: #212730;
}

.album-card .name {
  display: block;
  font-weight: 600;
}

.album-card .count {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.gallery-grid article {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-grid h3 {
  padding: 0.75rem;
  font-size: 1.35rem;
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq article {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--bg-soft);
}

.faq h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.faq p {
  margin: 0;
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.1rem 3rem;
  color: var(--muted);
}

.site-footer a {
  color: #e9d4ad;
}

.legal {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s ease forwards;
}

.reveal:nth-child(1) {
  animation-delay: 0.15s;
}

.reveal:nth-child(2) {
  animation-delay: 0.28s;
}

.reveal:nth-child(3) {
  animation-delay: 0.41s;
}

.reveal:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .biography {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .panel {
    padding: 1.8rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 4.5rem;
  }

  .hero-overlay {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .hero-nav {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .gallery-grid img {
    height: 190px;
  }
}
