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

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0c0a;
  color: #f5efe3;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 20px 80px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #0d0c0a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/altara-mountain.png");
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: scale(1);
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-light-sweep {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 221, 160, 0.02) 30%,
    rgba(255, 221, 160, 0.22) 48%,
    rgba(255, 221, 160, 0.04) 62%,
    transparent 100%
  );
  mix-blend-mode: screen;
  animation: heroLightSweep 8s ease-in-out infinite alternate;
}

@keyframes heroLightSweep {
  from {
    transform: translateX(-18%);
    opacity: 0.35;
  }

  to {
    transform: translateX(18%);
    opacity: 0.85;
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.22) 0 1px, transparent 1px);
  background-size: 110px 110px, 170px 170px;
}

.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
	rgba(13, 12, 10, 0.78),
	rgba(13, 12, 10, 0.36),
	rgba(13, 12, 10, 0)
  );
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.08),
    #0d0c0a
  );
  z-index: 2;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 30%,
    rgba(200, 168, 107, 0.22),
    transparent 35%
  );
  z-index: 3;
}

.navbar,
.hero-content,
.hero-tags {
  position: relative;
  z-index: 5;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 168, 107, 0.55);
  border-radius: 50%;
  color: #c8a86b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.brand-name {
  color: #c8a86b;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
}

.brand-subtitle {
  color: rgba(245, 239, 227, 0.6);
  font-size: 12px;
  margin-top: 3px;
}

.nav-link {
  color: rgba(245, 239, 227, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c8a86b;
}

.hero-content {
  max-width: 920px;
  margin-top: 70px;
}

.eyebrow {
  color: #c8a86b;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  margin-bottom: 24px;
}

.dark-gold {
  color: #9b7745;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 900px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 680px;
  margin-top: 32px;
  color: rgba(245, 239, 227, 0.74);
  font-size: 20px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #c8a86b;
  color: #0d0c0a;
}

.btn-primary:hover {
  background: #e0c184;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(245, 239, 227, 0.22);
  color: rgba(245, 239, 227, 0.86);
}

.btn-secondary:hover {
  border-color: rgba(200, 168, 107, 0.7);
  color: #c8a86b;
  transform: translateY(-2px);
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  color: rgba(245, 239, 227, 0.72);
  font-size: 14px;
  margin-top: 55px;
}

.hero-tags div {
  border-top: 1px solid rgba(245, 239, 227, 0.16);
  padding-top: 18px;
}

.section {
  padding: 112px 80px;
}

.light-section {
  background: #f5efe3;
  color: #17130f;
}

.dark-section {
  background: #14110d;
  color: #f5efe3;
}

.black-section {
  position: relative;
  background: #0d0c0a;
  color: #f5efe3;
  overflow: hidden;
}

.black-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 15%,
    rgba(200, 168, 107, 0.15),
    transparent 30%
  );
}

.two-columns {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.align-center {
  align-items: center;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.text-block {
  color: rgba(23, 19, 15, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.text-block p + p {
  margin-top: 24px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-intro p:last-child {
  margin-top: 24px;
  color: rgba(245, 239, 227, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

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

.service-card,
.approach-card {
  border: 1px solid rgba(245, 239, 227, 0.1);
  background: rgba(245, 239, 227, 0.05);
  border-radius: 28px;
  padding: 32px;
  min-height: 250px;
  transition: all 0.3s ease;
}

.service-card:hover,
.approach-card:hover {
  background: rgba(245, 239, 227, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 168, 107, 0.12);
  color: #c8a86b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.service-card h3,
.approach-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p,
.approach-card p {
  color: rgba(245, 239, 227, 0.62);
  line-height: 1.65;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.event-grid div {
  cursor: default;
  border: 1px solid rgba(245, 239, 227, 0.1);
  background: rgba(245, 239, 227, 0.04);
  border-radius: 20px;
  padding: 22px;
  color: rgba(245, 239, 227, 0.8);
  transition: all 0.3s ease;
}

.event-grid div:hover {
  background: rgba(200, 168, 107, 0.13);
  border-color: rgba(200, 168, 107, 0.45);
  color: #f5efe3;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.quote-section {
  background: #efe4d2;
  color: #17130f;
  text-align: center;
}

.quote-content {
  max-width: 900px;
  margin: 0 auto;
}

.quote-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(155, 119, 69, 0.55);
  border-radius: 50%;
  color: #9b7745;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.quote-content p {
  margin-top: 32px;
  color: rgba(23, 19, 15, 0.72);
  font-size: 20px;
  line-height: 1.75;
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

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

.approach-card span {
  display: block;
  color: #c8a86b;
  margin-bottom: 46px;
  font-size: 14px;
}

.map-section {
  background: #0d0c0a;
  color: #f5efe3;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(200, 168, 107, 0.14),
    transparent 32%
  );
  pointer-events: none;
}

.map-intro {
  position: relative;
  max-width: 850px;
  margin-bottom: 56px;
}

.map-intro p:last-child {
  margin-top: 24px;
  color: rgba(245, 239, 227, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.map-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: stretch;
}

#altara-map {
  width: 100%;
  height: 560px;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 227, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  z-index: 2;
  background: #14110d;
  margin-top: 24px;
}

.map-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-item {
  cursor: pointer;
  border: 1px solid rgba(245, 239, 227, 0.11);
  background: rgba(245, 239, 227, 0.05);
  border-radius: 22px;
  padding: 22px;
  transition: all 0.3s ease;
}

.map-item:hover,
.map-item.active {
  background: rgba(200, 168, 107, 0.13);
  border-color: rgba(200, 168, 107, 0.45);
  transform: translateY(-2px);
}

.map-item span {
  display: block;
  color: rgba(245, 239, 227, 0.55);
  font-size: 13px;
  margin-bottom: 8px;
}

.map-item strong {
  display: block;
  color: #f5efe3;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
}

.altara-marker {
  width: 24px;
  height: 24px;
}

.altara-marker span {
  display: block;
  width: 18px;
  height: 18px;
  background: #c8a86b;
  border: 2px solid #f5efe3;
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(200, 168, 107, 0.18),
    0 0 28px rgba(200, 168, 107, 0.75);
}

.leaflet-popup-content-wrapper {
  background: #14110d;
  color: #f5efe3;
  border-radius: 18px;
  border: 1px solid rgba(200, 168, 107, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.leaflet-popup-tip {
  background: #14110d;
}

.popup-content {
  max-width: 240px;
}

.popup-content strong {
  display: block;
  color: #c8a86b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.popup-content span {
  display: block;
  color: rgba(245, 239, 227, 0.65);
  font-size: 13px;
  margin-bottom: 10px;
}

.popup-content p {
  color: rgba(245, 239, 227, 0.78);
  line-height: 1.5;
  margin: 0;
}

.popup-content small {
  display: block;
  margin-top: 12px;
  color: #c8a86b;
  font-size: 12px;
}

.leaflet-control-attribution {
  background: rgba(13, 12, 10, 0.8) !important;
  color: rgba(245, 239, 227, 0.45) !important;
}

.leaflet-control-attribution a {
  color: rgba(200, 168, 107, 0.7) !important;
}

.contact-section {
  position: relative;
  background: linear-gradient(
    to bottom,
    #0d0c0a 0%,
    #0d0c0a 72%,
    #14110d 100%
  );
  color: #f5efe3;
  text-align: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 90px;
}

.mountain-line {
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 168, 107, 0.75),
    rgba(245, 239, 227, 0.18),
    transparent
  );
}

.mountain-line::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 20%;
  right: 20%;
  height: 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 107, 0.16),
    transparent 70%
  );
}

.contact-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.contact-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 32px auto 0;
  color: rgba(245, 239, 227, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.contact-content .btn {
  margin-top: 42px;
}

/* Event photo pages */

.event-page {
  min-height: 100vh;
  background: #0d0c0a;
  color: #f5efe3;
}

.event-hero {
  position: relative;
  padding: 110px 80px 90px;
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(13, 12, 10, 0.35), #0d0c0a),
    radial-gradient(circle at 20% 20%, rgba(200, 168, 107, 0.18), transparent 35%);
}

.back-link {
  position: absolute;
  top: 32px;
  left: 80px;
  color: rgba(245, 239, 227, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #c8a86b;
}

.event-hero h1 {
  margin-top: 12px;
  font-size: clamp(64px, 10vw, 140px);
}

.event-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(245, 239, 227, 0.72);
  font-size: 20px;
  line-height: 1.7;
}

.event-gallery {
  padding: 0 80px 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 24px;
}

.event-gallery img {
  flex: 0 1 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
  width: 100%;
  height: auto !important;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(245, 239, 227, 0.1);
  background: rgba(245, 239, 227, 0.045);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.event-gallery img.loaded {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.event-gallery img.loaded:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(200, 168, 107, 0.55);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(200, 168, 107, 0.12);
}

.event-empty-note {
  padding: 0 80px 100px;
  max-width: 720px;
  color: rgba(245, 239, 227, 0.65);
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 1400px) {
  .event-gallery {
    padding: 0 100px 110px;
    gap: 26px 24px;
  }

  .event-gallery img {
    flex-basis: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}

@media (max-width: 1000px) {
  .hero,
  .section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .two-columns,
  .approach-layout,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  #altara-map {
    height: 460px;
    min-height: 460px;
  }

  .event-hero {
    padding: 90px 32px 80px;
  }

  .back-link {
    left: 32px;
  }

  .event-gallery {
    padding: 0 64px 90px;
    gap: 24px 22px;
  }

  .event-gallery img {
    flex-basis: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .event-empty-note {
    padding: 0 32px 80px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 24px;
    background-position: center;
  }

  .nav-link {
    display: none;
  }

  .hero-content {
    margin-top: 90px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-tags,
  .service-grid,
  .event-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  #altara-map {
    height: 380px;
    min-height: 380px;
    border-radius: 24px;
  }

  .map-item {
    padding: 20px;
  }

  .event-hero {
    padding: 90px 24px 60px;
  }

  .back-link {
    left: 24px;
  }

  .event-gallery {
    padding: 0 32px 70px;
    gap: 22px;
  }

  .event-gallery img {
    flex-basis: 100%;
    max-width: 100%;
  }

  .event-empty-note {
    padding: 0 24px 64px;
  }
}

/* YEARN year separators */

.year-section {
  padding-bottom: 80px;
}

.year-heading {
  padding: 0 80px 36px;
  position: relative;
}

.year-heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 168, 107, 0.95),
    rgba(245, 239, 227, 0.35),
    rgba(200, 168, 107, 0.65),
    transparent
  );
  box-shadow:
    0 0 12px rgba(200, 168, 107, 0.45),
    0 0 28px rgba(200, 168, 107, 0.28),
    0 0 54px rgba(200, 168, 107, 0.16);
}

.year-heading {
  padding: 0 80px 36px;
  position: relative;
}

.year-heading::after {
  content: "";
  position: absolute;
  top: -32px;
  left: 18%;
  right: 18%;
  height: 70px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 107, 0.18),
    rgba(200, 168, 107, 0.06),
    transparent 70%
  );
}

.year-heading h2 {
  color: #f5efe3;
  font-size: clamp(52px, 8vw, 110px);
}

.year-gallery {
  padding-top: 0;
}

.year-empty-note {
  padding-top: 0;
}

@media (max-width: 1000px) {
  .year-heading {
    padding: 0 32px 32px;
  }
}

@media (max-width: 700px) {
  .year-section {
    padding-bottom: 56px;
  }

  .year-heading {
    padding: 0 24px 28px;
  }

  .year-heading h2 {
    font-size: 58px;
  }
}

/* Logo */

.brand-logo {
  max-height: 120px;
  width: auto;
  display: block;
}

/* Extended approach */

.approach-layout-wide {
  grid-template-columns: 0.65fr 1.35fr;
}

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

.approach-grid-extended .approach-card {
  min-height: 290px;
}

/* Contact form */

.contact-form {
  margin: 56px auto 0;
  max-width: 820px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  color: #c8a86b;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(245, 239, 227, 0.14);
  background: rgba(245, 239, 227, 0.055);
  color: #f5efe3;
  border-radius: 18px;
  padding: 18px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 239, 227, 0.38);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(200, 168, 107, 0.65);
  background: rgba(245, 239, 227, 0.08);
}

.form-field textarea {
  resize: vertical;
}

.form-submit {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
}

/* Responsive updates */

@media (max-width: 1000px) {
  .approach-layout-wide {
    grid-template-columns: 1fr;
  }

  .approach-grid-extended {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    max-height: 44px;
  }

  .approach-grid-extended {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .mountain-line {
    left: 32px;
    right: 32px;
  }
}

@media (max-width: 700px) {
  .mountain-line {
    left: 24px;
    right: 24px;
  }
}

.popup-link {
  display: inline-flex;
  margin-top: 14px;
  color: #c8a86b;
  font-size: 13px;
  border-bottom: 1px solid rgba(200, 168, 107, 0.45);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.popup-link:hover {
  color: #f5efe3;
  border-color: #f5efe3;
}

.event-credit {
  margin-top: 22px !important;
  color: rgba(245, 239, 227, 0.58) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.event-credit a {
  color: #c8a86b;
  border-bottom: 1px solid rgba(200, 168, 107, 0.45);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.event-credit a:hover {
  color: #f5efe3;
  border-color: #f5efe3;
}

.event-section-description {
  max-width: 900px;
  margin-top: 22px;
  color: rgba(245, 239, 227, 0.68);
  font-size: 18px;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .event-section-description {
    font-size: 16px;
  }
}

/* Paris page only */

.paris-event-heading h2 {
  font-size: clamp(38px, 5.5vw, 78px);
  max-width: 1100px;
}

.event-page-subtitle {
  max-width: 760px;
  margin-top: 18px !important;
  color: #c8a86b !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.25 !important;
}

.event-credit {
  margin-top: 22px !important;
  color: rgba(245, 239, 227, 0.58) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.event-credit a {
  color: #c8a86b;
  border-bottom: 1px solid rgba(200, 168, 107, 0.45);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.event-credit a:hover {
  color: #f5efe3;
  border-color: #f5efe3;
}

/* Hero cinematic effects */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/altara-mountain.png");
  background-size: cover;
  background-position: 70% center;
  z-index: 0;
  transform: scale(1);
  animation: heroSlowZoom 22s ease-in-out infinite alternate;
}

.hero {
  background-image: none;
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 25% 35%,
      rgba(200, 168, 107, 0.18),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      rgba(255, 220, 150, 0.08),
      transparent 35%,
      rgba(255, 255, 255, 0.025),
      transparent 65%
    );
  mix-blend-mode: screen;
  animation: heroGoldenShift 12s ease-in-out infinite alternate;
}

@keyframes heroGoldenShift {
  from {
    opacity: 0.45;
    transform: translateX(-20px);
  }
  to {
    opacity: 0.75;
    transform: translateX(20px);
  }
}

/* Stronger visible hero cinematic effects */

.hero-golden-rays {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
  background:
    linear-gradient(
      108deg,
      transparent 0%,
      transparent 18%,
      rgba(255, 218, 150, 0.28) 30%,
      rgba(255, 240, 200, 0.16) 36%,
      transparent 48%,
      transparent 100%
    ),
    linear-gradient(
      122deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 232, 185, 0.18) 48%,
      transparent 62%,
      transparent 100%
    );
  animation: goldenRaysDrift 10s ease-in-out infinite alternate;
}

@keyframes goldenRaysDrift {
  from {
    transform: translateX(-90px) translateY(0);
    opacity: 0.45;
  }

  to {
    transform: translateX(90px) translateY(-18px);
    opacity: 0.95;
  }
}

.hero-mist {
  position: absolute;
  left: -30%;
  width: 160%;
  height: 38%;
  z-index: 4;
  pointer-events: none;
  filter: blur(28px);
  background:
    radial-gradient(
      ellipse at 15% 55%,
      rgba(245, 239, 227, 0.38),
      transparent 42%
    ),
    radial-gradient(
      ellipse at 45% 45%,
      rgba(245, 239, 227, 0.28),
      transparent 46%
    ),
    radial-gradient(
      ellipse at 78% 60%,
      rgba(200, 168, 107, 0.2),
      transparent 44%
    );
}

.hero-mist-one {
  top: 30%;
  opacity: 0.42;
  animation: mistMoveOne 24s linear infinite alternate;
}

.hero-mist-two {
  top: 50%;
  opacity: 0.32;
  animation: mistMoveTwo 30s linear infinite alternate;
}

@keyframes mistMoveOne {
  from {
    transform: translateX(-10%) translateY(0);
  }

  to {
    transform: translateX(10%) translateY(-20px);
  }
}

@keyframes mistMoveTwo {
  from {
    transform: translateX(10%) translateY(10px);
  }

  to {
    transform: translateX(-10%) translateY(-14px);
  }
}

.hero-bottom-clouds {
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -10%;
  height: 42%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.95;
  filter: blur(22px);
  background:
    radial-gradient(
      ellipse at 12% 68%,
      rgba(245, 239, 227, 0.34),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 38% 75%,
      rgba(245, 239, 227, 0.3),
      transparent 48%
    ),
    radial-gradient(
      ellipse at 66% 70%,
      rgba(200, 168, 107, 0.22),
      transparent 48%
    ),
    radial-gradient(
      ellipse at 90% 78%,
      rgba(245, 239, 227, 0.26),
      transparent 42%
    ),
    linear-gradient(
      to bottom,
      transparent,
      rgba(13, 12, 10, 0.7) 70%,
      #0d0c0a 100%
    );
  animation: bottomCloudsFloat 18s ease-in-out infinite alternate;
}

@keyframes bottomCloudsFloat {
  from {
    transform: translateX(-4%) translateY(0);
  }

  to {
    transform: translateX(4%) translateY(-18px);
  }
}

/* Hero text entrance */

.hero-fade {
  opacity: 0;
  transform: translateY(26px);
  animation: heroFadeUp 1.1s ease forwards;
}

.hero-fade-delay-1 {
  animation-delay: 0.15s;
}

.hero-fade-delay-2 {
  animation-delay: 0.45s;
}

.hero-fade-delay-3 {
  animation-delay: 0.85s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium vignette on hero */

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      transparent 35%,
      rgba(13, 12, 10, 0.18) 62%,
      rgba(13, 12, 10, 0.72) 100%
    );
}

/* Scroll reveal */

.reveal-section {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */

.site-footer {
  position: relative;
  background: linear-gradient(
    to bottom,
    #14110d 0%,
    #0d0c0a 55%,
    #0d0c0a 100%
  );
  color: #f5efe3;
  padding: 36px 80px 24px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(200, 168, 107, 0.1),
    transparent 34%
  );
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 107, 0.1),
    rgba(20, 17, 13, 0.35),
    transparent 72%
  );
}

.footer-line {
  position: relative;
  height: 1px;
  margin-bottom: 32px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 168, 107, 0.72),
    rgba(245, 239, 227, 0.14),
    transparent
  );
  z-index: 2;
}

.footer-line::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 25%;
  right: 25%;
  height: 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 107, 0.14),
    transparent 70%
  );
}

.footer-content {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  z-index: 2;
}

.footer-brand {
  max-width: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  max-height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 18px;
}

.footer-brand p {
  color: rgba(245, 239, 227, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links h4 {
  color: #c8a86b;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: rgba(245, 239, 227, 0.68);
  font-size: 14px;
  margin-bottom: 11px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #c8a86b;
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 239, 227, 0.42);
  font-size: 13px;
  z-index: 2;
}

/* Footer responsive */

@media (max-width: 1000px) {
  .site-footer {
    padding: 44px 32px 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

@media (max-width: 700px) {
  .site-footer {
    padding: 44px 24px 28px;
  }

  .footer-logo {
    max-height: 56px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 36px;
  }
}

.form-message {
  display: none;
  max-width: 820px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  border: 1px solid rgba(200, 168, 107, 0.42);
  background: rgba(200, 168, 107, 0.12);
  color: #f5efe3;
}

.form-message.error {
  border: 1px solid rgba(255, 120, 120, 0.4);
  background: rgba(255, 120, 120, 0.08);
  color: #f5efe3;
}

/* Smaller portrait images in event galleries */

.event-gallery img.portrait-image {
  flex-basis: calc((100% - 96px) / 4);
  max-width: calc((100% - 96px) / 4);
}

@media (max-width: 1400px) {
  .event-gallery img.portrait-image {
    flex-basis: calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
  }
}

@media (max-width: 1000px) {
  .event-gallery img.portrait-image {
    flex-basis: calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
  }
}

@media (max-width: 700px) {
  .event-gallery img.portrait-image {
    flex-basis: 82%;
    max-width: 82%;
  }
}

.event-gallery img.landscape-image {
  width: 100%;
}

/* Event gallery hover */

.event-gallery img {
  cursor: pointer;
}

.event-gallery img.loaded:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(200, 168, 107, 0.55);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(200, 168, 107, 0.12);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(13, 12, 10, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(245, 239, 227, 0.14);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(200, 168, 107, 0.16);
  animation: lightboxFadeIn 0.35s ease forwards;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 227, 0.18);
  border-radius: 50%;
  background: rgba(245, 239, 227, 0.06);
  color: #f5efe3;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: #c8a86b;
  border-color: rgba(200, 168, 107, 0.6);
  background: rgba(200, 168, 107, 0.12);
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 700px) {
  .lightbox {
    padding: 20px;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 82vh;
    border-radius: 18px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }
}

/* Final fix — keep gallery image proportions */

.event-gallery img,
.event-gallery img.landscape-image,
.event-gallery img.portrait-image {
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  align-self: flex-start;
}

/* Landscape images — larger */
.event-gallery img.landscape-image {
  flex: 0 1 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  width: auto;
}

/* Portrait images */
.event-gallery img.portrait-image {
  flex: 0 1 calc((100% - 96px) / 5);
  max-width: calc((100% - 96px) / 5);
  width: auto;
}

/* Responsive */
@media (max-width: 1400px) {
.event-gallery img.landscape-image {
  flex: 0 1 calc((100% - 24px) / 2);
  max-width: calc((100% - 24px) / 2);
}

  .event-gallery img.portrait-image {
    flex: 0 1 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
  }
}

@media (max-width: 1000px) {
  .event-gallery img.landscape-image {
    flex: 0 1 calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .event-gallery img.portrait-image {
    flex: 0 1 calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
  }
}

@media (max-width: 700px) {
  .event-gallery img.landscape-image {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .event-gallery img.portrait-image {
    flex: 0 1 82%;
    max-width: 82%;
  }
}

.event-video-wrapper {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1100px;
  margin: 0 auto 56px;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 227, 0.12);
  background: rgba(245, 239, 227, 0.05);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    0 0 42px rgba(200, 168, 107, 0.08);
}

.event-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1000px) {
  .event-video-wrapper {
    width: calc(100% - 64px);
    margin-bottom: 44px;
  }
}

@media (max-width: 700px) {
  .event-video-wrapper {
    width: calc(100% - 48px);
    border-radius: 20px;
    margin-bottom: 36px;
  }
}

/* Final mobile hero cleanup */

@media (max-width: 900px) {
  .hero {
    overflow: hidden !important;
    background: #0d0c0a !important;
  }

	.hero::before {
	  animation: heroMobileSlowZoom 18s ease-in-out infinite alternate !important;
	  background-position: 70% center !important;
	  will-change: transform;
	}

  .hero::after,
  .hero-light-sweep,
  .hero-golden-rays,
  .hero-mist,
  .hero-mist-one,
  .hero-mist-two,
  .hero-bottom-clouds,
  .hero-vignette,
  .hero-grain,
  .hero-glow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    transform: none !important;
    background: none !important;
  }
  
  .hero-overlay-left {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: linear-gradient(
    to right,
    rgba(13, 12, 10, 0.55),
    rgba(13, 12, 10, 0.28),
    rgba(13, 12, 10, 0.08)
  ) !important;
}

  .hero-overlay-bottom {
    background: linear-gradient(
      to bottom,
      rgba(13, 12, 10, 0.35),
      rgba(13, 12, 10, 0.18),
      #0d0c0a 100%
    ) !important;
  }
}

@keyframes heroMobileSlowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* Desktop hero brightness adjustment */

@media (min-width: 901px) {
  .hero-overlay-left {
    background: linear-gradient(
      to right,
		rgba(13, 12, 10, 0.9) 0%,
		rgba(13, 12, 10, 0.3) 30%,
		rgba(13, 12, 10, 0) 40%,
		rgba(13, 12, 10, 0) 100%
    ) !important;
  }

  .hero-overlay-bottom {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.01),
      #0d0c0a
    ) !important;
  }

  .hero-vignette {
    display: none !important;
  }

  .hero::after {
    opacity: 0.25 !important;
  }
}
