/* ===========================
   CSS RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #090411;
  --navy: #131337;
  --white: #ffffff;
  --font-display: system-ui, -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  --font-text: system-ui, -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  --font-nav: 'Inter', system-ui, sans-serif;
  --font-label: 'Roboto', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}
html.snap-page {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
body { font-family: var(--font-display); background: var(--dark); color: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 120px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: transparent;
}
.header.light {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
}
.header.light .nav a { color: #000; }

.logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.08px;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav a:hover {
  background-size: 100% 1px;
}
.nav a.active {
  font-weight: 700;
}

/* ===========================
   BUTTON
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  padding: 6px 6px 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn.dark {
  border-color: var(--dark);
  color: var(--dark);
}
.btn-icon {
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Grey slide fill — above SVG ring (z-index 2) */
.btn-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn:hover .btn-icon::before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 300ms;
}
/* Arrow overlay — appears on hover above grey fill */
.btn-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: white;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6572 14.4141L26.2422 19H10V21H26.3848L21.6572 25.7275L23.0713 27.1416L30.1426 20.0713L23.0713 13L21.6572 14.4141Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6572 14.4141L26.2422 19H10V21H26.3848L21.6572 25.7275L23.0713 27.1416L30.1426 20.0713L23.0713 13L21.6572 14.4141Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0;
  transition: opacity 0.2s 0.15s;
}
.btn:hover .btn-icon::after {
  opacity: 1;
  transition: opacity 0.2s 0.5s;
}
/* Dark button: circle fills white, arrow overlay uses dark colour */
.btn.dark .btn-icon::before {
  background: #ffffff;
}
.btn.dark .btn-icon::after {
  background-color: #090411;
}
/* Hover fill: white 10% for both button types */
.btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn.dark:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: opacity 0.15s;
}
.btn:hover .btn-icon img {
  opacity: 0;
}

/* ===========================
   LABEL / TAG
   =========================== */
.label {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 21px;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  color: var(--white);
}
.label-arrow {
  width: 12px;
  height: 10px;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.label-arrow img { width: 100%; height: 100%; }

/* Rotate triangle to point down on hover */
.project-section:hover .label-arrow,
.project-card-dark:hover .label-arrow,
.article-row:hover .label-arrow,
.banality-inner:hover .label-arrow {
  transform: rotate(180deg);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.42px;
  color: var(--white);
}

/* ===========================
   SECTION COMMON
   =========================== */
.section { position: relative; width: 100%; overflow: hidden; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 200px; }

/* ===========================
   HOME PAGE
   =========================== */

/* Hero embed section */
.hero-embed {
  width: 100%;
  height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.hero-embed iframe,
.hero-embed spline-viewer {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* Project sections */
.project-section {
  background: var(--dark);
  min-height: 100vh;
  padding: 80px 200px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-section .pattern-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.project-section .pattern-bg img {
  width: 100%;
  height: auto;
}

.project-row {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}
.project-row.reverse { flex-direction: row-reverse; }

.project-info {
  flex: 0 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  letter-spacing: 1.62px;
  color: var(--white);
  line-height: 1.1;
}
.project-desc {
  font-family: var(--font-text);
  font-size: 16px;
  letter-spacing: 0.28px;
  line-height: 22px;
  color: var(--white);
  max-width: 420px;
}
.project-image {
  flex: 0 0 calc(50% - 20px);
  position: relative;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ShopeePay dark card */
.project-card-section {
  min-height: 100vh;
  padding: 80px 120px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-dark {
  background: #100f1b;
  border-radius: 4px;
  position: relative;
  width: 100%;
  padding: 80px 80px;
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.project-card-dark .map-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 100%;
}
.project-card-dark .map-bg img { width: 100%; }

/* Article sections */
.article-section {
  background: var(--dark);
  min-height: 100vh;
  padding: 80px 200px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-section .article-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(50px);
  overflow: visible;
}
.article-bg-svg {
  width: 120%;
  margin: 0 -10%;
  height: auto;
  display: block;
  overflow: visible;
  transform: translateZ(0);
}
.article-bg-anim {
  animation: article-flow 8s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes article-flow {
  from { transform: translateX(0px); }
  to   { transform: translateX(-1554px); }
}

.article-row {
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 96px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  width: 480px;
  flex-shrink: 0;
}
.article-meta {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 480px;
}
.article-excerpt {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
}

/* Banality section */
.banality-section {
  background: var(--dark);
  min-height: 100vh;
  padding: 80px 200px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banality-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(50px);
  overflow: visible;
}
.banality-bg-svg {
  width: 120%;
  margin: 0 -10%;
  height: auto;
  display: block;
  overflow: visible;
  transform: translateZ(0);
}
.banality-bg-anim {
  animation: banality-flow 8s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes banality-flow {
  from { transform: translateX(0px); }
  to   { transform: translateX(-1498px); }
}

.banality-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  position: relative;
}
.banality-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 96px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  text-align: right;
  color: var(--white);
  line-height: 1;
  max-width: 1015px;
}

/* Mobvoi gallery */
.gallery-section {
  min-height: 100vh;
  padding: 80px 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}
.gallery-section .pattern-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.gallery-section .pattern-bg img { width: 100%; }

.gallery-card {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(85, 80, 144, 0.15);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  position: relative;
}
.gallery-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-position: center;
  flex-shrink: 0;
}
.gallery-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.project-image:hover img {
  transform: scale(1.05);
}

.gallery-item-label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.4px;
  line-height: 22px;
  color: var(--white);
}

/* CTA section */
.cta-section {
  min-height: 100vh;
  padding: 80px 24px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-glow {
  position: absolute;
  width: 130vw;
  height: 130vw;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  pointer-events: none;
  animation: cta-glow-spin 20s linear infinite;
  will-change: transform;
}
@keyframes cta-glow-spin {
  from { transform: translate(-50%, 50%) rotate(0deg); }
  to   { transform: translate(-50%, 50%) rotate(360deg); }
}
.cta-glow img { width: 100%; height: 100%; object-fit: cover; }

.cta-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cta-inner .btn {
  align-self: center;
}
.cta-title {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  color: rgba(255,255,255,0.6);
}
.cta-title span { color: var(--white); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-page {
  background: var(--white);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.about-page .header { background: rgba(255,255,255,0.7); }
.about-page .header .nav a { color: #000; }

.header-light {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 120px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.7);
}
.header-light .nav a {
  color: #000;
}

.about-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}
.about-bg img { width: 100%; height: auto; }

.about-photo {
  position: absolute;
  right: 120px;
  top: 119px;
  width: 380px;
}
.about-photo img { width: 100%; height: auto; }

.about-content {
  position: relative;
  padding-top: 218px;
  padding-left: 120px;
  width: 696px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
}
.about-subtitle {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.16px;
  color: #000;
  line-height: 1;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  letter-spacing: -0.4px;
  color: #000;
  line-height: 1;
  margin-top: 20px;
}
.about-bio {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.07px;
  line-height: 1.6;
  color: #000;
  max-width: 526px;
  margin-top: 20px;
}

/* ===========================
   WORK PAGE
   =========================== */
.work-page { background: var(--dark); }

.work-header-section {
  padding: 160px 200px 70px;
  text-align: center;
}
.work-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 68px;
  letter-spacing: -0.34px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 36px;
}
.work-subtitle {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.07px;
  line-height: 22px;
  color: var(--white);
  max-width: 586px;
  margin: 0 auto;
}

.work-grid {
  padding: 0 200px;
}
.work-row {
  display: flex;
  gap: 80px;
  padding: 50px 0;
}
.work-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.work-card:hover { opacity: 0.85; }
.work-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card-image img { transform: scale(1.03); }
.work-card-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-card-year {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 5.6px;
  color: var(--white);
}
.work-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.14px;
  color: var(--white);
  line-height: 1.1;
}
.work-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ===========================
   ARTICLE PAGE
   =========================== */
.article-page { background: var(--dark); }

.article-page-header {
  padding: 160px 200px 80px;
  text-align: center;
}
.article-page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 68px;
  letter-spacing: -0.34px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 36px;
}
.article-page-subtitle {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.articles-list {
  padding: 0 200px 120px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 60px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.article-list-item:hover { opacity: 0.8; }
.article-list-content { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-list-label {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 5.6px;
  color: var(--white);
  opacity: 0.6;
}
.article-list-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.16px;
  color: var(--white);
  line-height: 1.2;
}
.article-list-desc {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
.article-list-image {
  width: 280px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 4px;
}
.article-list-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   FOOTER (shared CTA)
   =========================== */
.footer {
  padding: 255px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .header { padding: 16px 40px; }
  .project-row { flex-direction: column; }
  .project-row.reverse { flex-direction: column; }
  .project-section { padding: 100px 40px; }
  .project-card-section { padding: 60px 40px; }
  .project-card-dark { padding: 60px 24px; flex-direction: column; }
  .project-title { font-size: 40px; }
  .article-section { padding: 80px 40px; }
  .article-row { flex-direction: column; gap: 40px; }
  .article-title { font-size: 64px; width: 100%; }
  .banality-section { padding: 80px 40px; }
  .banality-title { font-size: 64px; }
  .gallery-section { height: auto; padding: 80px 40px; }
  .gallery-card { flex-direction: column; }
  .cta-title { font-size: 60px; }
  .about-photo { width: 280px; right: 40px; top: 160px; }
  .about-content { padding-left: 40px; }
  .work-grid { padding: 0 40px; }
  .work-header-section { padding: 120px 40px 60px; }
  .work-title { font-size: 48px; }
}

@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .nav { gap: 20px; font-size: 14px; }
  .project-row { gap: 40px; }
  .project-section { padding: 80px 24px; }
  .project-title { font-size: 32px; }
  .article-section { padding: 80px 24px; }
  .article-row { flex-direction: column; gap: 40px; }
  .article-title { font-size: 48px; }
  .banality-section { padding: 80px 24px; }
  .banality-title { font-size: 48px; }
  .cta-title { font-size: 40px; }
  .about-photo { position: relative; right: auto; top: auto; width: 100%; max-width: 320px; margin: 0 auto; }
  .about-content { padding: 120px 24px 60px; width: 100%; }
  .about-title { font-size: 56px; }
  .work-grid { padding: 0 20px; }
  .work-header-section { padding: 100px 20px 48px; }
  .work-row { flex-direction: column; gap: 40px; }
  .work-title { font-size: 36px; }
  .gallery-section { padding: 60px 20px; }
  .articles-list { padding: 0 24px 80px; }
  .article-list-item { flex-direction: column; gap: 24px; }
  .article-list-image { width: 100%; }
  .article-list-title { font-size: 24px; }
  .project-card-section { padding: 40px 24px; }
  .project-card-dark { padding: 40px 16px; }
  .article-page-title, .work-header-section .work-title { font-size: 40px; }
  .work-header-section, .article-page-header { padding: 100px 24px 60px; }
}

/* ══════════════════════════════════════
   SHARED: SEE MORE WORKS CAROUSEL
   ══════════════════════════════════════ */
.more-section {
  padding: 64px 200px 80px;
}

.more-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 28px;
}

.carr-carousel {
  position: relative;
}

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

.carr-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carr-card {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  display: block;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  background: #111;
}

.carr-card--soon {
  cursor: default;
}

.carr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.carr-card:hover img {
  transform: scale(1.05);
}

.carr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  gap: 6px;
}

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

/* Lock badge on pw-protected carousel cards */
.carr-card.pw-protected::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 2;
}

.carr-overlay span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.35;
}

.carr-overlay em {
  font-style: normal;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.carr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.carr-prev { left: 12px; }
.carr-next { right: 12px; }

.carr-btn:hover:not(:disabled) {
  color: #555;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.24);
}

.carr-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Page-specific carousel backgrounds */
.sm-page .more-section {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.sm-page .more-heading { color: #6b6b6b; }

.sgb-page .more-section {
  background: #16153B;
  border-top: none;
}
.sgb-page .more-heading { color: rgba(255, 255, 255, 0.45); }

.sp-page .more-section {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.sp-page .more-heading { color: #6b6b6b; }
