@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: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 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);
}

.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: 20px;
  background: #f5f5f7;
}

.hero-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.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 14px;
  color: var(--gold);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  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);
}

.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 {
  overflow: hidden;
  color: var(--dark);
  background: #ffffff;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1.25fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

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

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

/* Brand Detail Panel Left Column */
.brand-detail-panel {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: opacity 250ms ease, transform 250ms ease;
}

.detail-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.detail-category {
  display: inline-block;
  font-size: var(--text-label);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.detail-name {
  margin: 0;
  font-size: var(--text-card-title);
  font-weight: 600;
  line-height: var(--leading-heading);
  letter-spacing: -0.01em;
  color: var(--dark);
}

.detail-desc {
  margin: 0 0 18px;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--muted);
}

.detail-location-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-meta);
  font-weight: 500;
  line-height: var(--leading-meta);
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 200ms ease;
  cursor: pointer;
}

.detail-location-row:hover {
  color: var(--dark);
  text-decoration: underline;
}

.detail-location-row svg {
  flex-shrink: 0;
  stroke: var(--gold-dark);
  transition: stroke 200ms ease;
}

.detail-location-row:hover svg {
  stroke: var(--dark);
}

.detail-action-row {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.detail-link.pill-button {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
}

.ecosystem-brands-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brands-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-tab {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--dark);
  font-size: var(--text-meta);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease;
}

.filter-tab:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.filter-tab.is-active {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: #ffffff;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px 20px;
  align-items: center;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgb(197 160 89 / 30%);
  background: rgb(255 255 255 / 60%);
}

.brand-card.is-selected {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
  background: #ffffff;
  box-shadow: 0 6px 18px -4px rgb(95 46 20 / 12%);
}

.brand-card img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: filter 250ms ease, opacity 250ms ease, transform 250ms ease;
}

.brand-card:hover img,
.brand-card.is-selected img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.brand-card span {
  display: none;
}

.brand-card.is-hidden {
  display: none !important;
}
.stats-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background: var(--bg);
}

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

.stats-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

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

.contact-section {
  color: var(--paper);
  background: var(--gold);
  padding: clamp(48px, 5.5vw, 76px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.contact-grid .section-kicker {
  color: rgb(255 250 244 / 70%);
  margin-bottom: 8px;
}

.contact-grid h2 {
  color: var(--paper);
  font-size: var(--text-section-title);
  line-height: var(--leading-display);
  letter-spacing: -0.025em;
  margin: 0;
}

.contact-copy p {
  color: rgb(255 250 244 / 85%);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.contact-section .pill-button {
  border-color: rgb(255 250 244 / 45%);
  color: var(--paper);
  padding: 10px 22px;
  font-weight: 500;
  font-size: 14px;
  background: rgb(255 250 244 / 0.08%);
}

.contact-section .pill-button:hover {
  background: rgb(255 250 244 / 0.18%);
  border-color: rgb(255 250 244 / 70%);
}

.contact-section .arrow-disc {
  color: var(--gold);
  background: var(--paper);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 250 244 / 90%);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 0;
  border: 1px solid rgb(255 250 244 / 22%);
  background: rgb(255 250 244 / 0.05%);
  transition: all 250ms ease;
  text-decoration: none;
}

.contact-link:hover {
  background: rgb(255 250 244 / 0.16%);
  border-color: rgb(255 250 244 / 50%);
  color: #ffffff;
}

.contact-link svg {
  opacity: 0.8;
  transition: transform 200ms ease, opacity 200ms ease;
}

.contact-link:hover svg {
  opacity: 1;
  transform: translate(1px, -1px);
}

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

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