:root {
  --color-brand: #f07025;
  --color-bg: #1c1c1c;
  --color-text: #fff;
  --color-text-muted: #a4a4a4;
  --color-border: #4a4a4a;
  --font-main: 'Poppins', Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-main);
  color: var(--color-text);
  overflow-x: hidden;
}

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

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

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  width: 100%;
  min-width: 320px;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.hero-text {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.3;
  color: var(--color-text);
}

.hero-text .accent {
  color: var(--color-brand);
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
}

.hero-icon {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  margin-top: 25px;
}


/* ── DECORATIVE GROUP (top-right) ── */
.deco-group-right {
  position: absolute;
  top: clamp(208px, 17.5vw, 354px);
  right: -9px;
  width: clamp(208px, 18vw, 346px);
  height: auto;
  pointer-events: none;
  transform: scale(1.2);
}

@media (max-width: 1280px) {
  .deco-group-right {
    top: 280px;
    right: -65px;
  }
}

@media (max-width: 1024px) {
  .deco-group-right {
    display: none;
  }
}



/* ── SHOWREEL BLOCK ── */
.showreel-block {
  position: relative;
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.showreel-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.showreel-img-wrap .showreel-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: 0px 0px 40px 10px var(--color-brand)38;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 8.44vw, 162px);
  height: clamp(80px, 8.44vw, 162px);
  border-radius: 50%;
  border: 5px solid var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.play-btn:hover {
  border-color: var(--color-brand);
}

.play-btn img {
  width: clamp(36px, 4.2vw, 80px);
  height: auto;
}

.showreel-label {
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.showreel-label h2 {
  font-weight: 400;
  font-size: clamp(36px, 4vw, 77px);
  color: var(--color-text);
}

/* ── DIVIDER LINE ── */
.divider {
  display: block;
  height: 3px;
  border: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.6) 3px, transparent 3px);
  background-position: left center;
  background-size: 8px 3px;
  background-repeat: repeat-x;
  margin: 4px clamp(20px, 11.46vw, 220px) 0;
}

/* ── SECTION HEADING ROW ── */
.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading-content {
  display: flex;
  flex-direction: column;
}

.section-badge {
  width: clamp(54px, 6vw, 115px);
  height: auto;
}

.section-title {
  font-weight: 400;
  font-size: clamp(36px, 4vw, 77px);
  color: var(--color-brand);
  text-align: center !important;
}

.section-subtitle {
  color: var(--color-text);
}

/* ── SPOTLIGHT GRID ── */

#work-grid .card-text {
  gap: 10px;
}

#work .section-heading-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#work .section-heading-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

#work .section-subtitle {
  font-size: 18px;
  margin-left: 450px;
  max-width: 460px;
  line-height: 1.6;
}

/* Responsive - stack on smaller screens */
@media (max-width: 1024px) {
  #work .section-subtitle {
    width: 80%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  #work .section-heading-left {
    width: 100%;
    justify-content: center;
  }
  #work .section-subtitle {
    font-size: 18px;
    align-self: flex-start;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #work .section-heading-left {
    gap: 8px;
  }
  
  #work .section-subtitle {
    font-size: 16px;
  }
}

/* ── SPOTLIGHT CARD ── */

.spotlight-grid {
  display: block;
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.spotlight-grid::after {
  content: "";
  display: table;
  clear: both;
}

.spotlight-card {
  position: relative;
  width: calc(50% - 20px);
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

/* ── SPOTLIGHT CARD IMAGES ── */
.spotlight-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.spotlight-card .card-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.spotlight-card .card-main-img:hover {
  transform: scale(1.1);
}

.spotlight-card .card-blur-bg {
  position: absolute;
  top: -3.29%;
  left: -6.94%;
  width: 110%;
  height: 65.84%;
  filter: blur(25px);
  z-index: 0;
  object-fit: cover;
}

@media (min-width: 769px) {
  .spotlight-card:nth-child(odd) {
    float: left;
    clear: left;
  }

  .spotlight-card:nth-child(even) {
    float: right;
    clear: right;
  }

  .spotlight-card.card-2{
    margin-top: 130px;
  } 
  .spotlight-card.card-3, 
  .spotlight-card.card-4, 
  .spotlight-card.card-5, 
  .spotlight-card.card-6{
    margin-top: 40px;
  }
  .spotlight-card.work-card-2{
    margin-top: 130px;
  } 
  .spotlight-card.work-card-3, 
  .spotlight-card.work-card-4, 
  .spotlight-card.work-card-5, 
  .spotlight-card.work-card-6, 
  .spotlight-card.work-card-7,
  .spotlight-card.work-card-8, 
  .spotlight-card.work-card-9, 
  .spotlight-card.work-card-10, 
  .spotlight-card.work-card-11, 
  .spotlight-card.work-card-12, 
  .spotlight-card.work-card-13, 
  .spotlight-card.work-card-14, 
  .spotlight-card.work-card-15, 
  .spotlight-card.work-card-16, 
  .spotlight-card.work-card-17, 
  .spotlight-card.work-card-18, 
  .spotlight-card.work-card-19, 
  .spotlight-card.work-card-20, 
  .spotlight-card.work-card-21, 
  .spotlight-card.work-card-22, 
  .spotlight-card.work-card-23{
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .spotlight-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .spotlight-card {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0 !important;
    float: none;
  }
}


.card-tags {
  display: flex;
  flex-wrap: wrap;
  --tag-gap: clamp(3px, 0.5vw, 8px);
  gap: var(--tag-gap);
  padding-top: 16px;
  margin-bottom: 8px;
}

.card-tags span {
  font-size: clamp(5px, 0.75vw, 8.5px);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 4px clamp(2px, 0.3vw, 12px);
  white-space: nowrap;
  flex: 0 0 calc((100% - 5 * var(--tag-gap)) / 6);
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .card-tags span {
    font-size: 7px;
    padding: 4px 2px;
  }
}

@media (max-width: 900px) {
  .card-tags span {
    font-size: 6px;
    padding: 4px 2px;
  }
}

@media (max-width: 768px) {
  .card-tags span {
    font-size: clamp(7px, 2vw, 8.5px);
    padding: 4px 8px;
  }
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 25px;
}

.card-text h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: var(--color-text);
}

.card-text p {
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.5;
}

.hidden-card {
  display: none !important;
}

.hidden-card.visible {
  display: flex;
}


/* ── CLIENTS SECTION ── */
.clients-heading-row {
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 11.46vw, 220px);
  gap: clamp(40px, 8vw, 120px);
}

.clients-heading-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .clients-heading-left {
    width: 100%;
    justify-content: center;
  }
  .clients-subtitle {
    align-self: flex-start;
  }
}

.clients-title {
  font-weight: 400;
  font-size: clamp(36px, 4vw, 77px);
  color: var(--color-brand);
}

.clients-subtitle {
  max-width: 1200px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
}

/* ── MARQUEE ── */
.marquee-wrap {
  display: block;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  height: auto;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0;
  margin-block: 60px;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-wrap::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

.marquee-wrap::-webkit-scrollbar-track {
  display: none !important;
}

.marquee-wrap::-webkit-scrollbar-thumb {
  display: none !important;
}

.marquee-wrap:active,
.marquee-wrap.grabbing {
  cursor: grabbing;
}

.marquee-wrap img {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: none !important;
  margin: 0 40px;
}

.marquee-wrap img:hover {
  filter: brightness(1.1) contrast(1.05);
}

@media (hover: none) and (pointer: coarse) {
  .marquee-wrap {
    -webkit-overflow-scrolling: touch;
  }
}


.see-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 40px;
  clear: both;
}

.see-more-btn {
  border: 1px solid var(--color-brand);
  background: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: 24px;
  padding: 10px 24px;
  cursor: pointer;
  
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.see-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-brand);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.see-more-btn:hover {
  color: var(--color-text);
  border-color: var(--color-brand);
}

.see-more-btn:hover::before {
  left: 0;
}


.archive-heading-row {
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.archive-badge-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.archive-title {
  font-weight: 400;
  font-size: clamp(36px, 4vw, 77px);
  color: var(--color-brand);
}

.archive-grid {
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.archive-row-divider {
  width: 100vw;
}

.archive-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.archive-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 150px;
}

.archive-item {
  color: var(--color-text);
  font-size: clamp(14px, 1.2vw, 16px);
  cursor: default;
  transition: color 0.3s;
}

.archive-item:hover {
  color: var(--color-brand);
}

.hover-img-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.center-hover-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 60%;
  max-height: 60vh;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

/* ── ABOUT PAGE ── */
.about-hero-section {
  padding: 0 clamp(20px, 11.46vw, 220px);
}

.about-hero-bg {
  width: 100%;
  aspect-ratio: 4/1;
  object-fit: cover;
  margin-block: 40px;
  position: relative;
  z-index: 9998;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro-title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-intro-deco {
  width: clamp(60px, 6vw, 100px);
  height: auto;
}

.about-intro-text {
  font-size: clamp(14px, 1.25vw, 20px);
  color: var(--color-text);
  line-height: 1.6;
  max-width: 800px;
  margin-left: clamp(84px, 8.5vw, 124px);
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: var(--section-gap);
  align-items: stretch;
}

.service-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
  position: relative;
  min-width: 0;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 3px;
  border: none;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
  background-position: center top;
  background-size: 3px 8px;
  background-repeat: repeat-y;
}

.service-header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-end;
}

.service-icon {
  width: clamp(80px, 8vw, 120px);
  height: auto;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-col h3 {
  font-size: clamp(14px, 1.8vw, 24px);
  color: var(--color-brand);
  font-weight: 400;
  text-align: left;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 8px;
}

.service-col p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .service-col:nth-child(even)::after { display: none; }
  .service-col:nth-child(odd)::after { display: block; }
}

@media (max-width: 600px) {
  .service-col::after { display: none; }
  .about-intro-text { margin-left: 0; }
}

.read-more-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--section-gap) 0;
}

.read-more-line {
  position: absolute;
  width: 100%;
  height: 3px;
  border: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
  background-position: left center;
  background-size: 8px 3px;
  background-repeat: repeat-x;
  z-index: 1;
}

.read-more-btn {
  background: var(--color-bg);
  padding: 10px 24px;
  border: 1px solid var(--color-brand);
  color: var(--color-text);
  font-size: 24px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-brand);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.read-more-btn:hover {
  color: var(--color-text);
  border-color: var(--color-brand);
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn.active {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.hidden-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-15px) scaleY(0.85);
  filter: blur(8px);
}

.hidden-text.active {
  max-height: 600px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 16px;
  transform: translateY(0) scaleY(1);
  filter: blur(0);
}

.hidden-text.closing {
  animation: closeTextSmooth 0.8s cubic-bezier(0.16, 0.5, 0.3, 1) forwards;
}

@keyframes closeTextSmooth {
  0% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
    max-height: 600px;
  }
  70% {
    opacity: 0.3;
    filter: blur(4px);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px) scaleY(0.85);
    filter: blur(8px);
    max-height: 0;
  }
}

/* ── CULTIVATORS ── */
.cultivators-section {
  padding: 0 clamp(20px, 11.46vw, 220px);
  margin-top: var(--section-gap);
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: stretch;
  flex-wrap: wrap;
}

.cultivators-heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  max-width: 700px;
  justify-content: space-between;
  overflow: hidden;
  max-height: calc(clamp(360px, 40vw, 768px) * (2/3));
}

.cultivators-desc {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 20px 0 0 0;
  text-align: left;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-img-wrap {
  width: clamp(360px, 40vw, 768px);
  overflow: hidden;

}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  filter: grayscale(100%);
}

.founder-title {
  color: var(--color-brand);
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.founder-name {
  color: var(--color-text);
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.section-divider-img {
  width: 100%;
  height: auto;
  margin-top: var(--section-gap);
  opacity: 0.6;
  flex-basis: 100%;
}

@media (max-width: 1024px) {
  .cultivators-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .cultivators-heading {
    max-height: none;
    overflow: visible;
  }
}

/* ── TEAM GRIDS ── */
.team-section {
  padding: 0 clamp(20px, 11.46vw, 220px);
  margin-top: var(--section-gap);
}

.team-heading {
  font-size: clamp(32px, 3vw, 48px);
  color: var(--color-brand);
  font-weight: 400;
  margin-bottom: 40px;
}

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

.team-member {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  aspect-ratio: 4/5;
}

.team-member h4,
.team-member p {
  margin: 0;
  padding: 0;
}

.team-member h4 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}

.team-member p {
  color: var(--color-brand);
  font-size: 14px;
  line-height: 1.3;
  margin-top: 4px;
}

.section-divider2-img {
  width: 100%;
  height: auto;
  margin-top: var(--section-gap);
  opacity: 0.6;
  flex-basis: 100%;
}

.member-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.member-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
}

.member-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.member-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.member-card .name {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.member-card .role {
  color: #ddd;
  font-size: 12px;
  margin-top: 4px;
}

.team-arrow {
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-arrow.rotated {
  transform: rotate(-180deg);
}

.team-arrow circle {
  fill: var(--color-brand);
  stroke: var(--color-brand);
  transition: all 0.3s ease;
}

.team-arrow polyline,
.team-arrow line {
  stroke: var(--color-text);
  transition: all 0.3s ease;
}

.team-arrow:hover {
  filter: drop-shadow(0 0 6px rgba(240, 112, 37, 0.8));
}

/* ── COLLAPSIBLE TEAM ── */
.toggle-team-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 40px;
}

.collapsible-team-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  overflow: hidden;
}

.collapsible-team-wrap.expanded {
  grid-template-rows: 1fr;
}

.large-team-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.large-team-grid .team-member h4,
.large-team-grid .team-member p {
  display: none;
}

.project-detail {
  padding: calc(200px + var(--section-gap)) clamp(20px, 11.46vw, 220px) 20px;
}

.project-detail hr.divider {
  margin-block: 40px !important;
  margin-inline: 0 !important;
  max-width: 100%;
  height: 3px;
  border: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.6) 3px, transparent 3px);
  background-position: left center;
  background-size: 8px 3px;
  background-repeat: repeat-x;
}

.project-imagery {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-hero-img img,
.project-footer-img img,
.project-img-grid-half img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-hero-img {
  overflow: hidden;
  background: #0b3b60;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-hero-img img {
  width: 100%;
}

.project-img-grid-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .project-img-grid-half {
    grid-template-columns: 1fr;
  }
}

/* Annual Report */
.annual-report-section {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.annual-report-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.annual-report-right {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 300px;
  overflow: hidden;
}

.annual-report-right img {
  width: 100%;
  height: auto;
  max-width: unset;
  object-fit: contain;
  display: block;
}

.annual-report-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.annual-report-header h2 {
  color: var(--color-brand);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-brand);
  font-size: 12px;
  pointer-events: none;
}

.annual-year-select {
  appearance: none;
  background: #2e2e2e;
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  color: var(--color-text);
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: inherit;
  padding: 8px 40px 8px 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  width: 160px;
}

.annual-year-select:hover,
.annual-year-select:focus {
  border-color: var(--color-brand);
}

.annual-year-select option {
  background: #2e2e2e;
  color: var(--color-text);
}

/* ── CUSTOM DROPDOWN OPTIONS ── */
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #333333;
  border-radius: 0 0 6px 6px;
  z-index: 99;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  margin-top: 4px;
}

.custom-select-options.open {
  display: flex;
}

.custom-select-option {
  padding: 10px 16px;
  color: var(--color-text);
  cursor: pointer;
  font-size: clamp(16px, 1.5vw, 20px);
  border-bottom: 1px solid #555;
  transition: background 0.2s, color 0.2s;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: #444;
}

.custom-select-option.active {
  color: var(--color-brand);
}

.annual-report-left p {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px !important;
  text-align: left;
}

@media (max-width: 1024px) {
  .annual-report-section {
    flex-direction: column;
  }
  .annual-report-right {
    width: 100%;
  }
}

/* Slider */
.related-projects-section {
  position: relative;
  margin-top: 40px;
  padding-bottom: 60px;
  overflow: visible;
}

.related-slider-outer {
  position: relative;
  width: 100%;
}

.related-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.related-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  width: 100%;
  transition: transform 0.5s ease;
}

.related-slider-track>.spotlight-card {
  flex: 0 0 calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
  min-width: 0;
  float: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  clear: none !important;
  width: auto !important;
}

.related-slider-track>.spotlight-card .card-text p {
  display: none;
}

.related-slider-track>.spotlight-card .card-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.related-arrow-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  position: absolute;
  right: -30px;
  top: 35%;
  transform: translateY(-50%);
  z-index: 20;
}

.related-arrow-btn svg {
  background-color: transparent;
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

.related-arrow-btn.flipped {
  transform: translateY(-50%) rotate(180deg);
}

@media (min-width: 1440px) {
  .related-arrow-btn {
    top: 40%;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .related-slider-track {
    gap: 24px;
  }
  .related-slider-track > .spotlight-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-slider-track {
    gap: 16px;
  }
  .related-slider-track > .spotlight-card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
