/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: #e8e4de;
  background: #0a0a0a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection {
  background: #e8e4de;
  color: #0a0a0a;
}

/* ===== Cursor Glow (desktop) ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,228,222,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  mix-blend-mode: difference;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 100%;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 32px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.5;
}

.nav-links a.active {
  opacity: 0.5;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 3px;
  padding: 12px 0;
  transition: opacity 0.3s;
  text-align: center;
}

.mobile-nav a:hover {
  opacity: 0.4;
}

/* ===== Full-Screen Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(80, 60, 120, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(60, 100, 120, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(232, 228, 222, 0.04);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.5; }
}

.hero-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 36px;
  filter: invert(1) brightness(0.85);
  opacity: 0;
  animation: fade-up 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1.05;
  color: #e8e4de;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(232, 228, 222, 0.45);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.25);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(232, 228, 222, 0.3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== Exhibition Showcase (Home) ===== */
.carousel-section {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.3);
  text-align: center;
  margin-bottom: 16px;
}

.carousel-section h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.carousel-section h2 a {
  color: #e8e4de;
  transition: opacity 0.3s;
}

.carousel-section h2 a:hover {
  opacity: 0.5;
}

.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(232, 228, 222, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #e8e4de;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
  opacity: 0;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: #e8e4de;
  color: #0a0a0a;
  border-color: #e8e4de;
}

.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232, 228, 222, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.carousel-dots .dot.active {
  background: #e8e4de;
  box-shadow: 0 0 12px rgba(232, 228, 222, 0.3);
}

/* ===== Page Hero ===== */
.page-hero {
  height: 50vh;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(232, 228, 222, 0.2), transparent);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: 6px;
  color: #e8e4de;
}

.page-hero .page-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.3);
  margin-bottom: 20px;
}

/* ===== About ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.about-content .about-image {
  width: 100%;
  margin-bottom: 70px;
  opacity: 0.9;
  transition: opacity 0.5s;
}

.about-content .about-image:hover {
  opacity: 1;
}

.about-content p {
  font-size: 16px;
  line-height: 2.1;
  color: rgba(232, 228, 222, 0.6);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.about-content p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #e8e4de;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
}

/* ===== Magazine ===== */
.magazine-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.magazine-content .magazine-image {
  width: 100%;
  margin-bottom: 70px;
  opacity: 0.9;
  transition: opacity 0.5s;
}

.magazine-content .magazine-image:hover {
  opacity: 1;
}

.magazine-content p {
  font-size: 16px;
  line-height: 2.1;
  color: rgba(232, 228, 222, 0.6);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.magazine-content .contact-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(232, 228, 222, 0.8);
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(232, 228, 222, 0.06);
}

.magazine-content .contact-cta a {
  color: #e8e4de;
  border-bottom: 1px solid rgba(232, 228, 222, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.magazine-content .contact-cta a:hover {
  border-color: transparent;
}

/* ===== Open Call ===== */
.opencall-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.exhibition-card {
  margin-bottom: 120px;
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}

.exhibition-card:last-child {
  margin-bottom: 0;
}

.exhibition-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.exhibition-card img {
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.exhibition-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.exhibition-card .card-text {
  padding-top: 8px;
}

.exhibition-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #e8e4de;
  line-height: 1.35;
}

.exhibition-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(232, 228, 222, 0.5);
  margin-bottom: 14px;
}

.exhibition-card + .exhibition-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 60px;
  height: 1px;
  background: rgba(232, 228, 222, 0.1);
}

/* ===== Contact ===== */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: #e8e4de;
}

.contact-info p {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(232, 228, 222, 0.45);
  letter-spacing: 0.3px;
}

.contact-info a {
  color: rgba(232, 228, 222, 0.6);
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #e8e4de;
}

.contact-info .info-block {
  margin-bottom: 40px;
}

.contact-info .info-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.25);
  margin-bottom: 12px;
}

.contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #e8e4de;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(232, 228, 222, 0.25);
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(232, 228, 222, 0.1);
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  color: #e8e4de;
  background: transparent;
  transition: border-color 0.4s;
  letter-spacing: 0.5px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: rgba(232, 228, 222, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 228, 222, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.btn-submit {
  padding: 16px 52px;
  background: transparent;
  color: #e8e4de;
  border: 1px solid rgba(232, 228, 222, 0.2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #e8e4de;
  color: #0a0a0a;
  border-color: #e8e4de;
  letter-spacing: 6px;
}

#formSuccess {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
}

/* ===== Exhibitions Grid ===== */
.exhibitions-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.ex-card {
  display: block;
  color: inherit;
  cursor: default;
}

a.ex-card {
  cursor: pointer;
}

.ex-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 3/4;
}

.ex-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ex-card:hover .ex-card-img img {
  transform: scale(1.04);
}

.ex-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ex-card:hover .ex-card-overlay {
  opacity: 1;
}

.ex-card-cta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8e4de;
  padding: 14px 32px;
  border: 1px solid rgba(232, 228, 222, 0.4);
  transition: all 0.3s;
}

.ex-card:hover .ex-card-cta {
  background: #e8e4de;
  color: #0a0a0a;
  border-color: #e8e4de;
}

.ex-card-info {
  padding: 4px 0;
}

.ex-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.3);
  display: block;
  margin-bottom: 10px;
}

.ex-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #e8e4de;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.ex-card-info p {
  font-size: 13px;
  color: rgba(232, 228, 222, 0.4);
  letter-spacing: 0.3px;
}

/* ===== Exhibition Detail Hero ===== */
.ex-detail-hero {
  padding: 120px 48px 80px;
}

.ex-detail-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.ex-detail-poster img {
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ex-detail-intro .ex-card-tag {
  margin-bottom: 16px;
}

.ex-detail-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #e8e4de;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ex-detail-subtitle {
  font-size: 15px;
  color: rgba(232, 228, 222, 0.5);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.ex-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 228, 222, 0.08);
}

.meta-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.25);
  min-width: 80px;
}

.meta-value {
  font-size: 14px;
  color: rgba(232, 228, 222, 0.6);
}

/* ===== Exhibition Detail About ===== */
.ex-detail-about {
  border-top: 1px solid rgba(232, 228, 222, 0.06);
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
  padding: 80px 48px;
}

.ex-detail-about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ex-detail-about .lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #e8e4de;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ex-detail-about p {
  font-size: 15px;
  line-height: 2;
  color: rgba(232, 228, 222, 0.5);
  margin-bottom: 16px;
}

/* ===== Awards Section ===== */
.ex-awards {
  padding: 100px 48px;
}

.ex-awards-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.ex-awards .section-label {
  margin-bottom: 60px;
}

.award-category {
  margin-bottom: 70px;
}

.award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #e8e4de;
  letter-spacing: 1px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
}

.award-artists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.award-artists:has(.award-artist-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.award-artist-card {
  position: relative;
  overflow: hidden;
}

.award-artist-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 16px;
  opacity: 0.88;
  transition: opacity 0.5s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-artist-card:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.award-artist-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(232, 228, 222, 0.75);
  letter-spacing: 0.5px;
}

/* Honorable Mentions */
.honorable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.honorable-list span {
  font-size: 14px;
  color: rgba(232, 228, 222, 0.4);
  line-height: 2;
  letter-spacing: 0.3px;
}

.honorable-list span::after {
  content: '·';
  margin-left: 20px;
  color: rgba(232, 228, 222, 0.15);
}

.honorable-list span:last-child::after {
  content: '';
}

/* Back Link */
.ex-back {
  padding: 0 48px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.back-link {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.4);
  transition: color 0.3s;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 228, 222, 0.1);
  display: inline-block;
}

.back-link:hover {
  color: #e8e4de;
  border-bottom-color: #e8e4de;
}

/* ===== Synthetica Exhibition Page ===== */
.synth-hero {
  margin-top: 80px;
}

.synth-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}

.synth-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.synth-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.synth-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.synth-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}

.synth-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #e8e4de;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.synth-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 228, 222, 0.5);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.synth-desc {
  text-align: left;
}

.synth-desc p {
  font-size: 15px;
  line-height: 2;
  color: rgba(232, 228, 222, 0.55);
  margin-bottom: 20px;
}

/* Award Summary */
.synth-awards-summary {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px 80px;
  border-top: 1px solid rgba(232, 228, 222, 0.06);
  padding-top: 60px;
}

.synth-awards-summary h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #e8e4de;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.synth-awards-summary ul {
  list-style: none;
}

.synth-awards-summary li {
  font-size: 15px;
  color: rgba(232, 228, 222, 0.55);
  line-height: 2.2;
  letter-spacing: 0.3px;
}

.synth-awards-summary li strong {
  color: rgba(232, 228, 222, 0.8);
}

/* Award Blocks with Artworks */
.synth-awards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 48px 80px;
}

.synth-award-block {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(232, 228, 222, 0.06);
}

.synth-award-block:last-child {
  border-bottom: none;
}

.synth-award-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #e8e4de;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.synth-award-block h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(232, 228, 222, 0.6);
  margin-bottom: 24px;
  margin-top: 32px;
  letter-spacing: 0.5px;
}

.synth-award-block h4:first-of-type {
  margin-top: 16px;
}

/* Artwork Grids */
.artwork-grid {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}

.artwork-grid.col-1 {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.artwork-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.artwork-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Honorable mentions - masonry-like with 4 columns */
.synth-award-block:last-child .artwork-grid.col-3 {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4px;
  row-gap: 4px;
}

.artwork-grid img {
  width: 100%;
  display: block;
  transition: opacity 0.4s;
}

.artwork-grid img:hover {
  opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(232, 228, 222, 0.06);
  padding: 80px 48px 50px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232, 228, 222, 0.25);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col p {
  font-size: 13px;
  color: rgba(232, 228, 222, 0.35);
  line-height: 2;
}

.footer-col a {
  font-size: 13px;
  color: rgba(232, 228, 222, 0.35);
  display: block;
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #e8e4de;
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 228, 222, 0.04);
  text-align: center;
  font-size: 10px;
  color: rgba(232, 228, 222, 0.15);
  letter-spacing: 3px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  animation: reveal-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-up {
  to { transform: translateY(0); }
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  animation: hero-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}

.hero h1 .line:nth-child(2) span {
  animation-delay: 0.15s;
}

.hero p {
  opacity: 0;
  animation: fade-up 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  opacity: 0;
  animation: fade-up 1s 1s ease forwards;
}

/* ===== Grain Overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 22px 24px; }

  .hero h1 { letter-spacing: 3px; }

  .carousel-section {
    padding: 80px 24px;
  }

  .carousel-section h2 {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    opacity: 1;
  }

  .carousel-btn.prev { left: 12px; }
  .carousel-btn.next { right: 12px; }

  .page-hero {
    height: 40vh;
    min-height: 280px;
  }

  .footer { padding: 60px 24px 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }

  .exhibition-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
  }

  .exhibition-card h2 {
    font-size: 26px;
  }

  .exhibitions-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 50px;
  }

  .ex-detail-hero { padding: 100px 24px 60px; }
  .ex-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ex-detail-poster { max-width: 300px; }
  .ex-detail-intro h1 { font-size: 34px; }

  .ex-detail-about { padding: 60px 24px; }
  .ex-awards { padding: 60px 24px; }
  .ex-back { padding: 0 24px 60px; }

  .award-artists {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .synth-intro { padding: 60px 24px; }
  .synth-intro h1 { font-size: 34px; }
  .synth-awards-summary { padding: 40px 24px 60px; }
  .synth-awards { padding: 20px 24px 60px; }
  .artwork-grid.col-3 { grid-template-columns: repeat(2, 1fr); }
  .artwork-grid.col-2 { grid-template-columns: 1fr; }
  .synth-award-block:last-child .artwork-grid.col-3 { grid-template-columns: repeat(2, 1fr); }

  .about-content,
  .magazine-content,
  .opencall-content,
  .contact-content {
    padding: 60px 24px 80px;
  }

  .about-content p:first-of-type {
    font-size: 24px;
  }

  .mobile-nav a {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .exhibition-card h2 { font-size: 24px; }
  .page-hero h1 { letter-spacing: 3px; }
  .mobile-nav a { font-size: 30px; }
}
