/* ============================================================
   Beautiful Brocades — Luxury Stylesheet
   Pure CSS · Mobile-first · Premium boutique aesthetic
   ============================================================ */

/* ---------- CSS Variables (Theme Tokens) ---------- */
:root {
  --maroon: #6B0F1A;         /* Deep maroon */
  --maroon-deep: #4A0A12;
  --maroon-soft: #8B1F2C;
  --gold: #C9A961;           /* Antique gold */
  --gold-bright: #E5C77B;
  --gold-deep: #9C7E3A;
  --beige: #F5E6D3;          /* Warm beige */
  --beige-soft: #FBF5EA;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --soft-black: #1A1410;     /* Soft luxe black */
  --ink: #2C231C;
  --muted: #6C5F52;
  --line: rgba(107, 15, 26, 0.12);

  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;

  --shadow-sm: 0 4px 14px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 14px 40px rgba(26, 20, 16, 0.10);
  --shadow-lg: 0 30px 70px rgba(26, 20, 16, 0.18);
  --shadow-gold: 0 18px 40px rgba(201, 169, 97, 0.28);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img.img-loading {
  background-color: var(--beige-soft);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cg fill='none' stroke='%23C9A961' stroke-width='3'%3E%3Ccircle cx='22' cy='22' r='18' opacity='.18'/%3E%3Cpath d='M40 22c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 22 22' to='360 22 22' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 44px 44px, 200% 100%;
  background-position: center, 200% 0;
  background-repeat: no-repeat, no-repeat;
  animation: bbImgShimmer 1.1s ease-in-out infinite;
}
@keyframes bbImgShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--soft-black); }

/* Subtle paisley / damask background texture using SVG data URI */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%236B0F1A' fill-opacity='0.025'%3E%3Cpath d='M40 0c4.4 0 8 3.6 8 8 0 6-4 8-4 14 0 4 4 6 4 12 0 8-8 10-8 18s8 10 8 18c0 6-4 8-4 12 0 6 4 8 4 14 0-4.4-3.6-8-8-8s-8-3.6-8-8c0-6 4-8 4-14 0-4-4-6-4-12 0-8 8-10 8-18s-8-10-8-18c0-6 4-8 4-12 0-6-4-8-4-14 0 4.4 3.6 8 8 8z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .8;
  z-index: 0;
}

/* ---------- Container ---------- */
.container { width: min(1540px, 92%); margin-inline: auto; position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 600; color: var(--soft-black); margin: 0 0 .4em; letter-spacing: -0.01em; }
.ital { font-style: italic; font-weight: 500; color: var(--maroon); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold-bright); }
.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--gold-bright);
}
.section-title.light { color: var(--cream); }
.section-title.light .ital { color: var(--gold-bright); }
.section-desc { color: var(--gold-bright); max-width: 640px; margin: 0 auto; font-size: 1.02rem; }
.section-head { text-align: center; margin: 0 auto 70px; max-width: 760px; }
.section-dark .section-desc { color: rgba(250, 247, 242, .72); }
.lead { font-size: 1.12rem; color: var(--gold-bright); margin: 0 0 18px; }

/* ---------- Section Base ---------- */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; z-index: 1; }
.section20 { padding: clamp(20px, 10vw, 20px) 0; position: relative; z-index: 1; }
.section-dark {
  background: linear-gradient(180deg, var(--soft-black) 0%, #211810 100%);
  color: var(--cream);
}
.section-dark::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 20% 0%, rgba(201, 169, 97, .08), transparent 50%),
              radial-gradient(circle at 80% 100%, rgba(107, 15, 26, .35), transparent 50%);
}
.section-cream { background: #000000; }
.contact{background: #000000;}
/* ============================================================
   LOADER
============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--soft-black);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; color: var(--gold-bright); }
.loader-mandala {
  width: 90px; height: 90px;
  margin: 0 auto 28px;
  position: relative;
  animation: spin 4s linear infinite;
}
.loader-mandala span {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
}
.loader-mandala span:nth-child(2) { transform: rotate(45deg); border-top-color: var(--gold-bright); inset: 8px; }
.loader-mandala span:nth-child(3) { transform: rotate(90deg); border-top-color: var(--maroon-soft); inset: 16px; }
.loader-mandala span:nth-child(4) { transform: rotate(135deg); border-top-color: var(--gold); inset: 24px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-brand { font-family: var(--font-serif); font-size: 26px; letter-spacing: .04em; margin: 0; }
.loader-tag { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; opacity: .6; margin: 4px 0 0; }

/* ============================================================
   SCROLL PROGRESS
============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  z-index: 9998;
  transition: width .1s linear;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); width: 180px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700;
  color: var(--maroon-deep);
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(201,169,97,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--font-serif); font-size: 18px; letter-spacing: .02em; }
.brand-sub { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; opacity: .7; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--cream);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute;
  left: 50%; bottom: 6px; width: 0; height: 1px;
  background: var(--gold-bright);
  transition: all .3s var(--ease);
  transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link:hover::after { width: 22px; }
.nav-link.cta-nav {
  background: var(--gold);
  color: var(--maroon-deep);
  font-weight: 600;
  padding: 11px 22px;
  margin-left: 8px;
}
.nav-link.cta-nav:hover { background: var(--gold-bright); transform: translateY(-1px); }
.nav-link.cta-nav::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 101; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: kenBurns 18s ease-in-out infinite alternate; }
@keyframes kenBurns { to { transform: scale(1.15); } }
.hero-overlay {
  position: absolute; inset: 0;
 background: linear-gradient(284deg, rgb(26 20 16 / 25%) 0%, rgb(74 10 18 / 10%) 50%, rgb(29 6 6 / 47%) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 4 L24 16 L36 20 L24 24 L20 36 L16 24 L4 20 L16 16 Z' fill='none' stroke='%23C9A961' stroke-width='0.3' opacity='0.18'/%3E%3C/svg%3E");
  opacity: .6;
}

.hero-inner { padding-top: 80px;  }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-title .ital { color: var(--gold-bright); font-style: italic; }
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--gold-bright);
  margin: 0 0 18px;
  letter-spacing: .02em;
}
.hero-desc { max-width: 760px; font-size: 1.05rem; color: rgba(250,247,242,.85); margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* Floating decorative elements */
.float-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  animation: floatY 9s ease-in-out infinite;
}
.decor-1 { width: 380px; height: 380px; background: rgba(201,169,97,.18); top: 10%; right: -120px; }
.decor-2 { width: 260px; height: 260px; background: rgba(107,15,26,.4); bottom: 10%; left: -80px; animation-delay: 2s; animation-duration: 11s; }
.decor-3 { width: 200px; height: 200px; background: rgba(201,169,97,.12); top: 60%; right: 25%; animation-delay: 4s; animation-duration: 13s; }
@keyframes floatY {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(15px); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--gold-bright); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-cue span {
  width: 2px; height: 50px; background: linear-gradient(to bottom, var(--gold-bright), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue span::after {
  content:''; position: absolute; top: -50%; left: 0; right: 0; height: 50%;
  background: var(--cream);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { to { top: 100%; } }
.scroll-cue em { font-style: normal; opacity: .8; }

/* ============================================================
   PAGE BANNER
============================================================ */
.page-banner {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background: #050507;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(.48);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.78) 0%, rgba(5, 5, 7, 0.52) 34%, rgba(5, 5, 7, 0.88) 100%),
    radial-gradient(circle at 18% 24%, rgba(201, 169, 97, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(139, 31, 44, 0.28), transparent 28%);
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.page-banner-title {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}
.page-banner-desc {
  max-width: 740px;
  margin: 0 auto;
  color: rgba(250, 247, 242, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-weight: 500; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(5px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--maroon-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(201,169,97,.45); }
.btn-ghost {
  border: 1.5px solid rgba(250,247,242,.5);
  color: var(--cream);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(250,247,242,.12); border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-outline {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   ACHIEVEMENT STRIP
============================================================ */
.achievement-strip-wrap {
  position: relative;
  z-index: 2;
  padding: 17px 0 17px;
  background-color: black;
}
.achievement-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.96), rgba(8, 8, 14, 0.98));
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}
.achievement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  position: relative;
}
.achievement-item::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.28), transparent);
}
.achievement-item:last-child::after {
  display: none;
}
.achievement-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 1.55rem;
}
.achievement-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--cream);
}
.achievement-kicker,
.achievement-copy span {
  font-size: .67rem;
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.84);
}
.achievement-copy strong {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1;
  color: var(--gold-bright);
  font-weight: 600;
}
.achievement-item-est .achievement-copy strong {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
  height: 600px;
}
.about-img-main, .about-img-sub {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-main { inset: 0 60px 60px 0; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.about-img-main:hover img { transform: scale(1.06); }
.about-img-sub {
  width: 260px; height: 320px;
  right: 0; bottom: 0;
  border: 8px solid var(--cream);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: contain; }

.about-badge {
  position: absolute;
  top: 30px; left: -30px;
  background: var(--maroon);
  color: var(--gold-bright);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
  z-index: 2;
}
.badge-year { display:block; font-family: var(--font-serif); font-size: 36px; font-weight: 700; line-height: 1; }
.badge-label { display:block; font-size: 10px; letter-spacing: 0em; text-transform: uppercase; opacity: .85; margin-top: -52px; }

.about-points { margin: 28px 0 36px; }
.about-points li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  font-size: .98rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.about-points li:last-child { border-bottom: 0; }
.about-points i {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--beige);
  color: var(--maroon);
  border-radius: 50%;
  font-size: 14px;
}

/* ============================================================
   COLLECTIONS
============================================================ */
.coll-group { margin-bottom: 70px; }
.coll-group:last-child { margin-bottom: 0; }
.coll-group-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 20px;
}
.coll-group-title::before, .coll-group-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,.4), transparent);
}
.coll-group-title span { padding: 0 18px; font-style: italic; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.cards-grid.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 1000px; margin: 0 auto; }

.coll-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all .5s var(--ease);
  position: relative;
}
.coll-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.coll-img {
  aspect-ratio: 3 / 5;
  overflow: hidden;
  position: relative;
}
.coll-img::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,20,16,.6) 100%);
}
.coll-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.coll-card:hover .coll-img img { transform: scale(1.12); }
.coll-body { padding: 24px 24px 26px; position: relative; }
.coll-body h4 { color: var(--cream); font-size: 1.35rem; margin-bottom: 6px; }
.coll-body p { color: rgba(250,247,242,.7); font-size: .92rem; margin: 0 0 14px; }
.coll-link {
  color: var(--gold-bright);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s var(--ease);
}
.coll-card:hover .coll-link { gap: 14px; }
.tag {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card { border-color: rgba(201,169,97,.4); }

/* ============================================================
   FEATURED / STATS
============================================================ */
.featured {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.featured-bg { position: absolute; inset: 0; z-index: -1; }
.featured-bg img { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,.85), rgba(74,10,18,.92));
}
.featured-desc { max-width: 640px; margin: 0 auto 60px; opacity: .85; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px;
  max-width: 1100px; margin: 0 auto;
}
.stat {
  padding: 36px 20px;
  border: 1px solid rgba(201,169,97,.2);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(14px);
  transition: all .4s var(--ease);
}
.stat:hover { border-color: var(--gold); transform: translateY(-6px); background: rgba(201,169,97,.06); }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; opacity: .8; }

/* ============================================================
   WHY US
============================================================ */
.why-spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 169, 97, 0.20), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(202, 27, 112, 0.18), transparent 22%),
    linear-gradient(90deg, #020204 0%, #06080e 42%, #04060d 100%);
  color: var(--cream);
}
.why-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 13% 26%, rgba(201, 169, 97, 0.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 18% 38%, rgba(201, 169, 97, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 52%, rgba(201, 169, 97, 0.65) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 26% 34%, rgba(201, 169, 97, 0.5) 0 2px, transparent 3px);
  opacity: .85;
}
.why-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 2, 4, 0.08) 0%, rgba(2, 2, 4, 0) 28%, rgba(2, 2, 4, 0.35) 100%);
}
.why-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(400px, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.why-spotlight-media {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}
.why-spotlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.why-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
}
.why-spotlight-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.why-spotlight-eyebrow {
  color: #ff3d8f;
  margin-bottom: 16px;
}
.why-spotlight-title {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.why-spotlight-title span {
  display: block;
}
.why-spotlight-title .gold-text {
  color: var(--gold-bright);
}
.why-spotlight-copy {
  max-width: 620px;
  margin: 0 0 38px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(250, 247, 242, 0.82);
}
.why-spotlight-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(108px, 1fr));
  gap: 22px;
}
.why-spotlight-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.why-spotlight-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 61, 143, 0.9);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: radial-gradient(circle at 30% 30%, rgba(255, 61, 143, 0.12), rgba(3, 3, 8, 0.9));
  box-shadow: 0 0 0 4px rgba(255, 61, 143, 0.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-spotlight-icon i {
  font-size: 1.5rem;
}
.why-spotlight-feature:hover .why-spotlight-icon {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(255, 61, 143, 0.12), 0 16px 30px rgba(0, 0, 0, 0.35);
}
.why-spotlight-feature span {
  font-size: .82rem;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.9);
}

/* ============================================================
   LEGACY SHOWCASE
============================================================ */
.legacy-showcase {
  position: relative;
  padding-top: clamp(10px, 6vw, 10px);
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.18), transparent 24%),
    radial-gradient(circle at 85% 78%, rgba(129, 59, 255, 0.20), transparent 28%),
    linear-gradient(180deg, #060507 0%, #07050d 44%, #05050b 100%);
  color: var(--cream);
  overflow: hidden;
}
.legacy-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 180, 78, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 180, 78, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .45;
}
.legacy-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 193, 94, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 28%, rgba(255, 193, 94, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 18%, rgba(255, 193, 94, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 74%, rgba(255, 193, 94, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 84%, rgba(255, 193, 94, 0.65) 0 1px, transparent 2px);
}
.legacy-shell {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: rgba(5, 4, 10, 0.82);
}
.legacy-top {
  position: relative;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 3vw, 34px) 30px;
  background:
    linear-gradient(180deg, rgba(3, 3, 7, 0.80) 0%, rgba(5, 4, 10, 0.64) 100%),
    linear-gradient(90deg, rgba(255, 180, 78, 0.08), rgba(255, 180, 78, 0));
  border-bottom: 1px solid rgba(201, 169, 97, 0.16);
}
.legacy-top::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 193, 94, 0) 0%, rgba(255, 193, 94, 0.10) 100%),
    repeating-linear-gradient(90deg,
      rgba(255, 193, 94, 0.02) 0 50px,
      rgba(255, 193, 94, 0.05) 50px 52px,
      rgba(255, 193, 94, 0.02) 52px 108px);
  opacity: .75;
}
.legacy-title {
  margin: 0 0 28px;
  text-align: center;
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.legacy-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.legacy-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(255, 193, 94, 0.25) 0%,
    rgba(255, 214, 132, 0.95) 15%,
    rgba(255, 214, 132, 0.95) 85%,
    rgba(255, 193, 94, 0.25) 100%);
  box-shadow: 0 0 14px rgba(255, 193, 94, 0.85);
}
.legacy-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.legacy-year {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 214, 132, 0.95);
  background: #090811;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 0 0 7px rgba(5, 4, 10, 0.85);
}
.legacy-step.active .legacy-year {
  background: radial-gradient(circle at 35% 35%, #ff77c4 0%, #ff4bb0 35%, #9a1f69 100%);
  border-color: rgba(255, 184, 223, 0.95);
  box-shadow: 0 0 0 7px rgba(5, 4, 10, 0.85), 0 0 24px rgba(255, 75, 176, 0.6);
}
.legacy-step h3 {
  min-height: 56px;
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.35;
  color: rgba(250, 247, 242, 0.94);
}
.legacy-thumb,
.legacy-crown {
  width: min(100%, 138px);
  height: 140px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 132, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.legacy-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legacy-crown {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 193, 94, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(16, 11, 22, 0.98), rgba(10, 7, 14, 0.92));
}
.legacy-crown i {
  font-size: 3rem;
  color: var(--gold-bright);
  filter: drop-shadow(0 10px 20px rgba(255, 193, 94, 0.25));
}
.legacy-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.7fr) minmax(0, 1.15fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 37, 145, 0.30), transparent 32%),
    radial-gradient(circle at 88% 50%, rgba(112, 85, 255, 0.30), transparent 32%),
    linear-gradient(90deg, rgba(20, 4, 16, 0.98) 0%, rgba(10, 5, 20, 0.96) 50%, rgba(7, 8, 24, 0.98) 100%);
}
.legacy-side {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  align-items: end;
  gap: 22px;
  min-height: 380px;
  padding: 26px 28px 0px 28px;
  overflow: hidden;
}
.legacy-side-right {
  grid-template-columns: 1fr minmax(180px, 270px);
}
.legacy-side::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));

}
.legacy-portrait {
  position: relative;
  align-self: end;
  height: 100%;
  min-height: 300px;
  background-image: url("../images/miss-teen.png");
      background-position: top;
    background-size: cover;
}
.legacy-portrait2 {
  position: relative;
  align-self: end;
  height: 100%;
  min-height: 300px;
  background-image: url("../images/mr-teen.png");
      background-position: top;
    background-size: cover;
}
.legacy-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.38));
}
.legacy-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}
.legacy-copy-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.45rem;
  background: radial-gradient(circle at 50% 35%, rgba(255, 193, 94, 0.18), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(255, 214, 132, 0.35);
}
.legacy-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .98;
  text-transform: uppercase;
}
.legacy-side-left .legacy-copy h3 { color: #ff4fa9; }
.legacy-side-right .legacy-copy h3 { color: #74b4ff; }
.legacy-copy p {
  margin: 0 0 24px;
  color: rgba(250, 247, 242, 0.84);
  font-size: 1.04rem;
}
.legacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 132, 0.35);
  color: var(--gold-bright);
  background: rgba(2, 2, 4, 0.35);
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.legacy-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  background: rgba(255, 193, 94, 0.08);
}
.legacy-centerpiece {
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px 12px;
}
.legacy-centerpiece::before,
.legacy-centerpiece::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 214, 132, 0), rgba(255, 214, 132, 0.9), rgba(255, 214, 132, 0));
}
.legacy-centerpiece::before {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
}
.legacy-centerpiece::after {
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 214, 132, 0), rgba(255, 214, 132, 0.9), rgba(255, 214, 132, 0));
}
.legacy-center-ring {
  position: relative;
  z-index: 1;
  width: min(240px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px 28px;
  border: 1.5px solid rgba(255, 214, 132, 0.45);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 193, 94, 0.14), rgba(8, 6, 14, 0.88) 68%),
    rgba(8, 6, 14, 0.92);
  box-shadow: 0 0 0 12px rgba(255, 214, 132, 0.03), 0 24px 50px rgba(0, 0, 0, 0.32);
}
.legacy-center-ring i {
  font-size: 3.1rem;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.legacy-center-ring p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 1.1rem;
  line-height: 1.45;
  text-transform: uppercase;
}

/* ============================================================
   EXPLORE YOUR TALENT
============================================================ */
.talent-explore {
  position: relative;
  padding-top: clamp(36px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 192, 76, 0.16), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(255, 60, 156, 0.18), transparent 22%),
    linear-gradient(180deg, #04050a 0%, #06050c 46%, #09040f 100%);
  color: var(--cream);
  overflow: hidden;
}
.talent-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 179, 71, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 179, 71, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .35;
}
.talent-explore1 {
  position: relative;
  padding-top: clamp(0px, 5vw, 0px);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 192, 76, 0.16), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(255, 60, 156, 0.18), transparent 22%),
    linear-gradient(180deg, #04050a 0%, #06050c 46%, #09040f 100%);
  color: var(--cream);
  overflow: hidden;
}
.talent-explore1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 179, 71, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 179, 71, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .35;
}
.talent-shell {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: rgba(4, 4, 9, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
.talent-top {
  padding: 22px 22px 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 188, 82, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(6, 6, 12, 0.98) 0%, rgba(8, 7, 15, 0.96) 100%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
}
.talent-title {
  margin: 0 0 18px;
  text-align: center;
  color: var(--gold-bright);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.talent-card-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.talent-card {
  position: relative;
  min-height: 182px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.38);
  background: #0a0912;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
.talent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 8, 0.14) 0%, rgba(7, 6, 15, 0.12) 40%, rgba(6, 4, 12, 0.94) 100%),
    linear-gradient(180deg, rgba(255, 74, 180, 0) 55%, rgba(255, 74, 180, 0.08) 100%);
}
.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talent-card-icon,
.talent-card h3 {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.talent-card-icon {
  bottom: 34px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 35%, rgba(255, 100, 194, 0.45), rgba(128, 17, 76, 0.92));
  border: 1px solid rgba(255, 118, 199, 0.65);
  color: #ffd8ef;
  font-size: .9rem;
  box-shadow: 0 0 0 4px rgba(255, 73, 175, 0.12);
}
.talent-card h3 {
  bottom: 10px;
  width: calc(100% - 14px);
  margin: 0;
  color: var(--cream);
  font-size: .9rem;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.talent-global {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.4fr);
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  background:
    radial-gradient(circle at 22% 48%, rgba(255, 59, 178, 0.18), transparent 32%),
    radial-gradient(circle at 72% 50%, rgba(146, 65, 255, 0.16), transparent 34%),
    linear-gradient(90deg, #14040e 0%, #160515 38%, #120218 100%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}
.talent-global-copy h3 {
  max-width: 480px;
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.talent-global-copy p {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(250, 247, 242, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}
.talent-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.talent-metric {
  min-width: 102px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
}
.talent-metric i {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 206, 118, 0.5);
  background: rgba(255, 206, 118, 0.08);
  font-size: .9rem;
}
.talent-metric strong {
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: .02em;
}
.talent-metric span {
  color: rgba(250, 247, 242, 0.76);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.talent-journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(165, 22, 98, 0.94), rgba(112, 11, 66, 0.96));
  border: 1px solid rgba(255, 142, 212, 0.32);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.talent-journey-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(145, 14, 86, 0.28);
}

.talent-map-visual {
  position: relative;
  min-height: 210px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 76, 0.12);
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 108, 198, 0.18), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(173, 92, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(28, 7, 27, 0.8), rgba(13, 6, 21, 0.85));
}
.talent-map-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 420'%3E%3Cg fill='%23f262ff' fill-opacity='.22' stroke='%23ffc36f' stroke-opacity='.08' stroke-width='2'%3E%3Cpath d='M64 186l55-36 80-15 50 22 52-24 75 10 32 34-16 30-73 22-60 8-58-16-67 16-57-18z'/%3E%3Cpath d='M405 128l73-24 92 11 61-19 74 24 63 40-19 49-68 10-36-22-62 8-49 36-52-17-45-45-46 8-22-30z'/%3E%3Cpath d='M722 212l40-18 48 10 44-20 66 14 28 31-24 22-54 11-58-7-42 11-39-12-22-23z'/%3E%3Cpath d='M850 279l33-11 34 9 19 24-14 18-35 8-33-7-18-17z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: .95;
  filter: drop-shadow(0 0 18px rgba(255, 111, 196, 0.22));
}
.talent-map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 56%, rgba(255, 126, 205, 0.28), transparent 18%),
    radial-gradient(circle at 50% 44%, rgba(255, 126, 205, 0.2), transparent 15%),
    radial-gradient(circle at 80% 60%, rgba(255, 126, 205, 0.2), transparent 16%);
}
.map-node,
.map-arc {
  position: absolute;
  z-index: 2;
}
.map-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd287;
  box-shadow: 0 0 0 6px rgba(255, 98, 193, 0.12), 0 0 16px rgba(255, 210, 135, 0.85);
}
.node-1 { top: 30%; left: 20%; }
.node-2 { top: 40%; left: 38%; }
.node-3 { top: 26%; left: 51%; }
.node-4 { top: 34%; right: 26%; }
.node-5 { top: 63%; right: 18%; }
.node-6 { bottom: 22%; left: 63%; }
.map-arc {
  border-top: 1.5px solid rgba(255, 198, 108, 0.9);
  border-radius: 999px 999px 0 0;
  opacity: .9;
  filter: drop-shadow(0 0 8px rgba(255, 198, 108, 0.55));
}
.arc-1 {
  top: 24%;
  left: 20%;
  width: 33%;
  height: 52px;
  transform: rotate(-3deg);
}
.arc-2 {
  top: 18%;
  left: 38%;
  width: 38%;
  height: 70px;
  transform: rotate(5deg);
}
.arc-3 {
  top: 36%;
  left: 50%;
  width: 28%;
  height: 44px;
  transform: rotate(8deg);
}
.arc-4 {
  top: 48%;
  left: 39%;
  width: 26%;
  height: 48px;
  transform: rotate(-14deg);
}

.talent-cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 190px;
  padding: 24px 220px 0;
  background:
    url("../images/cta-left.png") left bottom / auto 100% no-repeat,
    url("../images/cta-right.png") right bottom / auto 100% no-repeat,
    radial-gradient(circle at 18% 50%, rgba(255, 124, 201, 0.4), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(255, 124, 201, 0.32), transparent 22%),
    linear-gradient(180deg, rgba(103, 10, 74, 0.96), rgba(59, 8, 44, 0.98));
}
.talent-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04));
}
.talent-cta-figure {
  display: none;
}
.talent-cta-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}
.talent-cta-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0 22px;
  max-width: 760px;
}
.talent-cta-copy h3 {
  margin: 0 0 10px;
  color: #ffd57d;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.15;
  text-transform: uppercase;
}
.talent-cta-copy p {
  margin: 0 0 20px;
  color: rgba(250, 247, 242, 0.96);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}
.talent-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.talent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 182px;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 206, 118, 0.45);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.talent-btn:hover {
  transform: translateY(-2px);
}
.talent-btn-primary {
  background: linear-gradient(135deg, #efc86b, #c79b3d);
  color: #3a2300;
}
.talent-btn-primary:hover {
  background: linear-gradient(135deg, #f5d480, #d8ab49);
}
.talent-btn-secondary {
  background: rgba(7, 5, 10, 0.42);
  color: #ffd57d;
}
.talent-btn-secondary:hover {
  border-color: #ffd57d;
  background: rgba(255, 213, 125, 0.08);
}

/* ============================================================
   WHY PARTICIPATE
============================================================ */
.participate {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.16), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(202, 27, 112, 0.14), transparent 26%),
    linear-gradient(180deg, #050509 0%, #09070f 100%);
  color: var(--cream);
}
.participate-box {
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(8, 8, 14, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.participate-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}
.participate-head .section-desc {
  color: rgba(250, 247, 242, 0.76);
}
.participate-head .section-title .ital {
  color: var(--gold-bright);
}
.participate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}
.participate-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.participate-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.42);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), rgba(255, 255, 255, 0.03));
}
.participate-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 1.05rem;
  border: 1px solid rgba(201, 169, 97, 0.28);
  background: radial-gradient(circle at 35% 35%, rgba(201, 169, 97, 0.16), rgba(10, 10, 16, 0.95));
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.05);
}
.participate-item p {
  margin: 0;
  color: rgba(250, 247, 242, 0.94);
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================================
   REGISTER CTA
============================================================ */
.register-cta {
  position: relative;
  background:
    radial-gradient(circle at 18% 28%, rgba(201, 169, 97, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(202, 27, 112, 0.12), transparent 26%),
    linear-gradient(180deg, #07070d 0%, #0a0810 100%);
  color: var(--cream);
}
.register-cta-box {
  text-align: center;
  border: 1px solid rgba(201, 169, 97, 0.24);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 54px);
  background: rgba(10, 10, 16, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.register-cta-box .section-title .ital {
  color: var(--gold-bright);
}
.register-cta-copy {
  max-width: 680px;
  margin: 0 auto 20px;
  color: rgba(250, 247, 242, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.register-cta-subhead {
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.register-cta-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 28px;
}
.register-cta-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.register-cta-option:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.42);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), rgba(255, 255, 255, 0.03));
}
.register-cta-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 1.05rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
  background: radial-gradient(circle at 35% 35%, rgba(201, 169, 97, 0.16), rgba(10, 10, 16, 0.95));
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.05);
}
.register-cta-option span {
  color: rgba(250, 247, 242, 0.96);
  font-size: 1.03rem;
  font-weight: 500;
}
.register-cta-actions {
  display: flex;
  justify-content: center;
}

/* ============================================================
   GALLERY (Masonry)
============================================================ */
.masonry {
  column-count: 4;
  column-gap: 18px;
}
.m-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.m-item img {
  width: 100%; height: auto;
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.m-item::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(107,15,26,.6) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.m-item:hover img { transform: scale(1.08); }
.m-item:hover::after { opacity: 1; }

/* ============================================================
   TESTIMONIALS (Slider)
============================================================ */
.slider { position: relative; max-width: 920px; margin: 0 auto; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .8s var(--ease);
}
.t-slide { min-width: 100%; padding: 8px; }
.t-card {
  background: rgba(250,247,242,.04);
  border: 1px solid rgba(201,169,97,.2);
  border-radius: var(--r-lg);
  padding: 50px 50px 40px;
  backdrop-filter: blur(12px);
  position: relative;
  text-align: center;
}
.t-quote {
  font-size: 36px;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 16px;
}
.t-card p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: var(--cream);
  font-style: italic;
  margin: 0 0 28px;
}
.t-author { display: inline-flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--gold);
}
.t-author strong { display: block; color: var(--gold-bright); font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; }
.t-author span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.s-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,.4);
  color: var(--gold-bright);
  transition: all .3s var(--ease);
}
.s-btn:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); }
.s-dots { display: flex; gap: 8px; }
.s-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,169,97,.3);
  transition: all .3s var(--ease);
}
.s-dots button.active { width: 26px; border-radius: 4px; background: var(--gold-bright); }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-list { margin: 30px 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list i {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  background: var(--beige);
  color: var(--maroon);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
}
.contact-list strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold-bright); margin-bottom: 2px; }
.contact-list span, .contact-list a { color: var(--cream); font-size: .95rem; line-height: 1.5; }
.contact-list a:hover { color: var(--maroon); }

.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--beige);
  color: var(--maroon);
  font-size: 15px;
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--maroon); color: var(--gold-bright); transform: translateY(-3px); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
  margin-bottom: 24px;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-sub { color: var(--muted); margin: 0 0 22px; font-size: .92rem; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--maroon); font-weight: 500;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--beige-soft);
  transition: all .3s var(--ease);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.field textarea { resize: vertical; }
.form-success {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: rgba(201,169,97,.15);
  border: 1px solid var(--gold);
  color: var(--maroon);
  border-radius: var(--r-sm);
  font-size: .9rem;
  display: none;
  text-align: center;
}
.form-success.show { display: block; animation: pop .4s var(--ease); }
.form-success.error {
  background: rgba(107, 15, 26, 0.1);
  border-color: rgba(107, 15, 26, 0.24);
  color: var(--maroon);
}
@keyframes pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.map-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 220px;
}
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.1) contrast(1.05); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--soft-black);
  color: rgba(250,247,242,.7);
  padding: 90px 0 30px;
  position: relative;
  z-index: 1;
}
.footer::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.brand-light { color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,169,97,.15);
}
.f-col h5 {
  color: var(--gold-bright);
  font-size: 1.05rem;
  margin-bottom: 22px;
  letter-spacing: .03em;
}
.f-col ul li { padding: 6px 0; }
.f-col ul a { font-size: .93rem; transition: all .3s var(--ease); }
.f-col ul a:hover { color: var(--gold-bright); padding-left: 6px; }
.f-desc { font-size: .92rem; line-height: 1.6; margin: 14px 0 18px; }
.newsletter {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,169,97,.2);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.newsletter:focus-within { border-color: var(--gold); }
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  padding: 14px 20px;
  color: var(--cream);
  font-size: .9rem;
}
.newsletter input::placeholder { color: rgba(250,247,242,.45); }
.newsletter button {
  width: 48px;
  background: var(--gold);
  color: var(--maroon-deep);
  transition: background .3s var(--ease);
}
.newsletter button:hover { background: var(--gold-bright); }
.f-note { font-size: 12px; margin: 8px 0 0; color: var(--gold-bright); min-height: 16px; }

.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
  opacity: .7;
}
.footer-bottom .fa-heart { color: var(--maroon-soft); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.fab {
  position: fixed;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  z-index: 90;
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease);
}
.fab.whatsapp {
  bottom: 28px; right: 28px;
  background: #25D366;
  color: white;
  animation: pulseRing 2.4s ease-out infinite;
}
.fab.whatsapp:hover { transform: scale(1.1); }
.fab-tip {
  position: absolute;
  right: 70px;
  background: var(--soft-black);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: all .3s var(--ease);
  pointer-events: none;
}
.fab.whatsapp:hover .fab-tip { opacity: 1; transform: translateX(0); }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.fab.back-top {
  bottom: 96px; right: 28px;
  background: var(--maroon);
  color: var(--gold-bright);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.fab.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab.back-top:hover { background: var(--maroon-deep); transform: translateY(-3px); }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .masonry { column-count: 3; }
  .achievement-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .participate-grid { grid-template-columns: 1fr 1fr; }
  .register-cta-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-spotlight-grid { grid-template-columns: 1fr; }
  .why-spotlight-media { min-height: 560px; max-width: 620px; margin: 0 auto; }
  .why-spotlight-content { max-width: 100%; }
  .why-spotlight-features { grid-template-columns: repeat(3, minmax(140px, 1fr)); }
  .legacy-timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 18px; }
  .legacy-timeline::before { top: 30px; left: 8%; right: 8%; }
  .legacy-bottom { grid-template-columns: 1fr; }
  .legacy-side,
  .legacy-side-right { grid-template-columns: minmax(180px, 220px) 1fr; }
  .legacy-centerpiece { min-height: 290px; }
  .talent-card-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .talent-global { grid-template-columns: 1fr; }
  .talent-map-visual { min-height: 250px; }
  .talent-cta { padding-inline: 170px; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid, .why-spotlight-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { height: 500px; max-width: 520px; }
  .masonry { column-count: 2; }
  .achievement-strip-wrap { margin-top: -32px; }
  .achievement-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .participate-grid { grid-template-columns: 1fr; }
  .register-cta-options { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(85%, 360px);
    flex-direction: column;
    gap: 0;
    background: var(--soft-black);
    padding: 110px 30px 30px;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 14px 18px; font-size: 16px; border-bottom: 1px solid rgba(201,169,97,.1); }
  .nav-link::after { display: none; }
  .nav-link.cta-nav { margin: 16px 0 0; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .why-spotlight-media { min-height: 520px; }
  .why-spotlight-features { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .legacy-title { letter-spacing: .04em; }
  .legacy-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-timeline::before { display: none; }
  .legacy-step h3 { min-height: 0; }
  .legacy-side,
  .legacy-side-right { grid-template-columns: 1fr; text-align: center; }
  .legacy-copy { order: 2; }
  .legacy-side-right .legacy-copy { order: 2; }
  .legacy-portrait { order: 1; max-width: 280px; margin: 0 auto; min-height: 240px; }
  .talent-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .talent-global { padding: 22px 20px; }
  .talent-map-visual { min-height: 220px; }
  .talent-cta {
    display: grid;
    grid-template-columns: 1fr;
    padding: 18px 18px 0;
    background-size: 140px auto, 140px auto, auto, auto, auto;
  }
  .talent-cta-copy { order: 1; }
}
@media (max-width: 600px) {
  .hero-cta { gap: 12px; }
  .btn { padding: 13px 22px; font-size: 12px; }
  .masonry { column-count: 1; }
  .achievement-strip-wrap { margin-top: -20px; padding-bottom: 10px; }
  .achievement-strip { grid-template-columns: 1fr; }
  .achievement-item { min-height: 82px; padding: 16px 18px; }
  .achievement-item::after { display: none; }
  .achievement-icon { width: 38px; height: 38px; flex-basis: 38px; font-size: 1.35rem; }
  .achievement-copy strong { font-size: 1.7rem; }
  .achievement-kicker,
  .achievement-copy span { font-size: .62rem; }
  .participate-box { padding: 22px 16px; }
  .participate-head { margin-bottom: 24px; }
  .participate-item { gap: 14px; padding: 16px; }
  .participate-icon { width: 42px; height: 42px; flex-basis: 42px; font-size: .95rem; }
  .participate-item p { font-size: .95rem; }
  .register-cta-box { padding: 24px 16px; }
  .register-cta-copy { font-size: .98rem; }
  .register-cta-subhead { font-size: .82rem; letter-spacing: .12em; }
  .register-cta-option { gap: 12px; padding: 16px; }
  .register-cta-icon { width: 42px; height: 42px; flex-basis: 42px; font-size: .95rem; }
  .register-cta-option span { font-size: .96rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat { padding: 24px 14px; }
  .about-media { height: 420px; }
  .about-img-main { inset: 0 30px 40px 0; }
  .about-img-sub { width: 180px; height: 220px; }
  .about-badge { width: 100px; height: 100px; left: -10px; }
  .badge-year { font-size: 26px; }
  .why-spotlight-media { min-height: 420px; border-radius: 24px; }
  .why-spotlight-title { font-size: clamp(1.95rem, 9vw, 2.75rem); }
  .why-spotlight-copy { font-size: .98rem; line-height: 1.75; }
  .why-spotlight-features { grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 18px; }
  .why-spotlight-icon { width: 68px; height: 68px; }
  .why-spotlight-feature span { font-size: .76rem; }
  .legacy-top { padding-inline: 16px; }
  .legacy-timeline { grid-template-columns: 1fr; }
  .legacy-thumb,
  .legacy-crown { width: min(100%, 180px); }
  .legacy-copy h3 { font-size: 2.15rem; }
  .legacy-copy p { font-size: .96rem; }
  .legacy-center-ring { width: min(220px, 100%); padding: 28px 20px; }
  .legacy-center-ring i { font-size: 2.6rem; }
  .legacy-center-ring p { font-size: .95rem; }
  .talent-top { padding-inline: 14px; }
  .talent-title { font-size: 1.55rem; }
  .talent-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .talent-card { min-height: 156px; }
  .talent-card h3 { font-size: .78rem; }
  .talent-global { padding: 18px 14px; }
  .talent-global-copy h3 { font-size: 1.35rem; }
  .talent-global-copy p { font-size: .92rem; }
  .talent-metrics { gap: 12px; }
  .talent-metric { min-width: calc(50% - 6px); }
  .talent-map-visual { min-height: 180px; }
  .talent-cta {
    background-size: 95px auto, 95px auto, auto, auto, auto;
  }
  .talent-cta-copy h3 { font-size: 1.3rem; }
  .talent-cta-copy p { font-size: .95rem; }
  .talent-btn { min-width: 100%; padding: 13px 18px; font-size: .8rem; }
  .t-card { padding: 36px 26px 30px; }
  .fab { width: 50px; height: 50px; font-size: 19px; }
  .fab.whatsapp { bottom: 20px; right: 20px; }
  .fab.back-top { bottom: 80px; right: 20px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
