:root {
  --bg: #0e0b14;
  --panel: rgba(255, 255, 255, 0.08);
  --text: #f8f4ff;
  --muted: #ded6f2;
  --accent: #d58cff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #3c1c5e 0, transparent 40%),
    radial-gradient(circle at 90% 0%, #18435f 0, transparent 35%), var(--bg);
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 2rem 5vw 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.links {
  display: flex;
  gap: 1rem;
}

.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-content {
  max-width: 760px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.1rem;
}

.cta {
  display: inline-block;
  margin-top: 1.4rem;
  background: linear-gradient(120deg, #cf7fff, #78d9ff);
  color: #13081f;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
}

.section {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 3.2rem 0;
}

.section p {
  color: var(--muted);
}

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

.card {
  background: var(--panel);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.art {
  height: 190px;
  border-radius: 10px;
  margin-bottom: 0.9rem;
}

.gradient-one {
  background: linear-gradient(135deg, #f8c57d, #7b4ecf, #1f2b84);
}

.gradient-two {
  background: linear-gradient(145deg, #fa8d7f, #f8df89, #3f967f);
}

.gradient-three {
  background: linear-gradient(140deg, #89b2ff, #c495ff, #f7a6c6);
}

.contact a {
  color: #f0bdff;
}

footer {
  text-align: center;
  padding: 1.4rem 1rem 2rem;
  color: #cab7e7;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }

  .links {
    flex-wrap: wrap;
  }
}
