:root {
  --bg-color: #161412; /* Dark brownish charcoal */
  --text-color: #fae9cc; /* Spotlight */
  --accent-color: #44281d; /* Night Brown */
  --accent-hover: #553325;
  --border-color: rgba(250, 233, 204, 0.2);
  
  --font-heading: 'Pragmatica Extended', 'Pragmatica', sans-serif;
  --font-body: 'Montserrat Alternates', sans-serif;
}

.lyra-constellation-bg,
.services-bg-overlay {
  position: fixed;
  inset: 0;
  background-image: url('../images/constellation.png'), url('../images/constellation.png');
  background-size: 700px, 900px;
  background-position: top -100px right -150px, bottom -200px left -200px;
  background-repeat: no-repeat;
  opacity: 0.02;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.events-hero,
.services-hero {
  padding: 180px 0 60px;
  text-align: center;
  background: #12100e;
}

.services-hero {
  background: transparent;
  padding-bottom: 80px;
}

.events-title,
.services-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.events-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
  opacity: 0.7;
  line-height: 1.6;
}

.featured-exhibition {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  margin-top: 60px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-exhibition:hover {
  border-color: var(--accent-color);
}

.featured-exh-img {
  width: 100% !important;
  height: 400px !important;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
}

.featured-exh-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-exh-date {
  color: var(--accent-color);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-exh-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-exh-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
}

@media (min-width: 992px) {
  .featured-exhibition {
    flex-direction: row;
  }

  .featured-exh-img {
    width: 50% !important;
    height: auto !important;
    min-height: 500px;
  }

  .featured-exh-content {
    width: 50%;
    padding: 60px;
  }
}

@media (max-width: 768px) {
  .featured-exh-title {
    font-size: 2rem;
  }

  .featured-exh-content {
    padding: 24px;
  }

  .featured-exh-img {
    height: 300px !important;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 60px 0;
  gap: 40px;
}

.service-left {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-right {
  flex: 1;
  min-width: 300px;
}

.service-row h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

.btn-signup {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--text-color);
  padding: 12px 32px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  transition: all 0.4s ease;
  cursor: pointer;
  margin-top: 24px;
}

.btn-signup:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

.service-right h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-weight: 400;
  margin-top: 32px;
}

.service-right h4:first-child {
  margin-top: 0;
}

.service-right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.service-right ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  opacity: 0.8;
  position: relative;
  padding-left: 20px;
}

.service-right ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--text-color);
  opacity: 0.5;
}

.service-right p {
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.highlight-row {
  border-top-color: var(--accent-color);
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
  animation: zoomSlow 20s infinite alternate linear;
}

@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-color) 0%, transparent 60%, rgba(22,20,18,0.8) 100%);
  z-index: -1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-copy {
  max-width: 800px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 6rem;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.about-subtitle,
.lyra-kicker {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}

.text-lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}

.text-body {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 24px;
}

.section-pad {
  padding: 140px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.7);
}

.create-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.create-card {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.create-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s;
  filter: brightness(0.5);
}

.create-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.3);
}

.create-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.create-card:hover .create-card-content {
  transform: translateY(0);
}

.create-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-color);
}

.create-card p {
  opacity: 0;
  line-height: 1.6;
  transition: opacity 0.5s;
}

.create-card:hover p {
  opacity: 0.9;
}

.lyra-boxed-quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.lyra-boxed-panel {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid var(--border-color);
  background: rgba(250, 233, 204, 0.02);
}

.parallax-section {
  position: relative;
  padding: 200px 0;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.85);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.huge-quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 1;
  margin: 60px 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.values-list {
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
}

.value-item {
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.value-item:hover {
  background: rgba(250, 233, 204, 0.02);
  padding-left: 20px;
}

.value-item h3 {
  font-size: 2rem;
  color: var(--text-color);
}

.constellation-wrapper {
  padding: 200px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #12100e;
}

.constellation-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
}

.constellation-content {
  position: relative;
  z-index: 2;
}

.lyra-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 60px 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
  opacity: 0.7;
}

@media (max-width: 992px) {
  .split-layout,
  .value-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-image {
    height: 400px;
  }

  .about-title {
    font-size: 4rem;
  }

  .huge-quote {
    font-size: 3rem;
  }
}

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

html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.5;
}

[data-elementor-type="wp-page"].elementor {
  display: flex;
  flex-direction: column;
  width: 100%;
}

[data-elementor-type="wp-page"].elementor > .e-con,
[data-elementor-type="wp-page"].elementor > .elementor-element {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

[data-elementor-type="wp-page"].elementor > .e-con.e-flex {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-color);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-color);
  color: var(--text-color);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}

.btn-link {
  background: transparent;
  padding: 0;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(22, 20, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 233, 204, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  max-width: 120px;
}

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

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
}

.hamburger span {
  width: 16px;
  height: 1px;
  background-color: var(--text-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
  max-width: 100vw;
}

.hero-constellation-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/constellation.png'), url('../images/constellation.png');
  background-size: 700px, 900px;
  background-position: top -300px right -100px, bottom 200px left -150px;
  background-repeat: no-repeat;
  opacity: 0.02;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60% !important;
  height: 100% !important;
  min-height: 100%;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.15);
  transform-origin: left center;
  z-index: -1;
  mask-image: linear-gradient(to right, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.elementor-widget-lyra_home_hero,
.elementor-widget-lyra_home_hero .elementor-widget-container,
.elementor-widget-lyra_home_hero .hero {
  width: 100%;
  max-width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-title-wrap {
  margin-bottom: 24px;
}

.hero-huge-title {
  font-size: var(--hero-title-desktop, 8rem);
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 48px;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  animation: scrollBounce 2s infinite ease-in-out;
}

/* ART REST TASTE section */
.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.elementor-widget-lyra_image_cards {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.elementor-widget-lyra_image_cards .elementor-widget-container,
.elementor-widget-lyra_image_cards .three-cols {
  width: 100%;
  max-width: 100%;
}

.col-card {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
}

.col-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(22, 20, 18, 0.9) 0%, rgba(22, 20, 18, 0.2) 100%);
  z-index: 1;
}

.col-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
  transition: transform 0.7s ease;
  z-index: 0;
}

.col-card:hover .col-img {
  transform: scale(1.05);
}

.col-content {
  position: relative;
  z-index: 2;
}

.col-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.col-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 300px;
}

/* Section Title global */
.section-header {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-size: 2.5rem;
}

.section-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 300px;
}

.events {
  padding: 120px 0;
  background-color: #1a1815;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background-color: var(--bg-color);
  border: 1px solid rgba(250, 233, 204, 0.2);
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  border-color: rgba(250, 233, 204, 0.5);
}

.event-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 8px;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 12px;
}

.event-actions .btn-link {
  font-size: 0.7rem;
}

/* Experience Block */
.experience {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

.exp-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 0%, var(--bg-color) 100%);
  z-index: 0;
}

.exp-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.exp-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.exp-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Exhibitions */
.exhibitions {
  padding: 120px 0;
}

.exh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.exh-main-card {
  position: relative;
  height: 500px;
  grid-row: span 2;
  overflow: hidden;
}

.exh-small-card {
  position: relative;
  height: 238px;
  overflow: hidden;
}

.exh-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(22, 20, 18, 0.9) 0%, transparent 100%);
  z-index: 2;
}

.exh-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.exh-main-card:hover .exh-img,
.exh-small-card:hover .exh-img {
  transform: scale(1.03);
}

.exh-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.exh-date {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* Footer */
footer {
  background-color: #12100e;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.15fr) minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.footer-desc {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-contact {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-socials a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-map {
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: #12100e;
  height: 100%;
}

.footer-col-map {
  grid-column: span 2;
}

.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 0;
  filter: grayscale(1) saturate(0.7) brightness(0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  opacity: 0.5;
  border-top: 1px solid rgba(250, 233, 204, 0.1);
  padding-top: 24px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .footer-col,
  .footer-col-map {
    grid-column: auto !important;
    width: 100%;
  }
  .footer-col:first-child {
    align-items: flex-start;
  }
  .footer-logo {
    display: block !important;
    width: 220px;
    max-width: 100%;
    height: auto !important;
    margin-bottom: 12px !important;
  }
  .footer-desc {
    display: inline-block;
    width: auto;
    max-width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
}

/* Workshop Section */
.workshop {
  padding: 160px 0;
  position: relative;
}

.workshop-inner {
  display: flex;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
}

.workshop-images {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.workshop-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);
}

.workshop-img-main {
  width: 85%;
  height: 600px;
  object-fit: cover;
}

.workshop-img-sub {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 60%;
  height: 350px;
  object-fit: cover;
  border: 12px solid var(--bg-color);
}

.workshop-text {
  flex: 1;
  min-width: 350px;
  padding-left: 20px;
}

.workshop-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.workshop-line {
  height: 1px;
  width: 40px;
  background-color: var(--text-color);
  opacity: 0.5;
}

.workshop-label-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.workshop-title {
  font-size: 3.5rem;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.workshop-p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 16px;
}

.workshop-p-bottom {
  margin-bottom: 48px;
}

/* Art Collection (Page 2 reference) */
.collection {
  padding: 0;
  background-color: var(--bg-color);
}

.collection-hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--bg-color);
}

.collection-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(0.2);
}

.collection-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(22,20,18,0.98) 0%, rgba(22,20,18,0.85) 45%, transparent 100%);
}

.collection-hero-content {
  position: relative;
  z-index: 1;
}

.collection-hero-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--text-color);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.collection-hero-desc {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 56px;
}

.collection-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-color);
  border-bottom: 1px solid rgba(250, 233, 204, 0.4);
  padding-bottom: 12px;
  letter-spacing: 0.2em;
  display: inline-block;
}
.collection-hero {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.collection-info {
  flex: 1;
  max-width: 500px;
}

.collection-info h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.collection-info p {
  opacity: 0.8;
  margin-bottom: 40px;
}

.collection-gallery {
  flex: 2;
  display: flex;
  gap: 24px;
}

.collection-gallery img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.filter-selects {
  display: flex;
  gap: 16px;
}

.filter-select {
  background: transparent;
  border: 1px solid rgba(250, 233, 204, 0.2);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 140px;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23e6e2d8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.filter-select:focus {
  outline: none;
  border-color: rgba(250, 233, 204, 0.5);
}

.filter-select option {
  background: var(--bg-color);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.art-card {
  border: 1px solid rgba(250, 233, 204, 0.2);
  background-color: #1a1815;
}

.art-card-img-wrap {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
}

.art-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block;
  flex: none;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-card:hover img {
  transform: scale(1.05);
}

.art-card-info {
  padding: 16px;
}

.art-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.art-card-author {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.art-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-card-price {
  font-size: 0.9rem;
}

/* Filters Bar */
.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(250, 233, 204, 0.1);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 20, 18, 0.9);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #1a1815;
  border: 1px solid rgba(250, 233, 204, 0.2) !important;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  padding: 52px 54px 46px;
  max-width: 560px;
  width: 100%;
  position: relative;
}

.modal-content h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-modal-artwork-name {
  margin-bottom: 30px;
  color: rgba(250, 233, 204, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-color);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-close:hover {
  opacity: 0.72;
  transform: rotate(90deg);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(250, 233, 204, 0.2) !important;
  padding: 12px;
  color: var(--text-color);
  font-family: var(--font-body);
  box-shadow: inset 0 0 0 1px rgba(250, 233, 204, 0.02);
}

.form-group input:focus {
  outline: none;
  border-color: var(--text-color);
}

.modal .wpcf7-form p {
  margin: 0 0 18px;
}

.modal .wpcf7-form label {
  display: block;
  font-size: 0.76rem;
  line-height: 1.3;
  margin-bottom: 0;
  color: rgba(250, 233, 204, 0.74);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.modal .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  background: rgba(250, 233, 204, 0.03);
  border: 1px solid rgba(250, 233, 204, 0.2) !important;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(250, 233, 204, 0.02);
  appearance: none;
  -webkit-appearance: none;
}

.modal .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
  color: rgba(250, 233, 204, 0.36);
}

.modal textarea.wpcf7-form-control {
  min-height: 132px;
  resize: vertical;
}

.modal .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--text-color);
  background: rgba(250, 233, 204, 0.05);
  box-shadow: 0 0 0 1px rgba(250, 233, 204, 0.08);
}

.modal .wpcf7-submit {
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
  background: var(--text-color);
  color: var(--bg-color);
  border: 1px solid var(--text-color);
  padding: 18px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal .wpcf7-submit:hover {
  background: transparent;
  color: var(--text-color);
}

.modal .wpcf7-spinner {
  margin: 16px 0 0;
}

.modal .wpcf7-not-valid-tip {
  margin-top: 10px;
  color: #e8b0a4;
  font-size: 0.78rem;
  line-height: 1.5;
}

.modal .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 18px 20px !important;
  background: rgba(250, 233, 204, 0.04);
  border: 1px solid rgba(250, 233, 204, 0.2) !important;
  color: var(--text-color);
  font-size: 0.98rem;
  line-height: 1.45;
}

.modal .wpcf7 form.invalid .wpcf7-response-output,
.modal .wpcf7 form.unaccepted .wpcf7-response-output,
.modal .wpcf7 form.failed .wpcf7-response-output,
.modal .wpcf7 form.aborted .wpcf7-response-output {
  border-color: rgba(232, 176, 164, 0.4) !important;
  background: rgba(232, 176, 164, 0.07);
}

.modal .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(250, 233, 204, 0.24) !important;
  background: rgba(250, 233, 204, 0.06);
}

.modal-exh-text {
  margin-bottom: 32px;
  line-height: 1.8;
  opacity: 0.9;
}

.modal-exh-text p {
  margin: 0 0 24px;
}

.modal-exh-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .three-cols {
    grid-template-columns: 1fr;
  }
  .events-grid, .exh-grid {
    grid-template-columns: 1fr 1fr;
  }
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 120px;
  }

  .about-title {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .about-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
  }

  .lyra-boxed-quote {
    font-size: 1.1em;
  }

  .lyra-boxed-panel {
    margin-top: 32px !important;
    padding: 24px !important;
  }

  .text-lead {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

  .text-body {
    font-size: 1rem;
  }

  .section-pad {
    padding: 80px 0;
  }

  .parallax-section {
    padding: 120px 0;
    background-attachment: scroll;
  }

  .huge-quote {
    font-size: 2rem;
    margin: 40px 0;
  }

  .split-image {
    height: 300px !important;
  }

  .create-card {
    height: 350px;
  }

  .create-card h3 {
    font-size: 1.4rem;
  }

  .create-card-content {
    transform: translateY(0);
    padding: 24px;
  }

  .create-card p {
    opacity: 0.9;
  }

  .value-item h3 {
    font-size: 1.5rem;
  }

  .constellation-wrapper {
    padding: 100px 0;
  }

  .lyra-tags {
    gap: 12px;
    font-size: 0.8rem;
    margin: 40px 0 !important;
  }

  .constellation-title {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }
  .container {
    padding: 0 20px;
  }
  .hero-huge-title {
    font-size: var(--hero-title-mobile, 4rem) !important;
    white-space: normal;
    line-height: 1.05;
  }
  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
  .events-grid, .exh-grid, .art-grid {
    grid-template-columns: 1fr;
  }
  .nav-links, .header-actions .btn {
    display: none;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .hamburger span {
    transition: all 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  header.nav-open {
    background-color: var(--bg-color) !important;
    height: 100vh;
    bottom: 0;
    align-items: flex-start;
  }
  header.nav-open .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
    gap: 40px;
    align-items: center;
    order: 3;
  }
  header.nav-open .nav-links a {
    font-size: 1.15rem;
  }
  header.nav-open .header-actions {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
    order: 4;
  }
  header.nav-open .header-actions .btn {
    display: flex;
    width: auto;
  }
  .collection-hero {
    flex-direction: column;
  }
  .filters-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .filter-selects {
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
  }
  .filter-select {
    flex: 1 1 calc(50% - 16px);
    min-width: 0 !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-col:first-child {
    align-items: flex-start;
  }
  .footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto !important;
    margin-bottom: 12px !important;
  }
  .footer-desc {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }
  .footer-map iframe {
    height: 260px;
    min-height: 260px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  .modal-content {
    max-width: calc(100vw - 32px);
    padding: 42px 24px 28px;
  }
  .modal-content h3 {
    font-size: 1.8rem;
  }
  
  /* Adapted sections */
  .col-card {
    padding: 24px;
    height: 450px;
  }
  
  .workshop {
    padding: 80px 0;
  }
  .workshop-inner {
    gap: 60px;
  }
  .workshop-images, .workshop-text {
    min-width: 100%;
  }
  .workshop-img-main {
    width: 100%;
    height: 400px;
  }
  .workshop-img-sub {
    width: 70%;
    height: 250px;
    bottom: -30px;
  }
  .workshop-text {
    padding-left: 0;
  }
  .workshop-title {
    font-size: 2.8rem;
  }
  
  .collection-hero-banner {
    height: auto;
    min-height: 80vh;
  }
  .collection-bg-overlay {
    background: linear-gradient(to top, rgba(22,20,18,0.98) 0%, rgba(22,20,18,0.7) 100%);
  }
  .collection-hero-title {
    font-size: 3.5rem;
  }
  .collection-hero-desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .footer-logo {
    width: 190px;
    max-width: 100%;
    height: auto !important;
  }
  .footer-desc {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
  .hero-huge-title {
    font-size: var(--hero-title-mobile, 3rem) !important;
  }
  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .workshop-title {
    font-size: 2.2rem;
  }
  .collection-hero-title {
    font-size: 2.8rem;
  }
  .filter-select {
    min-width: 0 !important;
    flex: 1 1 100% !important;
    padding: 10px 16px !important;
  }
  .filter-selects {
    gap: 12px !important;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.7rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .logo-sub {
    font-size: 0.5rem;
    max-width: 100px;
  }
  .logo-wrap {
    gap: 8px;
  }
  .hamburger {
    width: 32px;
    height: 32px;
  }
  .col-card {
    padding: 16px;
    height: 400px;
  }
  .event-info {
    padding: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
