:root {
  --bg: #ecece7;
  --ink: #121212;
  --accent: #b03a2e;
  --white: #fdfdfd;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Vertical Name on the side */
.vertical-brand {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.4;
  z-index: 10;
}

/* Minimal Nav */
.minimal-nav {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  text-align: left;
}
.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

/* Hero Titles */
.creative-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
}
.indent { padding-right: 15%; color: var(--accent); }
.hero-statement {
  font-size: 1.2rem;
  max-width: 400px;
  border-right: 2px solid var(--ink);
  padding-right: 20px;
}

/* Art Wrappers (The Collage Feel) */
.mb-10 { margin-bottom: 12rem; }

.art-wrapper {
  position: relative;
  background: var(--white);
  padding: 15px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.03);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.art-wrapper:hover {
  transform: scale(1.02);
}
.art-wrapper.small { width: 80%; margin: 0 auto; }

.art-info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.num { font-weight: 700; color: var(--accent); }

/* Decorative line animation */
.reveal-img {
  filter: grayscale(100%);
  transition: filter 1s ease;
}
.reveal-img:hover {
  filter: grayscale(0%);
}

/* Section Labels */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
  color: var(--accent);
}

.about-text {
  font-size: 1.5rem;
  line-height: 2;
}

/* Footer */
.v-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.socials a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.8rem;
}

.gallery-container {
    position: relative;
    overflow: hidden;
}

.gallery-item {
    margin-bottom: 6rem;
}
