*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4A853;
  --gold-light: #E8C675;
  --gold-dark: #B8922E;
  --cream: #FDF8F0;
  --cream-light: #FAF5EB;
  --dark: #2A1225;
  --dark-mid: #3D1C34;
  --dark-light: #4E2843;
  --text-dark: #2A1225;
  --text-light: #FDF8F0;
  --text-muted: #7A6E78;
  --accent: #722F37;
  --vine: #6B7F5E;
  --vine-light: #8A9E7C;
  --vine-dark: #4F5E44;
  --wine: #8B3A4A;
  --wine-deep: #5B2333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === CURSOR === */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease-out;
  mix-blend-mode: difference;
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
  mix-blend-mode: difference;
}
nav.scrolled {
  background: rgba(42, 18, 37, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 60px;
  mix-blend-mode: normal;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--dark);
  z-index: 999;
  transition: right 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-menu ul li { margin-bottom: 30px; }
.mobile-menu ul li a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--dark) 0%, var(--wine-deep) 40%, var(--dark) 80%, var(--vine-dark) 100%);
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(212,168,83,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(107,127,94,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(139,58,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 80px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; }
.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.3s ease forwards;
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-subtitle::before {
  content: '';
  width: 40px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 30px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: slideUp 0.9s ease forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.6s; }
.hero-title .highlight { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(253,248,240,0.65);
  max-width: 480px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 1s ease forwards;
}
.hero-cta {
  display: flex; gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 1.2s ease forwards;
}

/* Hero image */
.hero-image {
  position: relative;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  animation: heroImageIn 1.2s 0.8s ease forwards;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 70vh;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(212,168,83,0.2) 0%, rgba(107,127,94,0.15) 40%, rgba(91,35,51,0.2) 100%);
  border: 1px solid rgba(253,248,240,0.1);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.hero-image-placeholder span {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(253,248,240,0.35);
  letter-spacing: 0.1em;
}
.hero-image-placeholder img,
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeInUp 0.8s 1.5s ease forwards;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(212,168,83,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease infinite;
}

/* Mini hero for subpages */
.hero-mini {
  padding: 160px 80px 80px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--wine-deep) 60%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-mini::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mini h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.hero-mini h1 .highlight { color: var(--gold); }
.hero-mini p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(253,248,240,0.5);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* === BUTTONS === */
.btn {
  padding: 16px 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(253,248,240,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-muted);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* === ANIMATIONS === */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* === SECTIONS === */
section { position: relative; }
.section-dark { background: var(--dark); color: var(--text-light); }
.section-cream { background: var(--cream-light); }

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 15px;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* === ABOUT === */
.about {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 85%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gold) 0%, var(--vine) 60%, var(--vine-dark) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.about-img-main .placeholder-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  aspect-ratio: 1;
  background: var(--wine-deep);
  border-radius: 4px;
  border: 4px solid var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-float .placeholder-art {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.about-artists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.artist-card {
  padding: 25px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--vine);
  transition: all 0.3s ease;
}
.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.artist-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.artist-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === GALLERY === */
.gallery {
  padding: 140px 80px;
  background: linear-gradient(170deg, var(--dark) 0%, var(--wine-deep) 50%, var(--dark) 100%);
  color: var(--text-light);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-header .section-title { margin-bottom: 0; }
.gallery-header .btn-outline {
  color: var(--cream);
  border-color: var(--text-muted);
}
.gallery-header .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-header p {
  font-size: 0.95rem;
  color: rgba(253,248,240,0.5);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 15px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--dark-light);
}
.gallery-item .item-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover .item-bg { transform: scale(1.08); }
.gallery-item .item-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-item .item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item .item-overlay h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .item-overlay h3 { transform: translateY(0); }
.gallery-item .item-overlay span {
  font-size: 0.85rem;
  color: var(--gold);
  transform: translateY(20px);
  transition: transform 0.4s 0.1s ease;
}
.gallery-item:hover .item-overlay span { transform: translateY(0); }
.item-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--dark-mid), var(--dark-light));
}

/* === MOSAIC GALLERY === */
.mosaic-grid {
  columns: 4;
  column-gap: 12px;
}
.mosaic-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--dark-light);
}
.mosaic-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-placeholder {
  padding: 40px 15px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--dark-mid), var(--dark-light));
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 3px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.mosaic-item:hover .mosaic-overlay h3 { transform: translateY(0); }
.mosaic-overlay span {
  font-size: 0.75rem;
  color: var(--gold);
  transform: translateY(10px);
  transition: transform 0.3s 0.05s ease;
}
.mosaic-item:hover .mosaic-overlay span { transform: translateY(0); }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 8, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-info {
  text-align: center;
  margin-top: 20px;
}
.lightbox-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 5px;
}
.lightbox-info span {
  font-size: 0.85rem;
  color: var(--gold);
}
.lightbox-close {
  position: absolute;
  top: 25px; right: 35px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 2;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 20px;
  z-index: 2;
}
.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.mosaic-home {
  columns: auto;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mosaic-home .mosaic-item {
  text-decoration: none;
  break-inside: auto;
  margin-bottom: 0;
  border-radius: 8px;
}
.mosaic-home .mosaic-placeholder {
  min-height: 100px;
  padding: 25px 15px;
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .mosaic-grid { columns: 3; }
  .mosaic-home { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}
@media (max-width: 768px) {
  .mosaic-grid { columns: 2; column-gap: 8px; }
  .mosaic-item { margin-bottom: 8px; }
  .lightbox-prev,
  .lightbox-next { font-size: 2rem; padding: 10px; }
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }
}
@media (max-width: 480px) {
  .mosaic-grid { columns: 2; }
}

/* === PROJECT === */
.project {
  padding: 140px 80px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.project-visual { position: relative; }
.book-mockup {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, var(--gold) 0%, var(--wine-deep) 50%, var(--dark) 100%);
  border-radius: 4px;
  box-shadow: 20px 20px 60px rgba(42,18,37,0.3), -5px -5px 20px rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 15px;
  transform: perspective(800px) rotateY(-8deg);
  transition: transform 0.6s ease;
  overflow: hidden;
}
.book-mockup:hover { transform: perspective(800px) rotateY(0deg); }
.book-mockup img { width: 100%; height: 100%; object-fit: cover; }
.book-mockup h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--cream);
  text-align: center;
  padding: 0 30px;
}
.book-mockup span {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.project-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* === PROJECT BLOCKS === */
.project-blocks {
  padding: 0 80px 100px;
}
.blocks-container {
  max-width: 800px;
  margin: 0 auto;
}
.block-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 60px 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}
.block-richtext {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.block-richtext b, .block-richtext strong { color: var(--text-dark); }
.block-richtext a { color: var(--gold-dark); text-decoration: underline; }
.block-richtext ul { padding-left: 25px; margin: 15px 0; }
.block-richtext li { margin-bottom: 8px; }
.block-figure {
  margin: 40px 0;
  text-align: center;
}
.block-figure img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.block-figure figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.block-cta {
  text-align: center;
  margin: 50px 0;
}
.project-contact {
  padding: 100px 80px;
}
.project-contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .project-blocks { padding: 0 25px 80px; }
  .project-contact { padding: 80px 25px; }
}

/* === EVENTS === */
.events {
  padding: 140px 80px;
  background: linear-gradient(170deg, var(--wine-deep) 0%, var(--dark) 40%, var(--vine-dark) 100%);
  color: var(--text-light);
}
.events-header {
  text-align: center;
  margin-bottom: 80px;
}
.events-header .section-label { justify-content: center; }
.events-header .section-label::before { display: none; }
.events-header .section-title { max-width: 600px; margin: 0 auto; }
.events-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.events-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--dark-light);
}
.event-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}
.event-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--dark);
  z-index: 1;
}
.event-item:nth-child(even) .event-date { order: 2; text-align: left; }
.event-item:nth-child(even) .event-content { order: 1; text-align: right; }
.event-date {
  text-align: right;
  padding-top: 10px;
}
.event-date .day {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.event-date .month {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.event-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.event-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(107, 127, 94, 0.2);
  color: var(--vine-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 12px;
}
.event-tag.tag-wine {
  background: rgba(139, 58, 74, 0.2);
  color: var(--wine);
}
.event-tag.tag-gold {
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold);
}
.event-image {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.event-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.event-desc ul { padding-left: 20px; margin: 10px 0; }
.event-desc a { color: var(--gold); }
.no-events {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 60px 0;
}

/* === CONTACT === */
.contact {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 50px;
}
.contact-details { list-style: none; margin-bottom: 50px; }
.contact-details li {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-details li .icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 45px; height: 45px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.form-group { margin-bottom: 25px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1.5px solid #ddd;
  background: transparent;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
}
.form-tag {
  padding: 8px 20px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-muted);
}
.form-tag:hover, .form-tag.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}
.form-submit {
  display: flex; gap: 15px; align-items: center;
}
.form-feedback {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}
.form-feedback.success { color: var(--vine); }
.form-feedback.error { color: var(--wine); }

/* === NEWSLETTER === */
.newsletter {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--wine-deep) 100%);
  color: var(--text-light);
}
.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .section-label { justify-content: center; }
.newsletter-inner .section-label::before { display: none; }
.newsletter-inner .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}
.newsletter-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1.5px solid var(--dark-light);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-form input {
  flex: 1;
  padding: 16px 25px;
  border: none;
  background: transparent;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 16px 30px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  margin: 4px;
  transition: background 0.3s ease;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* === FOOTER === */
footer {
  padding: 60px 80px 30px;
  background: var(--dark);
  border-top: 1px solid rgba(139, 58, 74, 0.3);
  color: var(--text-muted);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--dark-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* === 404 === */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 40px;
}
.page-404 h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.page-404 p { color: var(--text-muted); font-size: 1.1rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 140px 40px 100px; gap: 50px; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; padding: 100px 40px; gap: 60px; }
  .gallery { padding: 100px 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .project { padding: 100px 40px; }
  .project-grid { grid-template-columns: 1fr; }
  .events { padding: 100px 40px; }
  .contact { grid-template-columns: 1fr; padding: 100px 40px; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav { padding: 15px 30px; }
  .hero-mini { padding: 140px 40px 60px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3 !important; }
  .events-timeline::before { left: 20px; }
  .event-item { grid-template-columns: 1fr; gap: 10px; padding-left: 50px; }
  .event-item::before { left: 20px; }
  .event-item:nth-child(even) .event-date { order: unset; text-align: left; }
  .event-item:nth-child(even) .event-content { order: unset; text-align: left; }
  .event-date { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .newsletter { padding: 80px 30px; }
  .about-artists { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
  .contact { padding: 80px 25px; gap: 40px; }
  .hero-mini { padding: 120px 25px 50px; }
}
