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

:root {
  --gold: #F27A24;
  --gold-light: #F69045;
  --gold-dim: rgba(242, 122, 36, .18);
  --bg: #FFFFFF;
  --bg2: #F8F9FA;
  --bg3: #EAEAEA;
  --text: #333333;
  --muted: #666666;
  --border: rgba(32, 36, 90, .12);
  --white: #20245A;
  --section-padding: clamp(80px, 12vw, 140px);
  --container-padding: 5vw;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .25s, height .25s, opacity .25s
}

body:hover .cursor {
  opacity: 1
}

@media (max-width: 1024px) {
  body {
    cursor: auto
  }

  .cursor,
  .cursor-ring {
    display: none !important
  }
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s
}

#loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: .15em;
  color: var(--gold);
  animation: pulseGold 1.4s ease infinite
}

.loader-line {
  width: 200px;
  height: 1px;
  background: var(--border);
  margin: 20px auto;
  overflow: hidden;
  border-radius: 50px
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 2s ease;
  border-radius: 50px
}

.loader-pct {
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase
}

@keyframes pulseGold {
  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all .4s;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border)
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}

nav.scrolled .nav-container {
  padding: 14px var(--container-padding);
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(32, 36, 90, 0.06)
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .15em;
  color: var(--white);
  text-decoration: none;
  transition: color .3s
}

.nav-logo:hover {
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
}

.nav-links li {
  padding: 10px 0;
  position: relative
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s
}

.nav-links a:hover {
  color: var(--gold)
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  min-width: 180px;
  box-shadow: 0 15px 35px rgba(32, 36, 90, 0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  padding: 12px 0;
  list-style: none;
  border: 1px solid var(--border)
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text);
  transition: background .2s, color .2s;
  text-transform: none;
  letter-spacing: 0.05em
}

.dropdown-menu li a:hover {
  background: var(--bg2);
  color: var(--gold)
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all .3s;
  border-radius: 50px
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 122, 36, 0.25)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: .3s;
  border-radius: 2px
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 160px var(--container-padding) 8vh;
  position: relative;
  overflow: hidden;
  background: #000
}

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

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.75
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(32, 36, 90, 0.4), rgba(32, 36, 90, 0.9));
  z-index: 1
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2
}

.hero-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .07);
  z-index: 2
}

.hero-container {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1; /* Places it behind the text and gradient overlay */
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider img {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 120%;
  height: 120%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 2.5s ease-in-out, transform 4s ease-out;
  transform: translateY(-50%) scale(0.9);
  mix-blend-mode: screen; /* Helps blend with dark backgrounds */
}

.hero-slider img.active {
  opacity: 0.8; /* Increased since it's now behind the gradient */
  transform: translateY(-50%) scale(1);
}



.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 36, 90, 0.3), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 11vw, 140px);
  line-height: 0.9;
  letter-spacing: .02em;
  color: #FFFFFF;
  margin-bottom: 32px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3)
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal;
  position: relative
}

.hero-sub {
  font-family: 'Outfit', serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 3
}

.btn-primary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 20px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(242, 122, 36, 0.2)
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(242, 122, 36, 0.35)
}

.btn-ghost {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s
}

.btn-ghost::after {
  content: '→';
  font-size: 18px;
  transition: transform .3s
}

.btn-ghost:hover {
  gap: 14px
}

.btn-ghost:hover::after {
  transform: translateX(4px)
}

.hero-scroll {
  position: absolute;
  right: var(--container-padding);
  bottom: 8vh;
  z-index: 3;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--gold);
  animation: scrollLine 2s ease infinite
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom
  }
}

.hero-year {
  position: absolute;
  left: var(--container-padding);
  bottom: 8vh;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg)
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .2em;
  color: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 10px
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* SECTION COMMON */
section {
  padding: var(--section-padding) var(--container-padding);
  position: relative;
  overflow: hidden
}

#portfolio {
  padding-bottom: clamp(30px, 4vw, 50px);
}

#visual-highlights {
  padding-top: clamp(30px, 4vw, 50px);
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: .02em;
  color: var(--white);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
  position: relative;
  display: inline-block
}

.section-body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px
}

/* STATS */
#stats {
  padding: clamp(40px, 6vw, 80px) var(--container-padding)
}

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

.stat-item {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(32, 36, 90, 0.03);
  transition: all .4s ease
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dim);
  box-shadow: 0 20px 40px rgba(32, 36, 90, 0.06)
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--gold);
  line-height: 1;
  display: block
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 12px;
  display: block
}

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center
}

.about-visual {
  position: relative;
  max-width: 580px;
  justify-self: center;
  width: 100%;
}

.about-img-wrap {
  aspect-ratio: 1/1;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 24px 48px rgba(32, 36, 90, 0.08);
  z-index: 2;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  border-radius: 24px;
  z-index: 1
}

.about-accent2 {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  background: var(--gold-dim);
  border-radius: 24px;
  z-index: 1
}

.about-text .section-body {
  margin: 24px 0 36px
}

.about-awards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg2);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: all .3s;
  border: 1px solid transparent
}

.award-item:hover {
  background: var(--bg);
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(32, 36, 90, 0.05)
}

.award-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0
}

/* SERVICES */
#services {
  background: var(--bg2)
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 5vw, 72px)
}

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

.service-card {
  background: var(--bg);
  padding: clamp(32px, 3vw, 48px);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(32, 36, 90, 0.02)
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-dim);
  box-shadow: 0 24px 48px rgba(32, 36, 90, 0.06)
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(32, 36, 90, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: color .4s
}

.service-card:hover .service-num {
  color: var(--gold-dim)
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 24px;
  transition: all .4s;
  border: 1px solid var(--border)
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.05)
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 14px
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted)
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: 50px
}

.event-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all .4s;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(32, 36, 90, 0.08);
  border-color: var(--gold-dim);
}

.event-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.event-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.event-card:hover .event-img-container img {
  transform: scale(1.1);
}

/* PORTFOLIO */
.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 4vw, 64px)
}

.events-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 10px 0 10px;
  margin: 0 calc(-1 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  scrollbar-width: none;
}

.events-list::-webkit-scrollbar {
  display: none;
}

.event-row {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: var(--bg2);
  border-radius: 24px;
  transition: all .4s;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
  scroll-snap-align: start;
}

.event-row:hover {
  background: var(--bg);
  border-color: var(--gold-dim);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(32, 36, 90, 0.08)
}

.event-row:hover .event-num {
  color: var(--gold)
}

.event-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: rgba(32, 36, 90, 0.08);
  transition: color .3s;
  line-height: 1
}

.event-info .event-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.event-info .event-detail {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.event-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--bg);
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap
}

.event-arrow {
  font-size: 22px;
  color: var(--muted);
  transition: all .3s
}

.event-row:hover .event-arrow {
  transform: translateX(8px);
  color: var(--gold)
}

/* TIMELINE */
#timeline {
  background: var(--bg2)
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: clamp(48px, 6vw, 80px) auto 0
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 1px;
  background-color: var(--border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.5px
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--gold);
  border: 3px solid var(--bg2);
  top: 42px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--gold-dim)
}

.timeline-item.left {
  left: 0;
  text-align: right
}

.timeline-item.right {
  left: 50%;
  text-align: left
}

.timeline-item.right::after {
  left: -8px
}

.timeline-content {
  padding: 40px;
  background-color: var(--bg);
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: all .4s;
  box-shadow: 0 10px 30px rgba(32, 36, 90, 0.02)
}

.timeline-content:hover {
  border-color: var(--gold-dim);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32, 36, 90, 0.06)
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: rgba(32, 36, 90, 0.03);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
  pointer-events: none
}

.timeline-item.right .tl-year {
  left: 32px;
  right: auto
}

.tl-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 2
}

.tl-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 2
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 72px)
}

.testi-card {
  background: var(--bg2);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 24px;
  transition: all .4s;
  border: 1px solid transparent;
  position: relative
}

.testi-card:hover {
  background: var(--bg);
  border-color: var(--gold-dim);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(32, 36, 90, 0.06)
}

.testi-card.featured {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 20px 40px rgba(32, 36, 90, 0.15)
}

.testi-card.featured .testi-quote {
  color: rgba(255, 255, 255, 0.95)
}

.testi-card.featured .testi-name {
  color: var(--bg)
}

.testi-card.featured .testi-role {
  color: rgba(255, 255, 255, 0.6)
}

.testi-card.featured .testi-avatar {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bg)
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px
}

.testi-quote {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border)
}

.testi-card.featured .testi-author {
  border-color: rgba(255, 255, 255, 0.1)
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0
}

.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white)
}

.testi-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em
}

/* CTA BAND */
#cta {
  background: var(--white);
  padding: clamp(80px, 10vw, 140px) var(--container-padding);
  position: relative;
  overflow: hidden
}

.cta-marquee-wrap {
  overflow: hidden;
  margin-bottom: clamp(40px, 6vw, 100px);
  opacity: 0.15
}

.cta-marquee {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap
}

.cta-marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 160px);
  color: transparent;
  -webkit-text-stroke: 1px #FFF;
  padding: 0 50px;
  letter-spacing: .02em
}

.cta-marquee-item.colored {
  color: var(--gold);
  -webkit-text-stroke: none
}

.cta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2
}

.cta-text .section-title {
  font-size: clamp(40px, 7vw, 88px);
  color: #FFF
}

.cta-text .section-eyebrow {
  color: var(--gold)
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right
}

.cta-contact a {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .25s;
  letter-spacing: .02em
}

.cta-contact a:hover {
  color: var(--gold)
}

/* FOOTER */
footer {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) var(--container-padding) 40px
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px
}

.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .1em;
  color: var(--white);
  display: block;
  margin-bottom: 20px
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s ease
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(5px)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border)
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em
}

.footer-socials {
  display: flex;
  gap: 32px
}

.footer-socials a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s
}

.footer-socials a:hover {
  color: var(--gold)
}

/* REVEAL ANIMATIONS */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal {
  transform: translateY(50px)
}

.reveal-left {
  transform: translateX(-50px)
}

.reveal-right {
  transform: translateX(50px)
}

.reveal-zoom {
  transform: scale(0.95)
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
  opacity: 1;
  transform: translate(0) scale(1)
}

/* SCROLL PROGRESS BAR */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  width: 0;
  transition: width .1s;
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }
}

@media(max-width:1200px) {
  :root {
    --section-padding: 80px;
  }

  .footer-top {
    gap: 40px;
  }
}

@media(max-width:1024px) {
  .about-img-wrap::before {
    right: 20px;
    bottom: 20px;
  }

  .event-row {
    padding: 24px 32px;
    gap: 20px;
  }

  .stats-grid {
    gap: 16px;
  }
}

@media(max-width:900px) {
  #about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }

  nav {
    padding: 8px var(--container-padding);
  }

  /* MOBILE NAV */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 75%;
    max-width: 260px;
    background: #FFFFFF;
    padding: 60px 30px;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    list-style: none;
    margin: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1999;
  }

  .nav-links.active + .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 2px;
  }

  .nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    padding: 10px 0 10px 20px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
  }

  .nav-links li.dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 2001;
  }

  #navbar.menu-open {
    z-index: 3000;
    backdrop-filter: none !important;
  }

  .hamburger.active span {
    background: var(--gold);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
  }

  .services-top,
  .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding: 10px 0 0 20px;
    display: none;
    background: transparent;
  }

  .nav-links li.dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-links li.dropdown.active .dropdown-toggle {
    color: var(--gold);
  }

  .cta-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .cta-contact {
    text-align: left
  }

  .event-row {
    flex: 0 0 85%;
    max-width: 400px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .events-list {
    margin: 0;
    padding: 10px 0 40px;
  }

  .event-num {
    font-size: 32px;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .event-category {
    align-self: flex-start;
  }

  .event-arrow {
    display: none;
  }
}

@media(max-width:600px) {
  :root {
    --section-padding: 30px;
  }

  .hero-h1 {
    font-size: clamp(38px, 15vw, 80px)
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-year,
  .hero-scroll {
    display: none;
  }

  #hero {
    padding-top: 100px;
    min-height: 80vh;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-item { padding: 24px 20px; border-radius: 20px; }
  .stat-number { font-size: 40px; }
  
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 32px 24px; border-radius: 20px; }
  .testi-quote { font-size: 16px; margin-bottom: 24px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; padding-bottom: 40px; }
  .footer-socials { gap: 20px; }

  .timeline-container::after { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 20px; text-align: left; }
  .timeline-item::after { left: 12px; right: auto; top: 40px; }
  .timeline-item.left::after, .timeline-item.right::after { left: 12px; }
  .timeline-item.right { left: 0%; }
  .tl-year { right: 24px !important; left: auto !important; top: 20px; font-size: 50px; }
  .timeline-content { padding: 30px; }

  .about-visual { width: fit-content; margin: 0 auto; position: relative; }
  .about-accent { width: 80px; height: 80px; right: 20px; top: -20px; border-radius: 12px; z-index: 1; }
  .about-accent2 { width: 60px; height: 60px; left: 20px; bottom: -20px; border-radius: 12px; z-index: 1; }
  .about-img-wrap { height: 350px !important; border-radius: 24px !important; z-index: 2; }
  .about-img-wrap::before { right: 10px; bottom: 10px; padding: 12px 16px; font-size: 12px; }

  /* Scale down large inline padding cards */
  [style*="padding:50px 40px"], [style*="padding:48px 32px"] {
    padding: 30px 20px !important;
    border-radius: 20px !important;
  }
  
  .mv-card, .value-card { padding: 24px !important; border-radius: 20px !important; }
  .mv-card h4, .value-card h3 { font-size: 18px !important; }

  .section-title { font-size: clamp(34px, 12vw, 54px); }
  .section-body { font-size: 15px; }
  
  .events-list {
    gap: 16px;
    padding-bottom: 30px;
  }

  .event-row {
    flex: 0 0 280px;
    padding: 24px;
  }
  
  .event-num {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .event-info .event-title { font-size: 18px; margin-bottom: 4px; }
  .event-date, .event-location { font-size: 13px; }
  .event-arrow { display: none; }
  .team-img-wrap { height: 260px !important; border-radius: 20px !important; }
}

/* UTILS */
.text-center {
  text-align: center;
}

.m-auto {
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

/* PAGE HERO */
.page-hero {
  padding: 160px var(--container-padding) 80px;
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .page-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

/* CARDS */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  box-shadow: 0 20px 40px rgba(32, 36, 90, 0.06);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0
}

/* EVENT PAGE STYLES */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.etab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 50px;
  transition: all .3s;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
}

.etab:hover {
  color: var(--white);
}

.etab.active {
  color: var(--bg);
  background: var(--white);
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: inherit;
  transition: all .3s;
}

.etab.active .tab-count {
  background: var(--gold);
  color: #fff;
}

.event-body {
  padding: 32px;
  position: relative;
  background: var(--bg2);
}

.event-body h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.event-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-body {
    padding: 24px;
  }
  
  .event-body h3 {
    font-size: 18px;
  }

  .event-img-container {
    height: 200px !important;
  }
}

/* BLOG PAGE STYLES */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold-dim);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.blog-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  backdrop-filter: blur(10px);
}

.blog-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.blog-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color 0.3s;
}

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

.blog-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.read-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.read-more svg {
  transition: transform 0.3s;
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  #blog-listing {
    padding: 60px 5vw !important;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-content {
    padding: 24px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .blog-img-wrap {
    height: 200px !important;
  }
}

/* GALLERY PAGE STYLES */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.album-card {
  text-decoration: none;
  display: block;
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid var(--border);
}

.album-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(32,36,90,0.12);
  border-color: var(--gold-dim);
}

.album-img-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.album-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-card:hover .album-img-wrap img {
  transform: scale(1.15);
}

.album-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #20245A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,36,90,0.4), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  z-index: 1;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.view-btn {
  background: #FFFFFF;
  color: #20245A;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(20px);
  transition: all 0.4s;
}

.album-card:hover .view-btn {
  transform: translateY(0);
}

.album-content {
  padding: 32px;
}

.album-category {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.album-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.album-loc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 650px) {
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .album-card {
    border-radius: 20px;
  }
  
  .album-img-wrap {
    height: 200px !important;
  }
  
  .album-content {
    padding: 24px;
  }
  
  .album-title {
    font-size: 18px;
  }
}

/* PHOTO DETAIL PAGE STYLES */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.back-btn:hover {
  background: var(--white);
  color: #fff;
  transform: translateX(-5px);
  box-shadow: 0 12px 24px rgba(32,36,90,0.15);
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  aspect-ratio: 1/1;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32,36,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  backdrop-filter: blur(2px);
}

.photo-wrap:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-wrap:hover img {
  transform: scale(1.1);
}

.photo-wrap:hover .photo-overlay {
  opacity: 1;
}

@media (max-width: 1100px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .photo-wrap {
    border-radius: 16px;
  }
}

/* LIGHTBOX STYLES */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 53, 0.95);
  backdrop-filter: blur(15px);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-main {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: -80px; }
.lightbox-nav.next { right: -80px; }

@media (max-width: 1200px) {
  .lightbox-nav.prev { left: 20px; }
  .lightbox-nav.next { right: 20px; }
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 48px;
    height: 48px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
  .lightbox-main {
    height: 60vh;
  }
}

/* BLOG DETAIL PAGE STYLES */
.article-hero {
  padding: 160px var(--container-padding) 60px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.article-image {
  background: var(--bg);
  padding-bottom: 80px;
}

.article-image .reveal-zoom {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  margin-top: -40px;
}

.article-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
}

.article-text h3 {
  font-size: 28px;
  color: var(--white);
  margin: 48px 0 24px;
  font-weight: 700;
}

.article-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .article-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .article-image .reveal-zoom {
    height: 300px;
    min-height: auto;
    margin-top: 0;
    border-radius: 20px;
  }
  
  .article-text {
    font-size: 16px;
  }
  
  .article-footer {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  
  .social-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* MARQUEE HIGHLIGHTS */
#visual-highlights {
  background: var(--bg);
}

#visual-highlights .container {
  margin-bottom: 60px;
}

#visual-highlights .section-title {
  margin-top: 10px;
  line-height: 1.1;
}

.photo-marquee-wrapper {
  width: auto;
  margin: 0 calc(-1 * var(--container-padding));
  padding: 20px var(--container-padding);
  overflow: hidden;
  position: relative;
}

.photo-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: photo-marquee-scroll 60s linear infinite;
}

.photo-marquee-track:hover {
  animation-play-state: paused;
}

.photo-marquee-item {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg2);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.photo-marquee-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold-dim);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.photo-marquee-bg {
  display: none; /* Removed as images now fill perfectly */
}

.photo-marquee-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

.photo-marquee-item:hover img {
  transform: scale(1.05);
}

@keyframes photo-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  #visual-highlights {
    padding: 60px var(--container-padding) !important;
  }
  #visual-highlights .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .photo-marquee-item {
    width: 250px;
    padding: 0;
    border-radius: 20px;
  }
  .photo-marquee-item img {
    height: 250px;
    border-radius: 20px;
  }
  .photo-marquee-track {
    gap: 16px;
    animation-duration: 40s;
  }
}