@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/bebas-neue.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Comfortaa";
  src: url("assets/comfortaa.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #f8f6f2;
  --dark: #1a1a1a;
  --gold: #5f2e14;
  --gold-dark: #5f2e14;
  --gold-light: #f5ebe5;
  --gold-muted: #c7a18c;
  --line: rgb(95 46 20 / 22%);
  --muted: rgb(26 26 26 / 62%);
  --paper: #fffaf4;

  /* Typography Design Tokens */
  --text-section-title: clamp(1.575rem, 3.15vw, 3.15rem);
  --text-stat: clamp(2.5rem, 4.5vw, 4.5rem);

  --text-intro-title: clamp(1.5rem, 2.2vw, 2rem);
  --text-card-title: clamp(1.125rem, 1.4vw, 1.5rem);
  --text-section-desc: clamp(1rem, 1.2vw, 1.125rem);

  --text-body: 0.9375rem; /* 15px */
  --text-meta: 13px;
  --text-small: 13px;
  --text-label: 11px;

  --leading-display: 1.05;
  --leading-heading: 1.3;
  --leading-body: 1.7;
  --leading-meta: 1.5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--bg);
  font-family: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgb(250 247 240 / 92%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 35px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 35px;
  object-fit: contain;
}

.brand-logo.logo-brown {
  display: none;
}

.site-header.is-scrolled .brand-logo.logo-white {
  display: none;
}

.site-header.is-scrolled .brand-logo.logo-brown {
  display: block;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 0;
  background: rgb(0 0 0 / 20%);
  backdrop-filter: blur(8px);
}

.desktop-nav a {
  padding: 6px 14px;
  border-radius: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: color 300ms ease, background 300ms ease;
}

.desktop-nav a:hover {
  color: #ffffff;
  background: rgb(255 255 255 / 20%);
}

.site-header.is-scrolled .desktop-nav {
  border-color: var(--line);
  background: rgb(255 255 255 / 75%);
}

.site-header.is-scrolled .desktop-nav a {
  color: var(--dark);
}

.site-header.is-scrolled .desktop-nav a:hover {
  color: var(--gold);
  background: rgb(95 46 20 / 8%);
}

.menu-button {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
  transition: background 300ms ease, transform 240ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .menu-button span {
  background: var(--dark);
}

.menu-button.is-open span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  visibility: hidden;
  position: absolute;
  top: 64px;
  right: 20px;
  display: grid;
  min-width: 190px;
  padding: 12px;
  border: 1px solid rgb(26 26 26 / 12%);
  border-radius: 0;
  background: rgb(250 247 240 / 88%);
  box-shadow: 0 18px 50px rgb(40 25 0 / 12%);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-main {
  padding-top: 64px;
}

.hero-wrap {
  margin-top: -64px;
}

.hero3d-section {
  position: relative;
  display: flex;
  min-height: clamp(720px, 102vh, 1020px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 4vw;
  border-radius: 0;
  background: #f5f5f7;
}

.hero-album {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

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

.hero-album-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-album-slide.is-prev {
  z-index: 1;
  opacity: 1;
}

.hero-album-slide.is-active {
  z-index: 2;
  opacity: 1;
}

.hero-album-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-album-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
  transition: background 300ms ease, transform 300ms ease, border-color 300ms ease;
}

.hero-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.25);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero3d-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgb(20 12 8 / 22%);
}

.gradient-stage {
  display: none;
}

.blob-rotate,
.blob-y,
.blob-x {
  position: absolute;
  inset: 0;
}

.blob-rotate {
  animation: hero-bg-rotate-cw var(--rotate-duration) linear infinite;
}

.blob-rotate.blob-three {
  animation-name: hero-bg-rotate-ccw;
}

.blob-y {
  animation: hero-bg-drift-y var(--y-duration) ease-in-out infinite;
}

.blob-x {
  animation: hero-bg-drift-x var(--x-duration) ease-in-out infinite;
}

.blob {
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    ellipse 25% 25% at var(--blob-at),
    rgb(var(--blob-color) / var(--blob-opacity, 1)) 0%,
    rgb(var(--blob-color) / 0%) 100%
  );
}

.blob-one {
  --blob-color: 95 46 20;
  --blob-opacity: 0.5;
  --blob-at: 30% 50%;
  --x0: 25%;
  --x1: 0%;
  --y0: 0%;
  --y1: 25%;
  --x-duration: 20s;
  --y-duration: 21s;
  --rotate-duration: 17s;
}

.blob-two {
  --blob-color: 255 255 255;
  --blob-at: 30% 50%;
  --x0: -25%;
  --x1: 0%;
  --y0: 0%;
  --y1: 50%;
  --x-duration: 23s;
  --y-duration: 24s;
  --rotate-duration: 18s;
}

.blob-three {
  --blob-color: 126 72 43;
  --blob-opacity: 0.5;
  --blob-at: 50% 50%;
  --x0: 0%;
  --x1: 25%;
  --y0: 0%;
  --y1: 25%;
  --x-duration: 25s;
  --y-duration: 26s;
  --rotate-duration: 19s;
}

.blob-four {
  --blob-color: 226 204 191;
  --blob-opacity: 0.48;
  --blob-at: 57.5% 45%;
  --x0: 0%;
  --x1: -20%;
  --y0: 0%;
  --y1: 30%;
  --x-duration: 27s;
  --y-duration: 22s;
  --rotate-duration: 23s;
}

.hero-depth {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 50% at 50% 62%,
    rgb(72 50 14 / 7%),
    transparent 70%
  );
}

.eyebrow {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 24px;
  padding: 6px 16px;
  border: 1px solid var(--gold-muted);
  border-radius: 0;
  color: var(--gold-dark);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-heading {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0;
  text-align: center;
}

.heading-layer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  row-gap: 0.1em;
  column-gap: 0.32em;
  margin: 0;
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 8.4vw, 7.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.heading-base {
  color: #fff;
  text-shadow: 0 1px 12px rgb(38 24 2 / 20%);
}

.heading-shimmer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  color: transparent;
  background-image: linear-gradient(
    100deg,
    transparent 35%,
    rgb(169 119 91 / 60%) 47%,
    rgb(255 255 255 / 78%) 50%,
    rgb(169 119 91 / 60%) 53%,
    transparent 65%
  );
  background-position: 100% center;
  background-size: 250%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
}

.fonts-ready .heading-shimmer {
  animation:
    hero-heading-shimmer-reveal 10ms ease 1.73s forwards,
    hero-heading-sweep 8s linear 1.73s infinite alternate;
}

.word {
  display: inline-flex;
  white-space: nowrap;
}

.heading-base .word {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-18px);
  animation: word-enter 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--word-index) * 170ms);
}

.char {
  display: inline-block;
}

.hero-heading:hover .heading-base .char {
  animation: letter-wave 900ms ease-in-out;
  animation-delay: calc(var(--char-index) * 35ms);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .pill-button {
  gap: 16px;
  min-width: 200px;
  justify-content: space-between;
  padding: 6px 6px 6px 28px;
  border: 1px solid rgb(255 255 255 / 82%);
  color: var(--gold-dark);
  background: rgb(255 255 255 / 72%);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease;
}

.hero-actions .pill-button:hover {
  border-color: #ffffff;
  background: rgb(255 255 255 / 88%);
  color: var(--gold-dark);
}

.hero-actions .pill-button .arrow-disc {
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--gold-dark);
}

.hero-actions .pill-button:hover .arrow-disc {
  color: var(--gold-dark);
  background: #ffffff;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .pill-button {
    flex: 0 0 auto;
    min-width: 0;
    padding: 5px 5px 5px 16px;
    font-size: 11px;
    letter-spacing: 0.04em;
    gap: 8px;
    justify-content: center;
  }

  .hero-actions .pill-button .arrow-disc {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .hero-actions .pill-button .arrow-disc svg {
    width: 13px;
    height: 13px;
  }
}

.pill-button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 20px;
  border: 1px solid rgb(26 26 26 / 20%);
  border-radius: 0;
  color: var(--dark);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: border-color 300ms ease;
}

.pill-button:hover {
  border-color: rgb(26 26 26 / 60%);
}

.arrow-disc {
  display: flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: var(--bg);
  background: var(--dark);
  transition: color 300ms ease-out, background 300ms ease-out, transform 300ms ease-out;
}

.arrow-disc svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-button:hover .arrow-disc {
  color: var(--bg);
  background: var(--gold);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: #B8860B !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading {
  max-width: 740px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.intro-grid h2,
.intro-content h2,
.ecosystem-copy h2,
.sustainability-box h2,
.contact-grid h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: var(--text-section-title);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: var(--leading-display);
}

.section-desc,
.section-heading p,
.ecosystem-copy .ecosystem-desc,
.sustainability-box p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-section-desc);
  font-weight: 400;
  line-height: var(--leading-body);
}

.intro-section,
.capabilities-section,
.ecosystem-section,
.projects-section,
.stats-section,
.difference-section,
.sustainability-section,
.contact-section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
}

.intro-section {
  padding: 72px 0;
  background: var(--bg);
}

/* Overview Section */
.overview-section.minimalist {
  padding: clamp(64px, 8vw, 108px) 0;
  background: #FAF8F5 !important;
  border-bottom: 1px solid rgba(61, 31, 20, 0.08);
}

.overview-section.minimalist .overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.overview-content-col .section-kicker {
  color: #B8860B !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.overview-main-heading {
  font-family: inherit !important;
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: #3D1F14 !important;
  margin: 8px 0 20px !important;
  text-transform: none !important;
}

.overview-p1,
.overview-p2 {
  font-family: inherit !important;
  font-size: 14.5px !important;
  line-height: 1.68 !important;
  color: #5C4436 !important;
  margin: 0 0 16px !important;
}

.overview-action {
  margin-top: 24px;
}

/* Overview Album Carousel */
.overview-album {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(61, 31, 20, 0.12);
  box-shadow: 0 12px 32px rgba(61, 31, 20, 0.06);
  background: #1C100B;
  user-select: none;
}

.overview-album-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.overview-album-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.overview-album-slide.is-prev {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: none;
}

.overview-album-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.overview-album-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle Counter Badge (01 / 05) */
.overview-album-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(61, 31, 20, 0.68);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.overview-album-counter .current-idx {
  color: #FFF;
  font-weight: 700;
}

/* Minimalist Nav Arrows */
.overview-album-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.88);
  border: 1px solid rgba(61, 31, 20, 0.15);
  color: #3D1F14;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 250ms ease;
  padding: 0;
  opacity: 0.85;
}

.overview-album:hover .overview-album-nav {
  opacity: 1;
}

.overview-album-nav:hover {
  background: #3D1F14;
  color: #FAF8F5;
  border-color: #3D1F14;
}

.overview-album-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.overview-album-nav.prev-btn {
  left: 10px;
}

.overview-album-nav.next-btn {
  right: 10px;
}

.overview-media-col.mobile-only {
  display: none;
}

@media (max-width: 860px) {
  .overview-section.minimalist .overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .overview-media-col.desktop-only {
    display: none;
  }

  .overview-media-col.mobile-only {
    display: block;
    margin: 16px 0 20px;
  }
}

.intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.intro-desc {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--leading-body);
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.intro-points span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--gold-dark);
  background: rgb(95 46 20 / 5%);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-quote {
  padding: 14px 18px;
  border-left: 3px solid var(--gold-dark);
  background: rgb(95 46 20 / 4%);
}

.intro-quote p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--dark);
}

.intro-media-wrap {
  width: 100%;
}

.intro-slider {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 0;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 380px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



/* Vision, Mission & Core Values Section */
.vmv-section {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--bg, #f8f6f2);
  border-bottom: 1px solid var(--line);
}

/* Vision & Mission Top Grid */
.vmv-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

@media (max-width: 860px) {
  .hero3d-section {
    border-radius: 0;
  }

  .vmv-top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.vmv-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold, #5f2e14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vmv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.vmv-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vmv-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-light, #f5ebe5);
  color: var(--gold, #5f2e14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vmv-kicker {
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--gold, #5f2e14);
}

.vmv-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark, #1a1a1a);
}

.vmv-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-light, #555555);
}

/* Core Values Grid */
.core-values-wrapper {
  margin-top: 20px;
}

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

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.value-card {
  position: relative;
  padding: 28px 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 250ms ease;
}

.value-card:hover {
  border-color: var(--gold-muted, #c7a18c);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.value-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(95, 46, 20, 0.06);
  color: var(--gold, #5f2e14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms ease, color 250ms ease;
}

.value-card:hover .value-icon {
  background: var(--gold, #5f2e14);
  color: #ffffff;
}

.value-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-muted, #c7a18c);
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark, #1a1a1a);
  line-height: 1.35;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-light, #555555);
}

.capabilities-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-grid article {
  min-height: 260px;
  grid-column: span 2;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.capability-grid article:nth-child(4),
.capability-grid article:nth-child(5) {
  grid-column: span 3;
}

.capability-grid span,
.project-rail span,
.difference-list span,
.panel-label {
  display: block;
  margin: 0 0 28px;
  color: rgb(95 46 20 / 55%);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.card-title,
.capability-grid h3,
.project-rail h3,
.difference-list h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: var(--text-card-title);
  font-weight: 600;
  line-height: var(--leading-heading);
  letter-spacing: -0.01em;
}

.body-text,
.capability-grid p,
.project-rail p,
.difference-list p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
}

/* Ecosystem Section */
.ecosystem-section.concept-accordion {
  overflow: hidden;
  color: var(--dark);
  background: #FAF8F5;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(61, 31, 20, 0.08);
}

.ecosystem-section .section-kicker {
  color: #B8860B;
}

.ecosystem-section h2 {
  color: #3D1F14;
}

.accordion-curtain-wrapper {
  display: flex;
  gap: 12px;
  height: clamp(520px, 68vh, 640px);
  width: 100%;
  margin-top: 36px;
  overflow: hidden;
}

/* Individual Slat Column */
.slat-item {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background: #F4EFEA;
  border: 1px solid rgba(184, 134, 11, 0.18);
  transition: flex 600ms cubic-bezier(0.25, 1, 0.3, 1), border-color 400ms ease, box-shadow 400ms ease;
}

.slat-item.is-active,
.slat-item:hover {
  flex: 4;
  border-color: #B8860B;
  box-shadow: 0 16px 44px rgba(43, 24, 16, 0.22);
}

/* Background Image & Overlay */
.slat-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) contrast(1.02);
  opacity: 0.65;
  transition: transform 700ms ease, filter 500ms ease, opacity 500ms ease;
}

.slat-item.is-active .slat-bg-img,
.slat-item:hover .slat-bg-img {
  transform: scale(1.05);
  opacity: 0.88;
}

.slat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 248, 245, 0.95) 0%, rgba(244, 239, 234, 0.82) 55%, rgba(255, 255, 255, 0.55) 100%);
  z-index: 1;
  transition: background 500ms ease;
}

.slat-item.is-active .slat-overlay,
.slat-item:hover .slat-overlay {
  background: linear-gradient(145deg, rgba(20, 10, 6, 0.94) 0%, rgba(38, 20, 13, 0.86) 50%, rgba(55, 27, 17, 0.72) 100%);
}

/* Collapsed View (Vertical State) */
.slat-collapsed {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 12px;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.slat-item.is-active .slat-collapsed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.slat-collapsed-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.slat-collapsed-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.slat-toggle-icon {
  display: none;
}

.slat-num {
  font-size: 22px;
  font-weight: 700;
  color: #B8860B;
  letter-spacing: -0.02em;
  transition: color 300ms ease;
}

.slat-vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2B1810;
  transition: color 300ms ease;
}

.slat-collapsed-metric {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #B8860B;
  opacity: 1;
  text-align: center;
  writing-mode: horizontal-tb;
  transform: none;
  transition: color 300ms ease;
}

.slat-item:hover .slat-collapsed-metric {
  color: #8B6508;
}

/* Expanded View (Full Details Slat State) */
.slat-expanded {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease 150ms, visibility 400ms ease 150ms;
}

.slat-item.is-active .slat-expanded {
  opacity: 1;
  visibility: visible;
}

.slat-expanded-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slat-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slat-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #F8E2B2;
}

.slat-count {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.slat-expanded-header h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.slat-expanded-header p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  max-width: 540px;
}

.slat-evidence-line {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #F8E2B2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Key Metrics Row inside Expanded Slat */
.slat-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 12px;
}

.slat-metric-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(20, 10, 6, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 193, 120, 0.35);
  border-left: 3px solid #B8860B;
  transition: transform 250ms ease, border-color 250ms ease;
}

.slat-metric-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 193, 120, 0.7);
}

.slat-metric-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #F8E2B2;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.slat-metric-lbl {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

/* Brand Portfolio Showcase Cards inside Expanded Slat (Option A - Large Logo Showcase) */
.slat-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0;
  max-height: 380px;
  overflow-y: auto;
  padding: 4px 4px 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 134, 11, 0.4) transparent;
}

.slat-brands-grid::-webkit-scrollbar {
  width: 5px;
}

.slat-brands-grid::-webkit-scrollbar-thumb {
  background: rgba(184, 134, 11, 0.4);
  border-radius: 4px;
}

.slat-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 300ms ease,
              background 300ms ease;
  min-height: 110px;
}

.slat-brand-card:hover {
  background: #FFFFFF;
  border-color: #B8860B;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.28), 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.slat-brand-card .brand-card-logo {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.slat-brand-card img {
  max-height: 46px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: transform 300ms ease;
}

.slat-brand-card:hover img {
  transform: scale(1.08);
}

.slat-brand-card .brand-card-title {
  color: #2B1810;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  transition: color 250ms ease;
}

.slat-brand-card:hover .brand-card-title {
  color: #5F2E14;
}
}

.slat-expanded-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(248, 226, 178, 0.25);
}

.slat-location-info {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F8E2B2;
}

/* Responsive Accordion for Mobile Screens (< 860px) */
@media (max-width: 860px) {
  .accordion-curtain-wrapper {
    flex-direction: column;
    height: auto;
    gap: 12px;
    margin-top: 24px;
  }

  .slat-item {
    flex: none !important;
    height: auto;
    width: 100%;
    background: #F3EFEA;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 16px rgba(43, 24, 16, 0.06);
    transition: border-color 300ms ease, box-shadow 350ms ease, transform 200ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .slat-item.is-active {
    height: auto;
    min-height: auto;
    border-color: #B8860B;
    box-shadow: 0 12px 32px rgba(43, 24, 16, 0.22);
  }

  .slat-collapsed {
    position: relative;
    inset: auto;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-height: 64px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(247, 243, 237, 0.98);
    border-bottom: 1px solid rgba(61, 31, 20, 0.08);
    transition: background 350ms ease, border-color 350ms ease;
  }

  .slat-collapsed:active {
    background: rgba(240, 234, 226, 0.98);
  }

  .slat-item.is-active .slat-collapsed {
    background: rgba(38, 20, 13, 0.98);
    border-bottom: 1px solid rgba(248, 226, 178, 0.2);
  }

  .slat-collapsed-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .slat-num {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #B8860B;
    transition: color 300ms ease;
  }

  .slat-item.is-active .slat-num {
    color: #F8E2B2;
  }

  .slat-vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: normal;
    color: #2B1810;
    transition: color 300ms ease;
  }

  .slat-item.is-active .slat-vertical-title {
    color: #FFFFFF;
  }

  .slat-collapsed-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .slat-collapsed-metric {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #B8860B;
    white-space: nowrap;
    transition: color 300ms ease;
  }

  .slat-item.is-active .slat-collapsed-metric {
    color: #F8E2B2;
  }

  .slat-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #B8860B;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.3, 1), color 300ms ease;
  }

  .slat-item.is-active .slat-toggle-icon {
    color: #F8E2B2;
    transform: rotate(180deg);
  }

  .slat-toggle-icon svg {
    width: 18px;
    height: 18px;
  }

  .slat-expanded {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding: 0 20px;
    background: linear-gradient(160deg, rgba(20, 10, 6, 0.96) 0%, rgba(38, 20, 13, 0.92) 100%);
    transition: max-height 450ms cubic-bezier(0.25, 1, 0.3, 1), opacity 350ms ease, padding 350ms ease, visibility 350ms ease;
  }

  .slat-item.is-active .slat-expanded {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    padding: 20px 20px 24px;
  }

  .slat-expanded-header h3 {
    font-size: 20px;
  }

  .slat-expanded-header p {
    font-size: 13px;
    line-height: 1.5;
  }

  .slat-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: none;
    margin: 16px 0;
  }

  .slat-brand-card {
    padding: 12px 8px;
    min-height: 96px;
  }

  .slat-brand-card .brand-card-logo {
    height: 42px;
    margin-bottom: 6px;
  }

  .slat-brand-card img {
    max-height: 38px;
    max-width: 100px;
  }

  .slat-brand-card .brand-card-title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .slat-collapsed {
    padding: 14px 16px;
    min-height: 60px;
  }

  .slat-num {
    font-size: 16px;
  }

  .slat-vertical-title {
    font-size: 13px;
  }

  .slat-collapsed-metric {
    font-size: 10px;
  }

  .slat-expanded {
    padding: 16px 16px 20px;
  }

  .slat-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Site Footer */
.site-footer {
  background: #FAF8F5;
  padding: 40px 0;
  border-top: 1px solid rgba(61, 31, 20, 0.1);
  color: #3D1F14;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #6B5347;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #8C7365;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Contact Section */
.contact-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #FAF8F5 !important;
  color: #3D1F14 !important;
  border-top: 1px solid rgba(61, 31, 20, 0.08);
  border-bottom: 1px solid rgba(61, 31, 20, 0.08);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.contact-info-col .section-heading .section-kicker {
  color: #B8860B !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.contact-info-col .section-heading h2 {
  color: #3D1F14 !important;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
}

.contact-lead-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5C4436 !important;
  margin-top: 0;
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF !important;
  padding: 16px 20px;
  border: 1px solid rgba(61, 31, 20, 0.1) !important;
  box-shadow: 0 4px 16px rgba(61, 31, 20, 0.03);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.contact-detail-item:hover {
  transform: translateX(6px);
  border-color: rgba(184, 134, 11, 0.5) !important;
  box-shadow: 0 8px 24px rgba(61, 31, 20, 0.08);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #FAF8F5 !important;
  border: 1px solid rgba(184, 134, 11, 0.3) !important;
  color: #B8860B !important;
  flex-shrink: 0;
  transition: background 250ms ease, color 250ms ease;
}

.contact-detail-item:hover .contact-icon {
  background: #B8860B !important;
  color: #FFFFFF !important;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8860B !important;
}

.contact-detail-text p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #3D1F14 !important;
  line-height: 1.45;
}

.contact-detail-text a {
  color: #3D1F14 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

.contact-detail-text a:hover {
  color: #B8860B !important;
}

/* Contact Form Styling */
.contact-form-col {
  background: #FFFFFF !important;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(61, 31, 20, 0.12) !important;
  box-shadow: 0 16px 48px rgba(61, 31, 20, 0.08) !important;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: #3D1F14 !important;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #3D1F14 !important;
}

.required {
  color: #C85252;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: #FAF8F5 !important;
  border: 1px solid rgba(61, 31, 20, 0.18) !important;
  border-radius: 0;
  font-size: 13.5px;
  color: #2B1810 !important;
  font-family: inherit;
  transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #FFFFFF !important;
  border-color: #B8860B !important;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15) !important;
}

.contact-form-col .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #3D1F14 !important;
  color: #FFFFFF !important;
  border: 1px solid #3D1F14 !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all 300ms ease;
}

.contact-form-col .submit-btn span {
  color: #FFFFFF !important;
}

.contact-form-col .submit-btn .arrow-disc {
  background: #B8860B !important;
  color: #FFFFFF !important;
  width: 28px;
  height: 28px;
}

.contact-form-col .submit-btn:hover {
  background: #B8860B !important;
  border-color: #B8860B !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.contact-form-col .submit-btn:hover .arrow-disc {
  background: #3D1F14 !important;
  color: #FFFFFF !important;
}

.form-notice {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
}

.form-notice.is-success {
  display: block;
  color: #2E7D32;
  padding: 10px 14px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
}

.form-notice.is-error {
  display: block;
  color: #C62828;
  padding: 10px 14px;
  background: #FFEBEE;
  border: 1px solid #EF9A9A;
}

@media (max-width: 860px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-details-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  padding: clamp(56px, 7vw, 84px) 0 0;
  margin: 0;
  width: 100%;
  background: #FAF8F5;
}

.stats-banner-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.stats-banner-header .section-kicker {
  color: #B8860B !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.stats-banner-title {
  font-family: inherit !important;
  font-size: clamp(24px, 3.2vw, 36px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.28 !important;
  color: #3D1F14 !important;
  margin: 0 !important;
  text-transform: none !important;
}

.stats-banner-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  border: none;
  margin: 0;
  box-shadow: none;
}

.stats-banner-link {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.stats-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: filter 300ms ease, opacity 300ms ease;
}

.stats-banner-link:hover .stats-banner-img {
  filter: brightness(1.02);
}

.difference-section {
  background: var(--paper);
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.difference-list {
  border-top: 1px solid var(--line);
}

.difference-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.85fr) minmax(240px, 1.15fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.difference-list span,
.difference-list h3 {
  margin: 0;
}

.sustainability-section {
  padding-top: 0;
  background: var(--paper);
}

.sustainability-box {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgb(95 46 20 / 8%), rgb(255 250 244 / 92));
}

.sustainability-box h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.sustainability-box p {
  max-width: 760px;
}



@keyframes word-enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes letter-wave {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  33% {
    transform: translateY(-9px) rotate(3deg);
  }
  66% {
    transform: translateY(0) rotate(-3deg);
  }
}

@keyframes hero-heading-shimmer-reveal {
  to {
    opacity: 1;
  }
}

@keyframes hero-heading-sweep {
  from {
    background-position: 100% center;
  }
  to {
    background-position: 0% center;
  }
}

@keyframes hero-bg-drift-x {
  0%,
  100% {
    transform: translateX(var(--x0, 0%));
  }
  50% {
    transform: translateX(var(--x1, 0%));
  }
}

@keyframes hero-bg-drift-y {
  0%,
  100% {
    transform: translateY(var(--y0, 0%));
  }
  50% {
    transform: translateY(var(--y1, 0%));
  }
}

@keyframes hero-bg-rotate-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-bg-rotate-ccw {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes ecosystem-orbit {
  from {
    transform: rotate(var(--angle));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg));
  }
}

@keyframes ecosystem-node-upright {
  from {
    transform: translateX(var(--radius)) translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
  }
  to {
    transform: translateX(var(--radius)) translate(-50%, -50%) rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero3d-section {
    min-height: clamp(576px, 81.6vh, 816px);
    border-radius: 0;
  }

  .heading-base {
    text-shadow: 0 0 4px rgb(38 24 2 / 6%);
  }

  .intro-section,
  .capabilities-section,
  .ecosystem-section,
  .projects-section,
  .difference-section,
  .sustainability-section,
  .contact-section {
    padding: 64px 0;
  }

  .intro-grid,
  .section-heading.split,
  .ecosystem-grid,
  .difference-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brands-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brands-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 12px;
  }

  .ecosystem-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .intro-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .slider-track {
    height: 260px;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(4),
  .capability-grid article:nth-child(5) {
    min-height: 0;
    grid-column: auto;
  }

  .orbit-map {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 180px;
  }

  .orbit-paths {
    top: 88px;
    width: 310px;
    opacity: 0.55;
  }

  .orbit-center {
    top: 74px;
    width: 140px;
    padding: 22px;
  }

  .orbit-center span {
    display: none;
  }

  .orbit-item,
  .brand-top,
  .brand-left-top,
  .brand-right-top,
  .brand-left-bottom,
  .brand-right-bottom,
  .brand-bottom {
    position: static;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orbit-map.is-expanded .brand-top,
  .orbit-map:not(.is-collapsed) .brand-top,
  .orbit-map.is-expanded .brand-left-top,
  .orbit-map:not(.is-collapsed) .brand-left-top,
  .orbit-map.is-expanded .brand-right-top,
  .orbit-map:not(.is-collapsed) .brand-right-top,
  .orbit-map.is-expanded .brand-left-bottom,
  .orbit-map:not(.is-collapsed) .brand-left-bottom,
  .orbit-map.is-expanded .brand-right-bottom,
  .orbit-map:not(.is-collapsed) .brand-right-bottom,
  .orbit-map.is-expanded .brand-bottom,
  .orbit-map:not(.is-collapsed) .brand-bottom {
    transform: none;
  }

  .orbit-map.is-collapsed .orbit-item {
    display: none;
  }

  .orbit-node {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .project-rail {
    grid-template-columns: repeat(6, minmax(282px, 82vw));
    margin-inline: -16px;
    padding-inline: 16px;
    border-inline: 0;
  }

  .difference-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sticky-heading {
    position: static;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 40px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .intro-grid,
  .section-heading.split,
  .ecosystem-grid,
  .difference-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(4),
  .capability-grid article:nth-child(5) {
    grid-column: auto;
  }

  .difference-list article {
    grid-template-columns: 60px 1fr;
  }

  .difference-list article p {
    grid-column: 2;
  }
}

@media (max-width: 374px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand {
    height: 29px;
  }

  .brand-logo {
    height: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .blob-rotate,
  .blob-y,
  .blob-x,
  .orbit-item,
  .orbit-node,
  .heading-shimmer,
  .heading-base .word,
  .hero-heading:hover .heading-base .char {
    animation: none !important;
  }

  .heading-base .word,
  .heading-shimmer {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* ==========================================================================
   Concept Beta: Multi-Track Marquee Stream (.concept-marquee)
   ========================================================================== */

.concept-marquee {
  padding: 80px 0 90px;
  background: #FAF8F5;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.concept-marquee .ecosystem-header {
  margin-bottom: 32px;
}

/* Sharp Rectangular Category Control Deck (border-radius: 0) */
.sharp-filter-deck {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.marquee-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-bottom: 3px solid transparent;
  border-radius: 0 !important; /* Sharp square corners per user rule */
  color: #2B1810;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.marquee-filter-btn:hover {
  background: #FFFDF7;
  border-color: #B8860B;
  border-bottom-color: #B8860B;
  color: #5F2E14;
  transform: translateY(-2px);
}

.marquee-filter-btn.active {
  background: #2B1810 !important;
  color: #FFFFFF !important;
  border-color: #2B1810 !important;
  border-bottom: 3px solid #B8860B !important;
  box-shadow: 0 6px 18px rgba(43, 24, 16, 0.18);
  transform: translateY(-2px);
}

.marquee-filter-btn .btn-num {
  font-size: 11px;
  font-weight: 800;
  color: #B8860B;
  font-family: "Comfortaa", sans-serif;
  letter-spacing: -0.02em;
}

.marquee-filter-btn.active .btn-num {
  color: #F8E2B2;
}

.marquee-filter-btn .btn-title {
  font-size: 13px;
  font-weight: 600;
}

/* Full-Width Marquee Stream Wrapper */
.marquee-stream-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 16px 0;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 100%;
  padding-right: 24px;
  will-change: transform;
}

.track-left .marquee-content {
  animation: marquee-left 50s linear infinite;
}

.track-right .marquee-content {
  animation: marquee-right 50s linear infinite;
}

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

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* Marquee Brand Card (+20% Scale & Extra Spacing) */
.marquee-brand-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 24px 15px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}

.marquee-brand-card.featured-marquee {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF7 100%);
  border-color: rgba(184, 134, 11, 0.45);
  box-shadow: 0 6px 24px rgba(184, 134, 11, 0.14);
}

.marquee-brand-card:hover {
  border-color: #B8860B;
  background: #FFFFFF;
  box-shadow: 0 10px 32px rgba(184, 134, 11, 0.28), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px) scale(1.04);
  z-index: 10;
}

/* Category Filter States */
.marquee-brand-card.is-dimmed {
  opacity: 0.18;
  filter: grayscale(90%);
  transform: scale(0.95);
  pointer-events: none;
}

.marquee-brand-card.is-highlighted {
  opacity: 1;
  filter: none;
  border-color: #B8860B;
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
  transform: scale(1.05);
  z-index: 5;
}

.marquee-logo-box {
  height: 58px;
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-logo-box img {
  max-height: 50px;
  max-width: 102px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
  transition: transform 300ms ease;
}

.marquee-brand-card:hover .marquee-logo-box img {
  transform: scale(1.08);
}

.marquee-brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.marquee-brand-name {
  color: #2B1810;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.marquee-brand-card:hover .marquee-brand-name {
  color: #5F2E14;
}

.marquee-brand-tag {
  color: #B8860B;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .concept-marquee {
    padding: 60px 0 70px;
  }

  .sharp-filter-deck {
    gap: 8px;
  }

  .marquee-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .marquee-content {
    gap: 16px;
    padding-right: 16px;
  }

  .marquee-brand-card {
    padding: 12px 18px 12px 14px;
    gap: 12px;
  }

  .marquee-logo-box {
    height: 46px;
    width: 85px;
  }

  .marquee-logo-box img {
    max-height: 40px;
    max-width: 80px;
  }

  .marquee-brand-name {
    font-size: 13px;
  }

  .marquee-brand-tag {
    font-size: 10px;
  }
}

/* ==========================================================================
   Showcase Cards Carousel (.showcase-carousel-style) - Concept 3 / Reference Design
   ========================================================================== */

.showcase-carousel-style {
  padding: 80px 0 100px;
  background: #FAF8F5;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.showcase-header-center {
  text-align: center;
  margin-bottom: 36px;
}

.showcase-main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.showcase-main-title .title-light {
  font-weight: 300;
  color: #3D1F14;
  letter-spacing: -0.01em;
}

.showcase-main-title .title-bold {
  font-weight: 800;
  color: #5F2E14;
  letter-spacing: 0.04em;
  font-family: "Comfortaa", sans-serif;
}

/* Category Filter Bar */
.showcase-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.showcase-filter-btn {
  padding: 10px 22px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 0 !important; /* Sharp corners per user preference */
  color: #3D1F14;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.showcase-filter-btn:hover {
  background: #FFFDF7;
  border-color: #B8860B;
  color: #5F2E14;
  transform: translateY(-2px);
}

.showcase-filter-btn.active {
  background: #2B1810 !important;
  color: #FFFFFF !important;
  border-color: #2B1810 !important;
  border-bottom: 3px solid #B8860B !important;
  box-shadow: 0 4px 14px rgba(43, 24, 16, 0.18);
}

/* Carousel Container with Arrows */
.showcase-carousel-wrapper {
  position: relative;
  width: 100%;
}

.showcase-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: #2B1810;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease;
}

.showcase-nav-btn.prev-btn {
  left: -20px;
}

.showcase-nav-btn.next-btn {
  right: -20px;
}

.showcase-nav-btn:hover {
  background: #2B1810;
  color: #FFFFFF;
  border-color: #2B1810;
  box-shadow: 0 8px 24px rgba(43, 24, 16, 0.22);
}

.showcase-cards-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 6px 24px 6px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.showcase-cards-slider::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* Showcase Card (Matching reference photo layout) */
.showcase-card {
  flex: 0 0 360px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 350ms ease,
              opacity 300ms ease;
}

.showcase-card:hover {
  transform: none;
  border-color: rgba(184, 134, 11, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

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

/* Image Box top with rounded corners */
.showcase-img-box {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #F4EFEA;
}

.showcase-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-card:hover .showcase-img-box img {
  transform: none;
}

/* White bottom-to-top gradient overlay on image area */
.showcase-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.showcase-card:hover .showcase-img-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0) 100%);
}

/* Transparent logo placed at bottom-left corner over the white gradient (+80% scaled up) */
.showcase-card-logo-transparent {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.showcase-card-logo-transparent img {
  max-height: 68px;
  max-width: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
}

.showcase-card:hover .showcase-card-logo-transparent img {
  transform: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
}

/* Card Body Content */
.showcase-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.showcase-card-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8860B;
}

.showcase-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #2B1810;
  line-height: 1.3;
}

.showcase-card-desc {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

/* Link at bottom left: "Khám phá ↗" */
.showcase-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #B8860B;
  text-decoration: none;
  transition: color 250ms ease, transform 250ms ease;
  margin-top: auto;
}

.showcase-card-link .link-arrow {
  font-size: 16px;
  transition: transform 250ms ease;
}

.showcase-card-link:hover {
  color: #E65100;
}

.showcase-card-link:hover .link-arrow {
  transform: translate(3px, -3px);
}

@media (max-width: 860px) {
  .showcase-carousel-style {
    padding: 60px 0 70px;
  }

  .showcase-card {
    flex: 0 0 300px;
  }

  .showcase-nav-btn.prev-btn {
    left: 4px;
  }

  .showcase-nav-btn.next-btn {
    right: 4px;
  }
}

/* ==========================================================================
   Concept 1: Split-Pane Brand Inspector (.split-inspector-layout)
   ========================================================================== */

.split-inspector-layout {
  padding: 80px 0 100px;
  background: #FAF8F5;
  border-top: 1px solid var(--line);
}

.inspector-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 48px;
  align-items: start;
}

/* Left Sticky Control Deck */
.inspector-left-panel {
  position: relative;
}

.inspector-sticky-content {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inspector-main-heading {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #3D1F14;
}

.inspector-sub-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
}

/* Sharp Rectangular Category Nav Deck (border-radius: 0 !important per user rule) */
.inspector-category-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.inspector-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-left: 4px solid transparent;
  border-radius: 0 !important; /* Sharp corners per user rule */
  color: #3D1F14;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  width: 100%;
  text-align: left;
}

.inspector-nav-btn:hover {
  background: #FFFDF7;
  border-color: #B8860B;
  border-left-color: #B8860B;
  color: #5F2E14;
}

.inspector-nav-btn.active {
  background: #2B1810 !important;
  color: #FFFFFF !important;
  border-color: #2B1810 !important;
  border-left: 4px solid #B8860B !important;
  box-shadow: 0 6px 20px rgba(43, 24, 16, 0.16);
}

.inspector-nav-btn .nav-btn-code {
  font-size: 12px;
  font-weight: 800;
  color: #B8860B;
  font-family: "Comfortaa", sans-serif;
  min-width: 28px;
}

.inspector-nav-btn.active .nav-btn-code {
  color: #F8E2B2;
}

.inspector-nav-btn .nav-btn-text {
  flex-grow: 1;
  margin-left: 10px;
}

.inspector-nav-btn .nav-btn-count {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(184, 134, 11, 0.12);
  color: #B8860B;
  border-radius: 12px;
}

.inspector-nav-btn.active .nav-btn-count {
  background: rgba(248, 226, 178, 0.2);
  color: #F8E2B2;
}

.inspector-metric-card {
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-left: 3px solid #B8860B;
  border-radius: 0 !important;
  margin-top: 10px;
}

.metric-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #B8860B;
  margin-bottom: 4px;
}

.metric-card-val {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #2B1810;
  line-height: 1.4;
}

/* Right Interactive Brand Grid */
.inspector-right-panel {
  width: 100%;
}

.inspector-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.inspector-brand-card {
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: border-color 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
}

.inspector-brand-card:hover {
  border-color: rgba(184, 134, 11, 0.45);
  box-shadow: 0 10px 30px rgba(43, 24, 16, 0.08);
}

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

.card-img-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #F4EFEA;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-img-white-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.45) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.card-logo-transparent {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.card-logo-transparent img {
  max-height: 52px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.card-info-content {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-sector-tag {
  margin: 0 0 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8860B;
}

.card-brand-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #2B1810;
  line-height: 1.3;
}

.card-brand-desc {
  margin: 0 0 16px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #B8860B;
  text-decoration: none;
  transition: color 250ms ease;
  margin-top: auto;
}

.card-action-link:hover {
  color: #E65100;
}

@media (max-width: 992px) {
  .inspector-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .inspector-sticky-content {
    position: relative;
    top: 0;
  }

  .inspector-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inspector-brand-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PARADIGM 2: EDITORIAL ARCHITECTURAL JOURNAL LAYOUT STYLES (#ecosystem)
   ========================================================================== */
.editorial-journal-layout {
  background: #FAF8F5;
  padding: clamp(60px, 7vw, 100px) 0;
  border-top: 1px solid rgba(61, 31, 20, 0.08);
  border-bottom: 1px solid rgba(61, 31, 20, 0.08);
}

.ecosystem-brand-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 244, 236, 0.86) 55%, rgba(232, 239, 231, 0.82) 100%);
  border: 1px solid rgba(61, 31, 20, 0.12);
  box-shadow: 0 22px 60px rgba(61, 31, 20, 0.08);
}

.ecosystem-brand-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 134, 11, 0.18);
  pointer-events: none;
}

.ecosystem-brand-stage::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(61, 31, 20, 0.16) 0%, rgba(184, 134, 11, 0.08) 42%, transparent 68%);
  pointer-events: none;
}

.ecosystem-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
}

.ecosystem-brand-mark img {
  position: relative;
  z-index: 3;
  width: min(78%, 310px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(61, 31, 20, 0.22));
  animation: conasi-logo-float 5.8s ease-in-out infinite;
}

.brand-orbit,
.brand-pulse {
  position: absolute;
  inset: 10%;
  z-index: 1;
  border: 1px solid rgba(184, 134, 11, 0.34);
  pointer-events: none;
}

.brand-orbit-one {
  transform: rotate(10deg);
  animation: conasi-brand-orbit 14s linear infinite;
}

.brand-orbit-two {
  inset: 18%;
  border-color: rgba(61, 31, 20, 0.3);
  transform: rotate(-18deg);
  animation: conasi-brand-orbit-reverse 18s linear infinite;
}

.brand-pulse {
  inset: 25%;
  z-index: 0;
  background: radial-gradient(circle, rgba(248, 226, 178, 0.46) 0%, rgba(255, 255, 255, 0) 64%);
  border-color: rgba(255, 255, 255, 0.62);
  animation: conasi-brand-pulse 3.6s ease-in-out infinite;
}

.ecosystem-brand-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ecosystem-brand-copy .journal-main-title {
  max-width: 720px;
  font-size: clamp(32px, 4.5vw, 58px);
}

.ecosystem-brand-copy .journal-intro-p {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(15px, 1.3vw, 18px);
}

.ecosystem-brand-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.ecosystem-brand-facts div {
  min-height: 94px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(61, 31, 20, 0.12);
}

.ecosystem-brand-facts strong {
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  color: #3D1F14;
}

.ecosystem-brand-facts span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: #5C4436;
  text-transform: uppercase;
}

.ecosystem-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ecosystem-brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 31, 20, 0.18);
  color: #3D1F14;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.ecosystem-brand-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 31, 20, 0.55);
  background: #FFFFFF;
  box-shadow: 0 12px 24px rgba(61, 31, 20, 0.1);
}

.ecosystem-brand-cta.primary {
  background: #3D1F14;
  border-color: #3D1F14;
  color: #F8E2B2;
}

.ecosystem-brand-cta.primary:hover {
  background: #2B1810;
  border-color: #2B1810;
  color: #FFFFFF;
}

.journal-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(61, 31, 20, 0.12);
}

.journal-header-left {
  max-width: 620px;
}

.journal-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #B8860B;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.journal-main-title {
  font-family: inherit !important;
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 600 !important;
  color: #3D1F14 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  margin: 8px 0 0 !important;
}

.journal-header-right {
  max-width: 440px;
}

.journal-intro-p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5C4436;
  margin: 0;
}

/* Sharp Rectangular Sector Navigation Deck (border-radius: 0 !important per user global rule) */
.journal-sector-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.journal-nav-tab {
  border-radius: 0 !important;
  background: #FFFFFF;
  border: 1px solid rgba(61, 31, 20, 0.16) !important;
  padding: 12px 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3D1F14;
  cursor: pointer;
  transition: all 250ms ease;
  white-space: nowrap;
}

.journal-nav-tab:hover {
  background: rgba(61, 31, 20, 0.06);
  border-color: #3D1F14 !important;
  color: #3D1F14;
}

.journal-nav-tab.active {
  background: #3D1F14 !important;
  color: #F8E2B2 !important;
  border-color: #3D1F14 !important;
  box-shadow: 0 4px 14px rgba(61, 31, 20, 0.18);
}

/* Journal Spreads Wrapper & Cards */
.journal-spreads-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.journal-spread-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 4vw, 56px);
  background: #FFFFFF;
  border: 1px solid rgba(61, 31, 20, 0.12);
  border-radius: 0;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 8px 30px rgba(61, 31, 20, 0.04);
  transition: opacity 350ms ease, transform 350ms ease, display 350ms ease;
}

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

.spread-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.giant-sector-num {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.85;
  color: rgba(184, 134, 11, 0.22);
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  user-select: none;
  font-family: inherit;
}

.spread-header-group {
  margin-bottom: 24px;
}

.spread-kicker-gold {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #B8860B;
  display: block;
  margin-bottom: 8px;
}

.spread-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: #3D1F14;
  line-height: 1.3;
  margin: 0 0 12px;
}

.spread-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5C4436;
  margin: 0 0 20px;
}

.spread-gold-rule {
  height: 2px;
  width: 64px;
  background: linear-gradient(90deg, #B8860B 0%, rgba(184, 134, 11, 0) 100%);
}

/* Brand Directory Index List */
.spread-brand-directory {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 134, 11, 0.4) transparent;
}

.spread-brand-directory::-webkit-scrollbar {
  width: 4px;
}

.spread-brand-directory::-webkit-scrollbar-thumb {
  background: rgba(184, 134, 11, 0.4);
}

.directory-item {
  display: grid;
  grid-template-columns: 36px 1fr auto 20px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #FAF8F5;
  border: 1px solid rgba(61, 31, 20, 0.08);
  border-radius: 0;
  text-decoration: none;
  transition: all 250ms ease;
}

.directory-item:hover {
  background: #3D1F14;
  border-color: #3D1F14;
  transform: translateX(4px);
}

.directory-item .item-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.directory-item .item-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.directory-item .item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #3D1F14;
  transition: color 250ms ease;
}

.directory-item:hover .item-name {
  color: #FFFFFF;
}

.directory-item .item-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: #7A6255;
  text-align: right;
  transition: color 250ms ease;
}

.directory-item:hover .item-tag {
  color: #F8E2B2;
}

.directory-item .item-arrow {
  font-size: 14px;
  font-weight: 700;
  color: #B8860B;
  transition: color 250ms ease, transform 250ms ease;
  text-align: center;
}

.directory-item:hover .item-arrow {
  color: #F8E2B2;
  transform: translate(2px, -2px);
}

/* Feature Photo Frame */
.spread-right-col {
  display: flex;
  flex-direction: column;
}

.journal-photo-frame {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background: #2B1810;
  border: 1px solid rgba(61, 31, 20, 0.1);
}

.journal-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-photo-frame:hover img {
  transform: scale(1.05);
}

.journal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 6, 0.15) 0%, rgba(20, 10, 6, 0.82) 100%);
  pointer-events: none;
}

.journal-feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journal-feature-badge img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.journal-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.caption-location {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #F8E2B2;
  text-transform: uppercase;
}

.caption-title {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@keyframes conasi-logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.025);
  }
}

@keyframes conasi-brand-orbit {
  from {
    transform: rotate(10deg);
  }

  to {
    transform: rotate(370deg);
  }
}

@keyframes conasi-brand-orbit-reverse {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(-378deg);
  }
}

@keyframes conasi-brand-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Journal Layout Mobile Responsiveness */
@media (max-width: 992px) {
  .ecosystem-brand-stage {
    grid-template-columns: 1fr;
    padding: clamp(26px, 6vw, 42px);
  }

  .ecosystem-brand-mark {
    max-width: 360px;
  }

  .journal-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .journal-spread-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journal-photo-frame {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .ecosystem-brand-stage {
    padding: 24px;
  }

  .ecosystem-brand-stage::before {
    inset: 10px;
  }

  .ecosystem-brand-mark {
    max-width: 280px;
  }

  .ecosystem-brand-copy .journal-main-title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .ecosystem-brand-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ecosystem-brand-facts div {
    min-height: 78px;
  }

  .ecosystem-brand-actions {
    flex-direction: column;
  }

  .ecosystem-brand-cta {
    width: 100%;
  }

  .journal-sector-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .journal-sector-nav::-webkit-scrollbar {
    display: none;
  }

  .directory-item {
    grid-template-columns: 32px 1fr 16px;
  }

  .directory-item .item-tag {
    display: none;
  }
}

/* Sector Showcase variant */
.sector-showcase-layout {
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 134, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #FAF8F5 0%, #F3F6F1 52%, #FAF8F5 100%);
  padding: clamp(34px, 4.8vw, 66px) 0 12px;
  overflow: hidden;
}

.sector-showcase-layout .showcase-heading {
  position: relative;
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 16px;
  padding: 0 0 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(61, 31, 20, 0.1);
  backdrop-filter: none;
}

.sector-showcase-layout .showcase-heading::before {
  content: none;
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #3D1F14 0%, rgba(184, 134, 11, 0.72) 32%, rgba(61, 31, 20, 0) 100%);
  pointer-events: none;
}

.sector-showcase-layout .journal-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 620px;
}

.sector-showcase-layout .journal-header-right {
  display: block;
  max-width: 620px;
  margin-left: auto;
}

.sector-showcase-layout .journal-main-title {
  max-width: none;
  margin: 8px 0 0;
  color: #3D1F14 !important;
  font-family: inherit !important;
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

.sector-showcase-layout .journal-intro-p {
  margin: 0;
  color: rgba(26, 26, 26, 0.62);
  font-family: inherit !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  text-align: right;
}

.ecosystem-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  width: auto;
  margin: 0 calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(61, 31, 20, 0.06), rgba(255, 255, 255, 0.62), rgba(61, 31, 20, 0.06));
  border-top: 1px solid rgba(61, 31, 20, 0.08);
  border-bottom: 1px solid rgba(61, 31, 20, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.ecosystem-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(61, 31, 20, 0.12);
}

.ecosystem-stat:first-child {
  border-left: 0;
}

.ecosystem-stat:last-child {
  padding-right: 0;
}

.ecosystem-stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #B8860B;
  background:
    linear-gradient(135deg, rgba(184, 134, 11, 0.12), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(184, 134, 11, 0.24);
}

.ecosystem-stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-stat strong {
  display: block;
  color: #3D1F14;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.ecosystem-stats.has-counted .ecosystem-stat strong {
  animation: stat-number-pop 520ms ease both;
}

.ecosystem-stats.has-counted .ecosystem-stat:nth-child(2) strong {
  animation-delay: 80ms;
}

.ecosystem-stats.has-counted .ecosystem-stat:nth-child(3) strong {
  animation-delay: 160ms;
}

.ecosystem-stat em {
  display: block;
  margin-top: 4px;
  color: rgba(61, 31, 20, 0.82);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sector-showcase-layout .journal-kicker {
  margin: 0;
  padding: 0;
  color: #B8860B !important;
  background: transparent;
  font-size: 11px;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.sector-showcase-layout .journal-sector-nav {
  z-index: 8;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 6px;
  padding: 5px;
  overflow-x: auto;
  background: rgba(250, 248, 245, 0.88);
  border: 1px solid rgba(61, 31, 20, 0.1);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.sector-showcase-layout .journal-sector-nav::-webkit-scrollbar {
  display: none;
}

.sector-showcase-layout .journal-nav-tab {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 7px 12px;
  background: transparent;
  border-color: transparent !important;
  color: rgba(61, 31, 20, 0.74);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-showcase-layout .journal-nav-tab:hover,
.sector-showcase-layout .journal-nav-tab.active {
  background: #3D1F14 !important;
  border-color: #3D1F14 !important;
  color: #F8E2B2 !important;
}

.sector-showcase-layout .journal-spreads-wrapper {
  display: none;
}

.marquee-stream {
  position: relative;
  display: grid;
  gap: 7px;
  height: 250px;
  grid-template-rows: repeat(3, 76px);
  align-content: center;
  margin-inline: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  padding: 7px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #FAF8F5 0%, rgba(250, 248, 245, 0) 10%, rgba(250, 248, 245, 0) 90%, #FAF8F5 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(61, 31, 20, 0.08));
  border-block: 1px solid rgba(61, 31, 20, 0.08);
}

.marquee-stream::before,
.marquee-stream::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: min(12vw, 160px);
  height: 100%;
  pointer-events: none;
}

.marquee-stream::before {
  left: 0;
  background: linear-gradient(90deg, #FAF8F5, rgba(250, 248, 245, 0));
}

.marquee-stream::after {
  right: 0;
  background: linear-gradient(270deg, #FAF8F5, rgba(250, 248, 245, 0));
}

.marquee-row {
  display: flex;
  gap: 12px;
  height: 76px;
  min-width: max-content;
  cursor: grab;
  touch-action: pan-y;
  transform: translateX(var(--row-offset, 0px));
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  will-change: transform;
}

.marquee-row.is-dragging {
  cursor: grabbing;
  transition: none;
}

.marquee-row:has(.marquee-logo-card:not(.is-dimmed):hover) .marquee-track,
.marquee-row:has(.marquee-logo-card:not(.is-dimmed):focus-visible) .marquee-track,
.marquee-row.is-dragging .marquee-track,
.marquee-row.is-snapping .marquee-track,
.marquee-row.is-paused .marquee-track {
  animation-play-state: paused;
}

.marquee-row.is-snapping {
  pointer-events: none;
}

.marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  animation: marquee-stream-forward 170s linear infinite;
}

.marquee-row-two .marquee-track {
  animation-name: marquee-stream-reverse;
  animation-duration: 200s;
}

.marquee-row-three .marquee-track {
  animation-duration: 185s;
}

.marquee-logo-card {
  display: grid;
  grid-template-columns: 66px minmax(136px, 194px);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  width: 282px;
  height: 76px;
  padding: 5px 12px 5px 8px;
  color: #3D1F14;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(61, 31, 20, 0.08);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.marquee-logo-card:hover,
.marquee-logo-card:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(184, 134, 11, 0.42);
  box-shadow: 0 18px 36px rgba(61, 31, 20, 0.14);
  outline: none;
}

.marquee-logo {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 66px;
  height: 54px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(61, 31, 20, 0.08);
}

.marquee-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.marquee-name {
  align-self: end;
  overflow: hidden;
  color: #3D1F14;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marquee-category {
  align-self: start;
  margin-top: 3px;
  color: #3D1F14;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marquee-logo-card.is-hidden {
  display: none;
}

.marquee-logo-card.is-dimmed {
  opacity: 0.2;
  filter: grayscale(1) brightness(0.86);
  pointer-events: none;
}

@keyframes marquee-stream-forward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 12px));
  }
}

@keyframes marquee-stream-reverse {
  from {
    transform: translateX(calc(-100% - 12px));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes stat-number-pop {
  0% {
    opacity: 0.68;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .marquee-stream {
    margin-inline: -24px;
  }
}

@media (max-width: 640px) {
  .sector-showcase-layout {
    padding: 30px 0 0;
  }

  .sector-showcase-layout .journal-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 0 0 18px;
  }

  .sector-showcase-layout .journal-header-left {
    gap: 4px;
  }

  .sector-showcase-layout .journal-main-title {
    max-width: none !important;
    margin-top: 8px;
    font-size: clamp(26px, 3.2vw, 38px) !important;
    line-height: 1.25 !important;
  }

  .sector-showcase-layout .journal-intro-p {
    max-width: 34rem;
    color: rgba(26, 26, 26, 0.68);
    font-size: 14px;
    line-height: 1.68;
    text-align: left;
  }

  .sector-showcase-layout .journal-sector-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .sector-showcase-layout .journal-nav-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(61, 31, 20, 0.1) !important;
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .ecosystem-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 -16px;
    padding: 12px 16px;
  }

  .ecosystem-stat {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 10px;
    border-left: 0;
    border-right: 1px solid rgba(61, 31, 20, 0.1);
  }

  .ecosystem-stat:last-child {
    border-right: 0;
    padding-right: 10px;
  }

  .ecosystem-stat-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .ecosystem-stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .ecosystem-stat strong {
    font-size: 24px;
  }

  .ecosystem-stat em {
    min-height: 2.6em;
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .marquee-stream {
    height: 226px;
    grid-template-rows: repeat(3, 66px);
    gap: 6px;
    margin-inline: -16px;
    padding: 8px 0;
  }

  .marquee-row {
    height: 66px;
  }

  .marquee-track {
    gap: 8px;
    animation-duration: 150s;
  }

  .marquee-row-two .marquee-track {
    animation-duration: 176s;
  }

  .marquee-row-three .marquee-track {
    animation-duration: 164s;
  }

  .marquee-logo-card {
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 9px;
    width: min(238px, 76vw);
    height: 66px;
    padding: 5px 10px 5px 7px;
  }

  .marquee-logo {
    width: 54px;
    height: 48px;
    padding: 4px;
  }

  .marquee-name {
    font-size: 11.5px;
  }

  .marquee-category {
    font-size: 9.5px;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .sector-showcase-layout {
    padding-top: 42px;
  }

  .sector-showcase-layout .showcase-heading {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }

  .sector-showcase-layout .journal-main-title {
    max-width: none !important;
    font-size: clamp(26px, 3.2vw, 38px) !important;
    line-height: 1.25 !important;
  }

  .sector-showcase-layout .journal-intro-p {
    max-width: 42rem;
    text-align: left;
  }

  .sector-showcase-layout .journal-sector-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .sector-showcase-layout .journal-nav-tab {
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(61, 31, 20, 0.1) !important;
    text-align: center;
    white-space: normal;
  }

  .marquee-stream {
    height: 230px;
    grid-template-rows: repeat(3, 68px);
    margin-inline: -24px;
  }

  .marquee-row {
    height: 68px;
  }

  .marquee-logo-card {
    grid-template-columns: 56px minmax(0, 1fr);
    width: 252px;
    height: 68px;
  }

  .marquee-logo {
    width: 56px;
    height: 50px;
  }
}

@media (max-width: 374px) {
  .sector-showcase-layout .journal-main-title {
    font-size: clamp(26px, 3.2vw, 38px) !important;
    line-height: 1.25 !important;
  }

  .sector-showcase-layout .journal-sector-nav {
    grid-template-columns: 1fr;
  }

  .ecosystem-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .ecosystem-stat {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    padding: 0;
    border-right: 0;
  }

  .ecosystem-stat em {
    min-height: 0;
  }
}

/* ==========================================================================
   GLOBAL TEXT SCROLL REVEAL ANIMATIONS (EXCLUDING HERO BANNER)
   ========================================================================== */
.reveal-text-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-text-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-text-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

