@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;
}

/* Logo Mosaic Grid inside Expanded Slat */
.slat-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(132px, 1fr));
  gap: 12px;
  margin: 16px 0;
  max-height: 292px;
  overflow-y: auto;
  scrollbar-width: none;
}

.slat-brands-grid::-webkit-scrollbar {
  display: none;
}

.slat-brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #2B1810;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease;
}

.slat-brand-pill span {
  display: none;
}

.slat-brand-pill:hover {
  background: #FFFFFF;
  color: #3D1F14;
  border-color: #B8860B;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.slat-brand-pill img {
  height: auto;
  width: auto;
  max-width: 128px;
  max-height: 64px;
  object-fit: contain;
  filter: none;
  transition: transform 250ms ease;
}

.slat-brand-pill:hover img {
  transform: scale(1.04);
}

.slat-brand-more-pill {
  background: rgba(184, 134, 11, 0.22);
  border: 1px solid rgba(248, 226, 178, 0.5);
  color: #F8E2B2;
}

.slat-brand-more-pill:hover {
  background: #B8860B;
  color: #FFFFFF;
  border-color: #B8860B;
}

.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(3, minmax(0, 1fr));
    gap: 10px;
    max-height: none;
    margin: 16px 0;
  }

  .slat-brand-pill {
    min-height: 78px;
    padding: 12px;
  }

  .slat-brand-pill img {
    max-width: 112px;
    max-height: 54px;
  }
}

@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, minmax(0, 1fr));
    gap: 10px;
  }

  .slat-brand-pill {
    min-height: 76px;
    padding: 12px 10px;
  }

  .slat-brand-pill img {
    max-width: 118px;
    max-height: 56px;
  }
}

/* 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;
  }
}
