/* ========================================
   BRAND AMBASSADOR PAGE - CSS STYLES
   ======================================== */

/* CSS Variables */
:root {
  /* Brand Colors */
  --champagne-gold: #D4AF37;
  --rose-gold: #B76E79;
  --copper: #B87333;
  --warm-black: #0a0a0a;
  --deep-charcoal: #1a1a1a;
  --soft-charcoal: #2a2a2a;
  --cream: #FAF9F6;
  --pearl: #F8F6F0;

  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Playfair Display', serif;
  --font-accent: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-bold: 'Cinzel', serif;

  /* Spacing */
  --section-padding: 8rem 0;
  --container-max: 1280px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--champagne-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark {
  background: linear-gradient(to right, #1a1a1a, var(--champagne-gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(to right, #1a1a1a, var(--champagne-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50px) scale(1.5);
    opacity: 1;
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-100%) skewX(-12deg);
  }
  to {
    transform: translateX(200%) skewX(-12deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-scale {
  animation: fadeInScale 1s ease-out 0.5s forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out 2s forwards;
  opacity: 0;
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--warm-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--deep-charcoal), var(--warm-black), var(--soft-charcoal));
}

.hero-radial {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(circle at 50% 50%, var(--champagne-gold) 0%, var(--rose-gold) 25%, transparent 60%);
  transition: background 0.1s ease-out;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: 100%;
}

.hero-grid-layout {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  margin-bottom: 2rem;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.premium-badge .badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  fill: white;
}

.premium-badge span {
  color: white;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font-accent);
  font-size: 0.875rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.title-line-1 {
  display: block;
  color: var(--cream);
  font-size: clamp(3.5rem, 10vw, 8rem);
}

.title-line-2 {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(248, 246, 240, 0.8);
  font-family: var(--font-body);
  max-width: 36rem;
  line-height: 1.75;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0;
  }
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
  max-width: 400px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), rgba(212, 175, 55, 0.1), transparent);
}

.hero-image-border {
  position: absolute;
  inset: -1rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.5rem;
  z-index: -1;
}

.hero-glow-top {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.6;
}

.hero-glow-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(to top right, var(--copper), var(--champagne-gold));
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--champagne-gold);
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-family: var(--font-accent);
}

.scroll-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom right, var(--deep-charcoal), var(--warm-black));
  overflow: hidden;
}

.quote-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, var(--champagne-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rose-gold) 1px, transparent 1px);
  background-size: 48px 48px;
}

.quote-gradient-left {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  filter: blur(48px);
}

.quote-gradient-right {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to top left, rgba(183, 110, 121, 0.1), transparent);
  border-radius: 50%;
  filter: blur(48px);
}

.quote-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.quote-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.quote-icon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  filter: blur(48px);
  opacity: 0.5;
  border-radius: 50%;
}

.quote-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.quote-lucide {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
  fill: white;
}

.quote-text {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  font-style: italic;
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.attribution-line {
  height: 1px;
  width: 4rem;
  background: linear-gradient(to right, transparent, var(--champagne-gold), var(--rose-gold));
}

.attribution-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-accent);
  font-style: normal;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--warm-black), var(--deep-charcoal));
  overflow: hidden;
}

.video-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(to right, var(--champagne-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rose-gold) 1px, transparent 1px);
  background-size: 64px 64px;
}

.video-gradient-left {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.video-gradient-right {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 110, 121, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  margin-bottom: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.section-badge span {
  color: white;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font-accent);
  font-size: 0.875rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title .title-white {
  display: block;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.section-title .gradient-text {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.video-container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6), transparent, transparent);
  pointer-events: none;
}

.video-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-control-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  color: white;
}

.video-control-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.video-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 2s ease-in-out infinite;
}

.video-label span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-accent);
}

.video-border-glow {
  position: absolute;
  inset: -1rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-container:hover .video-border-glow {
  opacity: 1;
}

.video-glow-top {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.3;
}

.video-glow-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(to top right, var(--copper), var(--champagne-gold));
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.2;
}

.video-description {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.125rem;
  color: rgba(248, 246, 240, 0.8);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .video-description {
    font-size: 1.25rem;
  }
}

.section-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne-gold), transparent);
}

/* ========================================
   BRAND SHOWCASE SECTION
   ======================================== */
.brand-showcase {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--cream), var(--pearl));
  overflow: hidden;
}

.brand-bg-left {
  position: absolute;
  top: 25%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.brand-bg-right {
  position: absolute;
  bottom: 25%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 110, 121, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.section-title-large {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  font-family: var(--font-body);
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.5s ease;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--champagne-gold);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.feature-icon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  border-radius: 1rem;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover .feature-icon-glow {
  opacity: 0.4;
}

.feature-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.2);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
  stroke-width: 2;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--champagne-gold);
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-accent);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #4a5568;
  line-height: 1.6;
  font-family: var(--font-body);
}

.feature-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  border-radius: 0 0 1rem 1rem;
  transition: width 0.5s ease;
}

.feature-card:hover .feature-hover-line {
  width: 100%;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--pearl), var(--cream));
  overflow: hidden;
}

.timeline-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(to right, var(--champagne-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rose-gold) 1px, transparent 1px);
  background-size: 64px 64px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-card {
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 1024px) {
  .timeline-line {
    display: block;
    position: absolute;
    top: 3rem;
    left: 100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), transparent);
  }

  .timeline-card:last-child .timeline-line {
    display: none;
  }
}

.timeline-card-inner {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.5s ease;
}

.timeline-card:hover .timeline-card-inner {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.15);
}

.timeline-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.timeline-card:hover::before {
  opacity: 1;
}

.timeline-year-badge {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-accent);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.timeline-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.timeline-description {
  color: #4a5568;
  font-family: var(--font-body);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--cream), white);
  overflow: hidden;
}

.about-bg-left {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.about-bg-right {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 110, 121, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.brand-partnership-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.brand-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-display);
}

.brand-x {
  width: 2rem;
  height: 2rem;
  color: var(--champagne-gold);
}

.section-title-dark {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #030712;
  font-family: var(--font-heading);
}

.about-content {
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.about-content p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .about-content p {
    font-size: 1.25rem;
  }
}

.partnership-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partnership-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partnership-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.partnership-feature:hover {
  border-color: var(--champagne-gold);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.1);
}

.partnership-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.partnership-feature p {
  color: #4a5568;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, white, var(--cream));
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-accent);
  margin-bottom: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.gallery-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.gallery-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: border-color 0.5s ease;
}

.gallery-item:hover .gallery-border {
  border-color: rgba(212, 175, 55, 0.7);
}

.gallery-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-number {
  opacity: 1;
}

.gallery-number span {
  color: var(--champagne-gold);
  font-weight: 700;
  font-family: var(--font-bold);
  font-size: 0.875rem;
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */
.highlights-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, white, var(--cream));
  overflow: hidden;
}

.highlights-bg-left {
  position: absolute;
  top: 25%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.highlights-bg-right {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 110, 121, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.5s ease;
  overflow: hidden;
}

.highlight-card:hover {
  border-color: var(--champagne-gold);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
}

.highlight-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-emoji {
  transform: scale(1.1);
}

.highlight-year {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-accent);
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-title {
  color: var(--champagne-gold);
}

.highlight-description {
  color: #4a5568;
  line-height: 1.6;
  font-family: var(--font-body);
}

.highlight-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  border-radius: 0 0 1rem 1rem;
  transition: width 0.5s ease;
}

.highlight-card:hover .highlight-hover-line {
  width: 100%;
}

/* ========================================
   VIDEO HIGHLIGHT SECTION
   ======================================== */
.video-highlight-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--cream), white);
  overflow: hidden;
}

.video-highlight-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(to right, var(--champagne-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rose-gold) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section-header-with-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.header-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.header-icon.gold {
  color: var(--champagne-gold);
}

.header-icon.rose {
  color: var(--rose-gold);
}

.header-icon-large {
  width: 2.5rem;
  height: 2.5rem;
}

.header-icon-large.gold {
  color: var(--champagne-gold);
}

.header-icon-large.rose {
  color: var(--rose-gold);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.video-card:hover {
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.3);
}

.video-card img,
.video-card .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-card:hover img:not(.video-player),
.video-card:hover .video-thumbnail {
  transform: scale(1.1);
}

/* Video Player Styles */
.video-card .video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 5;
}

.video-card.video-playing .video-card-overlay {
  opacity: 0 !important;
  pointer-events: none;
}

.video-card.video-playing .video-play-btn {
  display: none;
}

.video-card.video-playing .video-card-info {
  opacity: 0;
  pointer-events: none;
}

.video-card.video-playing:hover .video-card-info {
  opacity: 1;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--warm-black), rgba(26, 26, 26, 0.6), transparent);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-play-inner {
  position: relative;
}

.video-play-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-play-glow {
  opacity: 0.7;
}

.video-play-circle {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.3);
}

.video-play-circle svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--champagne-gold);
  fill: var(--champagne-gold);
  margin-left: 0.25rem;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.video-card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.video-views {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold));
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.video-views span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.video-card-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: border-color 0.5s ease;
}

.video-card:hover .video-card-border {
  border-color: rgba(212, 175, 55, 0.6);
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.awards-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--pearl), var(--cream));
  overflow: hidden;
}

.awards-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne-gold), transparent);
}

.awards-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-gold), transparent);
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  transition: all 0.5s ease;
  overflow: hidden;
}

.award-card:hover {
  border-color: var(--champagne-gold);
  box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.2);
}

.award-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.award-card:hover .award-icon {
  transform: scale(1.1);
}

.award-icon span {
  font-size: 1.75rem;
}

.award-year {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-accent);
  margin-bottom: 0.5rem;
}

.award-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #030712;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.award-card:hover .award-title {
  color: var(--champagne-gold);
}

.award-description {
  color: #4a5568;
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.award-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.05), rgba(183, 110, 121, 0.05));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.award-card:hover .award-glow {
  opacity: 1;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gradientMove 20s linear infinite;
}

.stats-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-12deg);
  animation: shimmer 3s linear infinite;
}

.stats-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  animation: iconRotate 2s ease-in-out infinite;
}

.stat-icon > div,
.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
  stroke-width: 2;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  font-family: var(--font-bold);
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(to bottom right, var(--deep-charcoal), var(--warm-black), var(--soft-charcoal));
  overflow: hidden;
}

.cta-bg-gold {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--champagne-gold);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.2;
  animation: pulse 8s ease-in-out infinite;
}

.cta-bg-rose {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--rose-gold);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.15;
  animation: pulse 8s ease-in-out infinite 1s;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.cta-icon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold));
  filter: blur(32px);
  opacity: 0.6;
  border-radius: 1rem;
}

.cta-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--champagne-gold), var(--rose-gold), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.4);
}

.cta-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-title .title-white {
  display: block;
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0.5rem;
}

.cta-title .gradient-text {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(248, 246, 240, 0.8);
  font-family: var(--font-body);
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.5rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold), var(--copper));
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  font-family: var(--font-accent);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold));
  border-radius: 9999px;
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.cta-btn-primary:hover {
  transform: scale(1.05);
}

.cta-btn-primary:hover::before {
  opacity: 0.9;
}

.cta-btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
  transform: translateX(0.25rem);
}

.cta-btn-secondary {
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid var(--champagne-gold);
  color: var(--cream);
  font-weight: 600;
  font-size: 1.125rem;
  font-family: var(--font-accent);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  background: linear-gradient(to bottom, var(--deep-charcoal), var(--warm-black));
  overflow: hidden;
}

.footer-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne-gold), transparent);
}

.footer-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(to right, var(--champagne-gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rose-gold) 1px, transparent 1px);
  background-size: 64px 64px;
}

.footer-bg-left {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.footer-bg-right {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 110, 121, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.footer-content {
  padding: 5rem 0;
}

/* New Footer Partnership Hero Section */
.footer-partnership-hero {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.footer-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand-large {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.gradient-text-rose {
  background: linear-gradient(to right, var(--rose-gold), var(--champagne-gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.divider-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--champagne-gold);
}

.footer-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(248, 246, 240, 0.9);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .footer-tagline {
    font-size: 1.75rem;
  }
}

.footer-description-block {
  margin-bottom: 3rem;
}

.footer-main-text {
  font-size: 1.125rem;
  color: rgba(156, 163, 175, 0.95);
  line-height: 1.85;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-main-text {
    font-size: 1.25rem;
  }
}

.footer-main-text:last-child {
  margin-bottom: 0;
}

.footer-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-values {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: rgba(42, 42, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.footer-value-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(42, 42, 42, 0.8);
  transform: translateY(-2px);
}

.value-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--champagne-gold);
}

.footer-value-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(248, 246, 240, 0.9);
  font-family: var(--font-accent);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .footer-value-item span {
    font-size: 0.9375rem;
  }
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.social-label {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font-accent);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--soft-charcoal);
  border: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px currentColor;
}

.social-link.instagram:hover {
  color: #ec4899;
  border-color: #ec4899;
}

.social-link.twitter:hover {
  color: #3b82f6;
  border-color: #3b82f6;
}

.social-link.youtube:hover {
  color: #ef4444;
  border-color: #ef4444;
}

.social-link.linkedin:hover {
  color: #2563eb;
  border-color: #2563eb;
}

.social-link.email:hover {
  color: var(--champagne-gold);
  border-color: var(--champagne-gold);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-subtitle {
  font-size: 0.8125rem;
  font-family: var(--font-accent);
  font-style: italic;
  background: linear-gradient(to right, var(--champagne-gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.footer-gradient-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--champagne-gold), var(--rose-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: expandLine 1.5s ease-out 0.5s forwards;
}

/* ========================================
   FLOATING NEXT AMBASSADOR BUTTON
   ======================================== */

@keyframes waveExpand {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(-4px); }
}

.floating-next {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 104px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--champagne-gold) 0%, var(--rose-gold) 60%, var(--copper) 100%);
  color: white;
  text-decoration: none;
  box-shadow:
    0 8px 32px rgba(212, 175, 55, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.18);
  animation: floatPulse 3s ease-in-out infinite;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
  overflow: visible;
}

.floating-next:hover {
  filter: brightness(1.1);
  box-shadow:
    0 12px 48px rgba(212, 175, 55, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Wave rings */
.floating-wave {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 2px solid rgba(212, 175, 55, 0.7);
  animation: waveExpand 2.4s ease-out infinite;
  pointer-events: none;
}

.floating-wave:nth-child(1) { animation-delay: 0s; }
.floating-wave:nth-child(2) { animation-delay: 0.8s; }
.floating-wave:nth-child(3) { animation-delay: 1.6s; }

/* Inner content */
.floating-next-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.floating-next-icon {
  width: 1.375rem;
  height: 1.375rem;
  color: white;
  flex-shrink: 0;
}

.floating-next-text {
  font-family: var(--font-bold);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile sizing */
@media (max-width: 767px) {
  .floating-next {
    right: 0.625rem;
    width: 46px;
    height: 88px;
    border-radius: 23px;
  }

  .floating-wave {
    border-radius: 23px;
  }

  .floating-next-icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .floating-next-text {
    font-size: 0.5rem;
  }
}

/* ========================================
   MOBILE RESPONSIVE — PRIMARY AUDIENCE
   All visitors on mobile get priority here
   ======================================== */

/* ── Base mobile (all phones up to 767px) ── */
@media (max-width: 767px) {

  /* Global spacing reduction */
  :root {
    --section-padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* ── HERO ── */
  .hero-content {
    padding: 1rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-grid-layout {
    gap: 1.75rem;
  }

  /* Put image ABOVE text on mobile */
  .hero-image-container {
    order: -1;
  }

  .hero-image-frame {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-text {
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto;
  }

  .premium-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  .premium-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .title-line-1,
  .title-line-2 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  /* Hide scroll indicator — mobile users scroll naturally */
  .scroll-indicator {
    display: none;
  }

  /* ── ABOUT / PARTNERSHIP ── */
  .brand-name {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .brand-x {
    width: 1.25rem;
    height: 1.25rem;
  }

  .brand-partnership-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .section-title-dark {
    font-size: clamp(1.25rem, 5vw, 1.875rem);
  }

  .about-content {
    margin-bottom: 2rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .partnership-features {
    gap: 0.75rem;
  }

  .partnership-feature {
    padding: 1rem;
  }

  /* ── QUOTE ── */
  .quote-section {
    padding: 3rem 0;
  }

  .quote-text {
    font-size: clamp(1.125rem, 5vw, 1.75rem);
    margin-bottom: 2rem;
  }

  .quote-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .quote-icon-wrapper {
    margin-bottom: 2rem;
  }

  .quote-lucide {
    width: 1.75rem;
    height: 1.75rem;
  }

  .attribution-name {
    font-size: 1.125rem;
  }

  /* ── MAIN VIDEO ── */
  .video-section {
    padding: 3rem 0;
  }

  .video-wrapper video {
    max-height: 65vh;
  }

  .video-description {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }

  /* ── BRAND SHOWCASE (FEATURE CARDS) ── */
  .section-title-large {
    font-size: clamp(1.625rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
  }

  .feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* ── TIMELINE ── */
  .timeline-section {
    padding: 3.5rem 0;
  }

  .timeline-card-inner {
    padding: 1.25rem;
  }

  .timeline-title {
    font-size: 1.0625rem;
    margin-top: 0.75rem;
  }

  .timeline-description {
    font-size: 0.9rem;
  }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  /* ── CAREER HIGHLIGHTS ── */
  .highlight-card {
    padding: 1.375rem;
  }

  .highlight-emoji {
    font-size: 2.25rem;
  }

  .highlight-title {
    font-size: 1.125rem;
  }

  .highlight-description {
    font-size: 0.9rem;
  }

  /* ── VIDEO GRID CARDS ── */
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 1.25rem;
  }

  .video-play-circle {
    width: 4rem;
    height: 4rem;
  }

  .video-play-circle svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .video-card-title {
    font-size: 1rem;
  }

  /* ── AWARDS ── */
  .awards-section {
    padding: 3rem 0;
  }

  .award-card {
    padding: 1.25rem;
  }

  .award-title {
    font-size: 1.0625rem;
  }

  /* ── STATS ── */
  .stats-section {
    padding: 3rem 0;
  }

  .stats-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    margin-bottom: 0.25rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-value {
    font-size: clamp(1.875rem, 8vw, 2.75rem);
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-title .title-white,
  .cta-title .gradient-text {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.875rem;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9375rem 1.5rem;
    min-height: 52px;
  }

  .cta-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .cta-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  /* ── FOOTER ── */
  .footer-content {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand-large {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .footer-brand-divider {
    width: 2rem;
    height: 2rem;
  }

  .footer-tagline {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
  }

  .footer-main-text {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .footer-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }

  .footer-value-item {
    padding: 1rem 0.75rem;
  }

  .footer-value-item span {
    font-size: 0.8125rem;
  }

  .footer-social {
    padding: 1.5rem 0;
  }

  .social-link {
    width: 3.5rem;
    height: 3.5rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
  }

  /* ── VIDEO CONTROLS larger tap targets ── */
  .video-control-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* ── Very small phones (≤ 380px) ── */
@media (max-width: 380px) {

  .container {
    padding: 0 1rem;
  }

  .title-line-1,
  .title-line-2 {
    font-size: 2.5rem;
  }

  .hero-image-frame {
    max-width: 210px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .brand-name {
    font-size: 1.375rem;
  }

  .section-title-large {
    font-size: 1.5rem;
  }

  .footer-brand-large {
    font-size: 1.375rem;
  }

  .footer-values {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}
