:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #151515;
  --text: #f2f2ef;
  --muted: #b0b0ab;
  --line: #2a2a2a;
  --line-soft: #202020;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1220px, 92%);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 62px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    backdrop-filter 0.24s ease;
  transform: translateZ(0);
  will-change: background-color;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.26);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-row {
  min-height: 74px;
  max-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-decoration: none;
  color: var(--text);
}

.brand.has-brand-logo,
.menu-brand.has-brand-logo {
  letter-spacing: 0;
}

.brand-logo-image {
  display: block;
  width: auto;
  height: 120px;
  max-width: min(600px, 70vw);
  object-fit: contain;
}

.header-spacer {
  width: 100%;
}

.book-now-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #ff7a1a;
  color: #ff7a1a;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.book-now-btn:hover,
.book-now-btn:focus-visible {
  background: #ff7a1a;
  color: #0b0b0b;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.mobile-drawer-content,
.menu-overlay {
  display: none;
}

.main-nav a,
.social-links a,
.footer-grid a,
.footer-row a,
.inline-link,
.taxonomy a,
.scroll-indicator {
  text-decoration: none;
  color: var(--text);
}

.menu-brand {
  display: none;
}

.main-nav a {
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ff7a1a;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  font-size: 0.78rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #f3f3ef;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-open {
  background: #000000;
  border-color: #000000;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101010;
}

.hero-media,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    radial-gradient(circle at 18% 24%, #7d5a45 0%, transparent 34%),
    radial-gradient(circle at 76% 64%, #273a4e 0%, transparent 40%),
    linear-gradient(142deg, #181818 0%, #2a2a2a 48%, #101010 100%);
  filter: saturate(1.1);
  transform: scale(1.03);
  animation: drift 16s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-media.has-hero-slides {
  background: #101010;
}

.hero-media-stage,
.hero-media-slide {
  position: absolute;
  inset: 0;
}

.hero-media-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
}

.hero-media-asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04);
}

.hero-shade {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.26),
    rgba(0, 0, 0, 0.72)
  );
}

.hero-grain {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 0.6px,
    transparent 0.6px
  );
  background-size: 2px 2px;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.01) translateY(-8px);
  }
}

.hero-content {
  position: relative;
  padding-bottom: 86px;
}

.kicker {
  margin: 0 0 12px;
  color: #d0d0cc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero-title {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.1rem, 9vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.type-line {
  min-height: 0.98em;
}

.type-line.typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.82em;
  margin-left: 6px;
  background: #f2f2ef;
  vertical-align: baseline;
  animation: blink 0.85s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-meta p {
  font-size: 0.8rem;
  color: #d6d6d1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#hero-meta-2 {
  color: #ff7a1a;
}

.scroll-indicator {
  position: absolute;
  right: 4%;
  bottom: 28px;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1.2px;
}

.section-label {
  margin-bottom: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
}

.lead {
  font-size: clamp(1rem, 1.72vw, 1.3rem);
  max-width: 62ch;
  line-height: 1.56;
  color: #ecece8;
  margin-bottom: 14px;
}

.inline-link {
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.center-copy {
  border-left: 1px solid var(--line-soft);
  padding-left: 32px;
}

.center-copy h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.8vw, 5.5rem);
  line-height: 0.9;
  margin-bottom: 14px;
}

.about .center-copy h2 {
  color: #ff7a1a;
  animation: aboutHeadlineGlowZoom 2.8s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, text-shadow;
}

@keyframes aboutHeadlineGlowZoom {
  0% {
    transform: scale(1);
    text-shadow:
      0 0 8px rgba(255, 122, 26, 0.45),
      0 0 14px rgba(255, 122, 26, 0.28);
  }
  50% {
    transform: scale(1.06);
    text-shadow:
      0 0 16px rgba(255, 122, 26, 0.8),
      0 0 28px rgba(255, 122, 26, 0.55);
  }
  100% {
    transform: scale(1);
    text-shadow:
      0 0 8px rgba(255, 122, 26, 0.45),
      0 0 14px rgba(255, 122, 26, 0.28);
  }
}

.center-copy p {
  color: var(--muted);
  line-height: 1.55;
  max-width: 48ch;
}

.overview-section {
  background: #ffffff;
  color: #111111;
}

.overview-section .section-label,
.overview-section .center-copy h2 {
  color: #ff7a1a;
}

.overview-section .lead,
.overview-section .center-copy p {
  color: #111111;
}

.overview-section .center-copy {
  border-left-color: #d9d9d9;
}

.related-divisions-section {
  background: #ffffff;
}

.related-divisions-section .section-title,
.related-divisions-section .division-item h3 {
  color: #ff7a1a;
}

.core-verticals-section .section-title,
.core-verticals-section .feature-card h3 {
  color: #ff7a1a;
}

.related-divisions-section .section-title {
  animation: relatedTitleZoom 2.8s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes relatedTitleZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .related-divisions-section .section-title {
    animation: none;
  }

  .about .center-copy h2 {
    animation: none;
  }
}

.metrics {
  border-block: 1px solid var(--line);
  background: #ffffff;
  color: #111111;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid #111111;
  box-shadow:
    inset -1px 0 0 rgba(17, 17, 17, 0.35),
    inset -2px 0 10px rgba(0, 0, 0, 0.22);
}

.metrics article {
  padding: 20px 24px 18px;
  text-align: center;
}

.metrics article + article {
  border-left: 1px solid #111111;
  box-shadow:
    inset 1px 0 0 rgba(17, 17, 17, 0.35),
    inset 2px 0 10px rgba(0, 0, 0, 0.25);
  padding-left: 24px;
}

.metric-number {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 8vw, 6.1rem);
  line-height: 0.86;
  letter-spacing: 0.2px;
  color: #ff7a1a;
}

.metric-inline-sign {
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  letter-spacing: 0.65px;
  color: #111111;
  margin-left: 2px;
  vertical-align: top;
}

.metric-sign {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  margin-top: 2px;
  letter-spacing: 0.65px;
  color: #111111;
}

.metric-text {
  margin-top: 16px;
  color: #111111;
  font-size: 0.88rem;
  letter-spacing: 0.35px;
  text-transform: none;
}

.section-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
}

.taxonomy {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}

.taxonomy a {
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: #e5e5e2;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.taxonomy a:hover {
  border-color: #6e6e6e;
  color: #fff;
  transform: translateY(-1px);
}

.fashion-focus {
  background: #36454f;
  border-block: 1px solid var(--line);
}

.narrow {
  max-width: 76ch;
  margin-bottom: 30px;
}

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.talent-carousel {
  position: relative;
}

.talent-carousel-nav {
  display: none;
}

.feature-card {
  border: 1px solid var(--line);
  background: #101010;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.feature-card.is-linked {
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #5a5a5a;
}

.feature-image {
  height: 342px;
  background-size: cover;
  background-position: center;
}

#feature-image-1,
#feature-image-2,
#feature-image-3 {
  background-position: center 18%;
}

.image-1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #9f7e6d, #3a2c25 54%, #19202a);
}

.image-2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    linear-gradient(132deg, #2f2f2f, #6d6d6d 35%, #1f2d3a);
}

.image-3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    linear-gradient(132deg, #3b434e, #916f64 50%, #2f2b2b);
}

.feature-card h3 {
  font-size: 1.16rem;
  margin: 14px 14px 8px;
}

.feature-card p {
  margin: 0 14px 16px;
  color: var(--muted);
  line-height: 1.46;
}

@media (min-width: 981px) {
  .talent-carousel.is-slider-active .fashion-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 122, 26, 0.45) transparent;
    padding-bottom: 8px;
  }

  .talent-carousel.is-slider-active .fashion-grid .feature-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
  }

  .talent-carousel.is-slider-active .fashion-grid::-webkit-scrollbar {
    height: 7px;
  }

  .talent-carousel.is-slider-active .fashion-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .talent-carousel.is-slider-active .fashion-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 26, 0.5);
    border-radius: 999px;
  }

  .talent-carousel.is-slider-active .talent-carousel-nav {
    display: inline-flex;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 26, 0.55);
    background: rgba(0, 0, 0, 0.58);
    color: #ff7a1a;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
  }

  .talent-carousel.is-slider-active .talent-carousel-prev {
    left: -16px;
  }

  .talent-carousel.is-slider-active .talent-carousel-next {
    right: -16px;
  }
}

.row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.divisions {
  background: #ffffff;
  color: #111111;
}

.divisions .section-title,
.divisions .division-item h3 {
  color: #ff7a1a;
}

.divisions .inline-link,
.divisions .division-item p {
  color: #111111;
}

#news {
  background: #ffffff;
  color: #111111;
}

#news .section-title,
#news .division-item h3 {
  color: #ff7a1a;
}

#news .division-item p {
  color: #111111;
}

#news .division-list {
  border-top-color: #d9d9d9;
}

#news .division-item {
  border-bottom-color: #d9d9d9;
}

.division-list {
  border-top: 1px solid #d9d9d9;
}

.division-item {
  --division-media-width: 0px;
  position: relative;
  display: grid;
  grid-template-columns: var(--division-media-width) minmax(0, 1fr);
  align-items: center;
  column-gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  transition:
    grid-template-columns 0.45s ease,
    column-gap 0.45s ease,
    padding 0.35s ease,
    border-bottom-color 0.35s ease;
}

.division-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: var(--division-media-width);
  background: linear-gradient(
    90deg,
    rgba(255, 122, 26, 0.14),
    rgba(255, 122, 26, 0)
  );
  pointer-events: none;
  transition:
    width 0.45s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.division-item.has-hover-media.is-scroll-active {
  --division-media-width: clamp(210px, 25vw, 320px);
  column-gap: clamp(20px, 3vw, 40px);
  padding-left: 0;
  border-bottom-color: rgba(255, 122, 26, 0.55);
}

.division-item.has-hover-media.is-scroll-active::before {
  opacity: 1;
}

.division-copy {
  grid-column: 2;
  min-width: 0;
  transform: translateX(0);
  transition: transform 0.45s ease;
}

.division-item.has-hover-media.is-scroll-active .division-copy {
  transform: translateX(10px);
}

.division-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.division-item p {
  color: var(--muted);
  max-width: 72ch;
}

.division-hover-media {
  grid-column: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateX(-18px) scaleX(0.78);
  transform-origin: left center;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.45s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  pointer-events: none;
  background: #0c0c0c;
  z-index: 2;
  overflow: hidden;
}

.division-item.has-hover-media.is-scroll-active .division-hover-media {
  max-height: 320px;
  opacity: 1;
  transform: translateX(0) scaleX(1);
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.testimonials-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0e0e;
  padding: 14px 0;
}

.testimonials-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: testimonialsScroll 34s linear infinite;
}

.testimonial-card {
  width: min(78vw, 360px);
  border: 1px solid #2f2f2f;
  background: #131313;
  padding: 14px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.76rem;
  color: #0e0e0e;
  background: #ff7a1a;
}

.testimonial-profile h3 {
  font-size: 0.98rem;
}

.testimonial-profile p {
  font-size: 0.79rem;
  color: #bdbdb9;
}

.testimonial-text {
  color: #e9e9e5;
  line-height: 1.5;
  font-size: 0.92rem;
}

@keyframes testimonialsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.newsletter {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.news-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.news-row h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.3vw, 2.9rem);
  color: #ff7a1a;
  animation: newsletterPulse 2.8s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes newsletterPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.newsletter-form {
  display: flex;
  gap: 8px;
  width: min(560px, 100%);
}

.newsletter-form input,
.newsletter-form button {
  font: inherit;
  padding: 12px;
  border: 1px solid var(--line);
}

.newsletter-form input {
  flex: 1;
  background: #0d0d0d;
  color: var(--text);
}

.newsletter-form button {
  background: #fff;
  color: #0f0f0f;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: #ff7a1a;
  border-color: #ff7a1a;
  color: #0f0f0f;
}

.contact {
  background: #0a0a0a;
}

.contact-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 122, 26, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(196, 160, 101, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #090909 0%, #0e0e0f 42%, #111214 100%);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 76px;
}

.contact-hero-backdrop,
.contact-hero-grid-lines {
  position: absolute;
  inset: 0;
}

.contact-hero-backdrop {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 122, 26, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 26%,
      rgba(255, 255, 255, 0.08),
      transparent 18%
    ),
    linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0) 38%
    ),
    linear-gradient(180deg, rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.48));
}

.contact-hero-grid-lines {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.34;
}

.contact-hero-layout,
.contact-showcase-grid,
.contact-assurance-grid {
  position: relative;
  z-index: 1;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: end;
}

.contact-eyebrow,
.contact-panel-label {
  margin: 0 0 16px;
  color: #ff9c52;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-hero-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #f7f4ef;
}

.contact-hero-lead {
  margin: 26px 0 0;
  max-width: 700px;
  font-size: clamp(1.05rem, 1.85vw, 1.34rem);
  line-height: 1.75;
  color: rgba(242, 242, 239, 0.76);
}

.contact-hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ece7df;
  font-size: 0.82rem;
  letter-spacing: 0.35px;
}

.contact-hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-hero-panel h2,
.contact-inquiry-head h2,
.contact-story-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-hero-panel p,
.contact-inquiry-head p,
.contact-story-copy,
.contact-assurance-card p {
  color: rgba(242, 242, 239, 0.72);
  line-height: 1.75;
}

.contact-panel-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-panel-stats div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel-stats strong,
.contact-assurance-card span {
  display: block;
  color: #fff5eb;
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-panel-stats span {
  color: rgba(242, 242, 239, 0.62);
  font-size: 0.88rem;
}

.contact-showcase {
  padding-top: 24px;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.contact-story,
.contact-inquiry-shell,
.contact-assurance-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(17, 17, 18, 0.96),
    rgba(12, 12, 13, 0.96)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.contact-story {
  padding: 36px;
}

.contact-accent-label {
  color: #ff9c52;
}

.contact-story-copy {
  margin: 22px 0 0;
  max-width: 62ch;
}

.contact-signals {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-signal-card {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.contact-signal-kicker,
.contact-lux-form label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(242, 242, 239, 0.54);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
}

.contact-signal-card a,
.contact-signal-card p {
  margin: 0;
  color: #faf7f2;
  font-size: 1.02rem;
  text-decoration: none;
}

.contact-inquiry-shell {
  padding: 34px;
}

.contact-inquiry-head p {
  margin: 14px 0 0;
}

.contact-lux-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-lux-form label {
  display: block;
}

.contact-lux-form input,
.contact-lux-form select,
.contact-lux-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f2ec;
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-lux-form select {
  appearance: none;
}

.contact-lux-form input::placeholder,
.contact-lux-form textarea::placeholder {
  color: rgba(242, 242, 239, 0.38);
}

.contact-lux-form input:focus,
.contact-lux-form select:focus,
.contact-lux-form textarea:focus {
  border-color: rgba(255, 156, 82, 0.8);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.08);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.contact-form-actions button {
  min-width: 210px;
  min-height: 52px;
  border: 0;
  background: linear-gradient(135deg, #ff7a1a, #ffab68);
  color: #140f0b;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(255, 122, 26, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.contact-form-actions button:hover,
.contact-form-actions button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 20px 42px rgba(255, 122, 26, 0.28);
}

.contact-form-actions p {
  margin: 0;
  max-width: 32ch;
  color: rgba(242, 242, 239, 0.52);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-assurance {
  padding: 0 0 88px;
}

.contact-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-assurance-card {
  padding: 28px 24px;
}

.contact-assurance-card h3 {
  margin: 14px 0 10px;
  font-size: 1.16rem;
  color: #f8f3ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-grid h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.footer-grid p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-row {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-row p,
.footer-row a {
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    transform 0.56s cubic-bezier(0.2, 0.64, 0.24, 1),
    opacity 0.56s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (max-width: 980px) {
  .contact-hero {
    padding: 124px 0 54px;
  }

  .contact-hero-layout,
  .contact-showcase-grid,
  .contact-assurance-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero-title {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4.6rem);
  }

  .contact-hero-panel,
  .contact-story,
  .contact-inquiry-shell {
    padding: 24px;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-actions button {
    width: 100%;
  }

  .contact-form-actions p {
    max-width: none;
  }

  .site-header,
  .site-header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open .site-header {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.72);
  }

  .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    position: static;
    top: auto;
    right: auto;
    z-index: 140;
    align-self: center;
  }

  .brand {
    flex: 1;
    position: static;
    transform: none;
    white-space: nowrap;
    z-index: 2;
  }

  .book-now-btn {
    font-size: 0.78rem;
    padding: 9px 13px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 420px;
    height: 100vh;
    min-height: 100dvh;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    padding: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
    overflow-y: auto;
    z-index: 120;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .desktop-nav-link {
    display: none;
  }

  .mobile-drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 32px 40px;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    border-bottom: none;
    margin-bottom: 64px;
  }

  .menu-brand {
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-decoration: none;
  }

  .mobile-drawer-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #ffffff;
  }

  .mobile-drawer-close svg {
    width: 28px;
    height: 28px;
  }

  .mobile-drawer-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 0;
    margin-bottom: 64px;
    margin-top: 80px;
  }

  .mobile-drawer-link {
    display: block;
    width: 100%;
    padding: 0;
    border-radius: 0;
    color: #ffffff;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
  }

  .mobile-drawer-link--primary {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    margin: 0;
    text-transform: none;
    text-align: center !important;
  }

  .mobile-drawer-secondary {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-drawer-link-secondary {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-drawer-link:hover,
  .mobile-drawer-link:focus-visible,
  .mobile-drawer-link-secondary:hover,
  .mobile-drawer-link-secondary:focus-visible {
    color: #ff7a1a;
    text-decoration: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .mobile-drawer-footer {
    display: none;
  }

  .menu-overlay {
    display: none !important;
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .social-links {
    display: none;
  }

  body.menu-open .site-header .brand {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    filter: none;
    animation: none;
    transform: scale(1.01);
  }

  .hero-grain {
    display: none;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .scroll-indicator {
    display: none;
  }

  .about-grid,
  .metrics-grid,
  .fashion-grid,
  .footer-grid,
  .news-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .metrics-grid {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #ff7a1a;
    border-bottom: 1px solid #ff7a1a;
    box-shadow:
      inset 0 1px 0 rgba(255, 122, 26, 0.35),
      inset 0 -1px 0 rgba(255, 122, 26, 0.35),
      inset 0 2px 10px rgba(255, 122, 26, 0.22),
      inset 0 -2px 10px rgba(255, 122, 26, 0.22);
  }

  .center-copy {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-left: 0;
    padding-top: 18px;
  }

  .metrics article + article {
    border-left: 0;
    border-top: 1px solid #ff7a1a;
    box-shadow:
      inset 0 1px 0 rgba(255, 122, 26, 0.35),
      inset 0 2px 10px rgba(255, 122, 26, 0.25);
    padding-left: 24px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .feature-image {
    height: 280px;
  }

  #feature-image-1,
  #feature-image-2,
  #feature-image-3 {
    background-position: center 14%;
  }

  .newsletter-form {
    width: 100%;
  }

  .division-item {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .division-item::before {
    top: 0;
    bottom: auto;
    width: 100%;
    height: var(--division-media-width);
    transition:
      height 0.45s ease,
      opacity 0.35s ease;
  }

  .division-item.has-hover-media.is-scroll-active {
    --division-media-width: clamp(180px, 48vw, 250px);
    column-gap: 0;
    row-gap: 16px;
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .division-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .division-item.has-hover-media.is-scroll-active .division-copy {
    transform: translateX(0);
  }

  .division-hover-media {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
  }

  .division-item.has-hover-media.is-scroll-active .division-hover-media {
    width: min(100%, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .contact-hero-backdrop,
  .contact-hero-grid-lines {
    animation: none;
  }

  .hero-media {
    animation: none;
    transform: none;
  }

  .testimonials-track {
    animation: none;
  }
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(255, 128, 46, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 88% 86%,
      rgba(65, 140, 230, 0.16),
      transparent 34%
    ),
    #0b0b0b;
}

.admin-main {
  width: min(1120px, 94%);
  margin: 30px auto;
  padding-bottom: 28px;
}

.admin-panel {
  border: 1px solid #2f2f2f;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  padding: clamp(18px, 4vw, 34px);
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid #242424;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.admin-overline {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #ffbc8a;
  font-size: 0.76rem;
  margin-bottom: 7px;
}

.admin-head h1 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 9px;
}

.admin-note {
  color: #c2c2be;
  max-width: 72ch;
}

.admin-head-actions {
  display: flex;
  align-items: center;
}

.admin-link {
  text-decoration: none;
  border: 1px solid #454545;
  color: #f4f4ef;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.84rem;
}

.admin-sections {
  display: grid;
  gap: 16px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 16px;
}

.admin-sidebar {
  border: 1px solid #242424;
  background: rgba(14, 14, 14, 0.88);
  padding: 12px;
  height: fit-content;
}

.admin-sidebar h2 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #d7d7d2;
  margin-bottom: 10px;
}

.admin-categories {
  display: grid;
  gap: 8px;
}

.admin-category {
  width: 100%;
  text-align: left;
  border: 1px solid #343434;
  background: #101010;
  color: #dcdcd7;
  font: inherit;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
}

.admin-category.is-active {
  border-color: #ff7a1a;
  color: #ffad75;
  background: rgba(255, 122, 26, 0.08);
}

.admin-editor {
  border: 1px solid #242424;
  background: rgba(14, 14, 14, 0.88);
  padding: 12px;
}

.admin-editor h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.admin-section {
  padding: 0;
  background: transparent;
  border: 0;
}

.admin-section h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.admin-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-field {
  display: grid;
  gap: 6px;
}

.admin-label {
  color: #d8d8d3;
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-helper {
  color: #aaaaa5;
  font-size: 0.78rem;
}

.admin-input {
  width: 100%;
  background: #0f0f0f;
  color: #f2f2ef;
  border: 1px solid #2f2f2f;
  padding: 10px 11px;
  font: inherit;
}

textarea.admin-input {
  resize: vertical;
  min-height: 92px;
}

.admin-image-row {
  display: flex;
  gap: 8px;
}

.admin-image-preview {
  width: 100%;
  max-width: 360px;
  height: 150px;
  object-fit: cover;
  border: 1px solid #2f2f2f;
  background: #050505;
}

.admin-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-auth {
  border: 1px solid #242424;
  background: rgba(14, 14, 14, 0.88);
  padding: 12px;
  margin-bottom: 14px;
}

.admin-auth h2 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.admin-auth-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.admin-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-password-wrapper .admin-input {
  padding-right: 40px;
}

.admin-password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #b0b0ab;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.admin-password-toggle:hover {
  color: #f2f2ef;
}

.admin-password-toggle:focus {
  outline: 2px solid #ff7a1a;
  outline-offset: 2px;
  border-radius: 2px;
}


.admin-locked {
  opacity: 0.62;
  pointer-events: none;
}

.admin-btn {
  border: 1px solid #3b3b3b;
  background: #111;
  color: #f5f5ef;
  font: inherit;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.admin-btn-primary {
  background: #f3f3ef;
  color: #0f0f0f;
  border-color: #f3f3ef;
}

.admin-btn-tertiary {
  padding-inline: 12px;
}

.admin-status {
  margin-top: 12px;
  min-height: 1.2em;
  color: #8ce8a8;
  font-size: 0.9rem;
}

.admin-status.is-error {
  color: #ff9e9e;
}

.modules-editor {
  display: grid;
  gap: 14px;
}

.module-group {
  border: 1px solid #2a2a2a;
  background: #101010;
  padding: 10px;
}

.module-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.module-group-head h3 {
  font-size: 1rem;
}

.module-list {
  display: grid;
  gap: 10px;
}

.module-card {
  position: relative;
  border: 1px solid #343434;
  background: #0d0d0d;
  padding: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: move;
}

.module-card.dragging {
  opacity: 0.5;
  transform: scale(0.98);
}

.module-card.drag-over {
  border-color: #ff7a1a;
  background: rgba(255, 122, 26, 0.1);
}

.drag-handle {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
  color: #666;
  cursor: grab;
  user-select: none;
  padding: 4px;
  line-height: 1;
}

.drag-handle:active {
  cursor: grabbing;
}

.module-card:hover .drag-handle {
  color: #ff7a1a;
}

.module-card .admin-fields-grid {
  margin-left: 30px;
}

.module-card-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.module-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.84rem;
  color: #ccc;
}

.module-actions {
  display: inline-flex;
  gap: 6px;
}

.module-fields {
  display: grid;
  gap: 8px;
}

.module-upload {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.module-empty {
  color: #adada8;
  font-size: 0.9rem;
  padding: 6px 0;
}

@media (max-width: 860px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-fields-grid {
    grid-template-columns: 1fr;
  }

  .admin-auth-form {
    grid-template-columns: 1fr;
  }

  .module-card-head {
    grid-template-columns: 1fr;
  }

  .module-upload {
    grid-template-columns: 1fr;
  }
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ─── Events Gallery ─────────────────────────────────────────────────────── */

.events-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.event-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.event-content {
  padding: 20px;
}

.event-date {
  font-size: 0.8rem;
  color: #ff7a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.event-description {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.event-view-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
}

.event-view-btn:hover {
  background: #ff7a1a;
  border-color: #ff7a1a;
  color: #fff;
}

/* Event Modal */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-modal.open {
  opacity: 1;
}

.event-modal.closing {
  opacity: 0;
}

.event-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.event-modal-content {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.event-modal.open .event-modal-content {
  transform: scale(1);
}

.event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.event-modal-close:hover {
  color: var(--text);
}

.event-modal-header {
  margin-bottom: 24px;
}

.event-modal-date {
  font-size: 0.85rem;
  color: #ff7a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.event-modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.event-modal-body {
  color: var(--text);
}

.event-modal-full-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px 0;
}

.event-modal-images,
.event-modal-videos {
  margin-top: 32px;
}

.event-modal-images h3,
.event-modal-videos h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
}

.event-modal-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.event-modal-images-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.event-modal-videos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-video-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.event-video-link:hover {
  background: #ff7a1a;
  border-color: #ff7a1a;
  color: #fff;
}

.event-video-link span {
  flex: 1;
  font-weight: 600;
}

@media (max-width: 980px) {
  .events-gallery {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
  
  .event-modal-content {
    padding: 24px;
  }
  
  .event-modal-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .events-gallery {
    grid-template-columns: 1fr;
  }
  
  .event-modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .event-modal-images-grid {
    grid-template-columns: 1fr;
  }
}



.talent-card {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.talent-card:hover {
  transform: translateY(-4px);
  border-color: #5a5a5a;
}

.talent-image {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.talent-info {
  padding: 16px;
}

.talent-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 122, 26, 0.15);
  border: 1px solid rgba(255, 122, 26, 0.4);
  color: #ff7a1a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.talent-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.talent-info p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.talent-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.talent-followers {
  font-size: 0.82rem;
  color: #d0d0cc;
  font-weight: 700;
}

@media (max-width: 980px) {
  .talent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .talent-image {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .talent-grid {
    grid-template-columns: 1fr;
  }

  .talent-image {
    height: 360px;
  }
}

/* ─── Image Loading Skeletons ─────────────────────────────────────────────── */

.feature-image:not(.loaded),
.division-hover-media:not(.loaded) {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ─── Page Loader ─────────────────────────────────────────────────────────── */

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base Glow */
.loader-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.18);
  filter: blur(18px);
  animation: loaderPulse 2s ease-in-out infinite;
}

/* Outer Dashed Ring */
.loader-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 122, 26, 0.45);
  animation: loaderSpin 10s linear infinite;
}

/* Main Arc */
.loader-arc-main {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ff7a1a;
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.6);
  animation: loaderSpin 2s linear infinite;
}

/* Reverse Arc */
.loader-arc-reverse {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #ffab68;
  box-shadow: 0 0 6px rgba(255, 171, 104, 0.45);
  animation: loaderSpin 3s linear infinite reverse;
}

/* Inner Fast Ring */
.loader-ring-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-left-color: rgba(255, 122, 26, 0.4);
  animation: loaderSpin 1s ease-in-out infinite;
}

/* Orbital Dot wrapper */
.loader-orbital {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: loaderSpin 4s linear infinite;
}

/* Orbital Dot */
.loader-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff7a1a;
  box-shadow: 0 0 6px rgba(255, 122, 26, 0.95);
}

/* Center Core */
.loader-core {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a1a;
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.7);
  animation: loaderPulse 2s ease-in-out infinite;
}

/* Text */
.loader-text-wrap {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-text {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 122, 26, 0.8);
  animation: loaderFadeSlide 0.5s ease both;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes loaderFadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-ring-outer,
  .loader-arc-main,
  .loader-arc-reverse,
  .loader-ring-inner,
  .loader-orbital,
  .loader-glow,
  .loader-core {
    animation: none;
  }
}
