:root {
  --bg: #FDF6F0;
  --nav: #4A3F35;
  --accent: #7E2D3C;
  --text: #4B4B4B;
  --gold: #C4A17A;
  --paper: #fffaf5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(196, 161, 122, 0.16), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(126, 45, 60, 0.08), transparent 28%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: #3f342b;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(74, 63, 53, 0.84);
  border-bottom: 1px solid rgba(196, 161, 122, 0.45);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(74, 63, 53, 0.96);
  box-shadow: 0 18px 35px -25px rgba(32, 26, 22, 0.85);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.wordmark {
  color: #fff;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.73rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  padding: 0.42rem 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 161, 122, 0.6);
}

.hero-image {
  width: 100%;
  height: 82vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(41, 35, 30, 0.74), rgba(41, 35, 30, 0.2)),
    linear-gradient(to right, rgba(41, 35, 30, 0.45), transparent 60%);
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.7vw, 1.8rem);
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid rgba(196, 161, 122, 0.54);
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.quote {
  align-self: end;
  padding: 1.1rem;
  border: 1px solid rgba(196, 161, 122, 0.8);
  background: var(--paper);
}

.quote p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.2;
}

.quote span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: #6d5b4d;
}

.agenda-list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.agenda-list article {
  display: grid;
  grid-template-columns: 155px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(196, 161, 122, 0.6);
}

.date {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #3c322a;
}

.media-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-cards article {
  border: 1px solid rgba(196, 161, 122, 0.75);
  background: var(--paper);
  overflow: hidden;
}

.media-cards img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}

.media-cards article:hover img {
  transform: scale(1.06);
}

.media-cards h3 {
  padding: 0.65rem 0.9rem 0.9rem;
}

.page-hero {
  padding: 7rem 0 3rem;
  border-bottom: 1px solid rgba(196, 161, 122, 0.65);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.page-hero p {
  max-width: 65ch;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  border: 1px solid rgba(196, 161, 122, 0.72);
  background: var(--paper);
  padding: 1.2rem;
}

.card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(196, 161, 122, 0.8);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.artist-photo {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 1px solid rgba(196, 161, 122, 0.8);
  margin-bottom: 0.8rem;
}

.page-hero-agenda {
  padding-bottom: 2rem;
}

.year-label {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 6vw, 4rem);
  color: #3f342b;
  margin-bottom: 1.2rem;
}

.agenda-flow {
  display: grid;
  gap: 1rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(196, 161, 122, 0.7);
  background: var(--paper);
}

.agenda-date {
  text-align: center;
  border: 1px solid rgba(126, 45, 60, 0.5);
  background: rgba(126, 45, 60, 0.08);
  padding: 0.5rem 0.2rem;
}

.agenda-date .day {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #3f342b;
}

.agenda-date .month {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.agenda-copy h2 {
  margin-bottom: 0.2rem;
}

/* Agenda text list styling */
.agenda-text-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.agenda-text-item {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(196, 161, 122, 0.7);
  background: var(--paper);
  margin: 0;
  font-size: 1.05rem;
}

.media-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.media-wall img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(196, 161, 122, 0.75);
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(196, 161, 122, 0.85);
  background: #fff;
  color: var(--text);
  padding: 0.74rem 0.8rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding: 0.62rem 1rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: #622331;
  border-color: #622331;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 1);
}

.btn-small {
  font-size: 0.68rem;
  padding: 0.5rem 0.78rem;
}

.text-link {
  color: #5e1f2f;
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(196, 161, 122, 0.65);
  background: rgba(255, 250, 245, 0.6);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  padding: 0.42rem 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

/* Social media icons in footer */
.social-media {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--text);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(74, 63, 53, 0.98);
    border-bottom: 1px solid rgba(196, 161, 122, 0.4);
    padding: 0.85rem 4vw 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .nav-wrap .btn-small {
    display: none;
  }

  .split,
  .content-grid,
  .artist-grid,
  .media-wall,
  .media-cards {
    grid-template-columns: 1fr;
  }

  .agenda-list article {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .agenda-item {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 72vh;
  }
}
