:root {
  --bg: #0e0e0f;
  --bg-soft: #161617;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f4f1eb;
  --muted: #c3bfb8;
  --accent: #c49563;
  --accent-dark: #8b5e34;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 16ch; }
h3 { font-size: 1.3rem; }
p { color: var(--muted); margin: 0 0 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #140f0b;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); background: #d4a978; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}
.btn-sm { padding: 0.8rem 1.1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(12, 12, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}
.brand img {
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a:not(.btn) { color: var(--muted); }
.site-nav a:not(.btn):hover { color: var(--text); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.parallax-section {
  position: relative;
  isolation: isolate;
}

.parallax-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.parallax-bg {
  z-index: -2;
  transform: translate3d(0, 0, 0);
  background-image:
    linear-gradient(rgba(9, 9, 10, 0.52), rgba(9, 9, 10, 0.72)),
    url('assets/background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.parallax-bg.secondary {
  background-image:
    linear-gradient(rgba(9, 9, 10, 0.55), rgba(9, 9, 10, 0.7)),
    url('assets/mid-bg.svg');
}

.hero-overlay {
  z-index: -1;
  background: radial-gradient(circle at top right, rgba(196,148,99,0.16), transparent 35%);
}

.hero-content {
  padding: 8rem 0 6rem;
}

.hero-copy {
  max-width: 42rem;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.feature-card,
.artist-card,
.contact-form,
.steps article {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 2rem;
}
.feature-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.feature-card li + li { margin-top: 0.7rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.artist-card {
  overflow: hidden;
}
.artist-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
.artist-card div { padding: 1.2rem; }

.gallery-section h2,
.process h2,
.contact h2,
.artists h2 { margin-bottom: 1.5rem; }

.carousel {
  position: relative;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.carousel-track {
  position: relative;
  min-height: min(68vw, 620px);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(8,8,9,0.6);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
}

.parallax-break {
  padding: 7rem 0;
}
.narrow { max-width: 760px; }
.center { text-align: center; }
.center h2, .center p { margin-left: auto; margin-right: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps article {
  padding: 1.7rem;
}
.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 148, 99, 0.12);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-grid { align-items: center; }
.contact-list p { margin-bottom: 0.5rem; }
.contact-list strong { color: var(--text); }

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col,
  .steps,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    background: #111214;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }

  .hero { min-height: 82svh; }
  .hero-content { padding-top: 6rem; }
  .carousel-track { min-height: 55vw; }
  .footer-wrap { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
