:root {
  --accent: #ff8a5c;
  --text: #f5f5f7;
  --muted: #bdbdc7;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0b12;
  color: var(--text);
  overflow-x: hidden;
}

/* Animated Gradient Background */
.bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #1a1a27, #0b0b12, #1a1a27);
  background-size: 300% 300%;
  animation: gradient 18s ease infinite;
  z-index: -3;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Blobs */
.blob {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: -2;
  animation: float 16s infinite alternate ease-in-out;
}

.b1 { background: #ff8a5c; top: -80px; right: -60px; }
.b2 { background: #6c5ce7; bottom: -120px; left: -40px; animation-delay: 4s; }

@keyframes float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-30px) scale(1.1); }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  padding: 20px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.3);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.logo span { color: var(--accent); }

.links a {
  margin-left: 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.links a:hover { color: var(--text); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  padding: 120px 7vw;
  align-items: center;
  gap: 60px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  margin: 0;
}

.title span { color: var(--accent); }

.subtitle {
  margin-top: 12px;
  color: var(--muted);
  max-width: 420px;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn.primary {
  background: var(--accent);
  color: #1a1a1a;
}

.btn.primary:hover { transform: translateY(-2px); }

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.ghost:hover { background: rgba(255,255,255,0.08); }

/* HERO ART */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* ABOUT */
.section {
  padding: 80px 7vw;
}

.about p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

/* MASONRY GALLERY */
.masonry {
  column-count: 3;
  column-gap: 20px;
}

.masonry img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  break-inside: avoid;
  transition: 0.4s;
}

.masonry img:hover {
  transform: scale(1.03);
}

/* CONTACT */
.contact-form {
  max-width: 600px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

textarea { height: 140px; }

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
