:root {
  color-scheme: dark;
  --black: #060708;
  --graphite: #15191d;
  --gunmetal: #20272c;
  --steel: #9ca8b2;
  --silver: #d8e0e6;
  --white: #f7fafc;
  --blue: #00a6df;
  --blue-soft: #7bdcff;
  --line: rgba(216, 224, 230, .16);
  --amber: #d6b15f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Noto Sans Thai", "Inter", system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(6, 7, 8, .74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 8, .92);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  max-width: 210px;
  flex: 0 0 auto;
}

.site-header .brand-logo {
  flex: 0 0 168px;
  width: 168px !important;
  max-width: 168px !important;
  height: 48px !important;
  max-height: 48px !important;
  object-fit: contain;
  object-position: left center;
}

.brand strong,
.footer strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: .76rem;
  line-height: 1.2;
}

.brand strong,
.brand small {
  display: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: var(--silver);
  font-size: .92rem;
  white-space: nowrap;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover {
  color: var(--blue-soft);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.15;
}

.header-cta {
  color: #001217;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  z-index: -3;
}

.hero-image {
  object-fit: cover;
  height: 100%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, .82), rgba(6, 7, 8, .48) 46%, rgba(6, 7, 8, .10)),
    linear-gradient(0deg, rgba(6, 7, 8, .84), rgba(6, 7, 8, .10) 48%, rgba(6, 7, 8, .62));
}

.hero-content {
  width: min(900px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 110px;
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-soft);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 12px;
  color: var(--blue-soft);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: clamp(3rem, 8vw, 7.35rem);
  line-height: .98;
  font-weight: 900;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

.mobile-break {
  display: contents;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-kicker {
  margin-bottom: 6px;
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800;
}

.hero-line {
  max-width: 820px;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.28rem, 2.8vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
}

.thai-line {
  font-family: "Noto Sans Thai", "Inter", sans-serif;
}

.thai-line span {
  display: contents;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 760px;
  margin: 18px 0 8px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  font-weight: 900;
}

.hero-proof {
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 900;
}

.hero-scope,
.section-note {
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero-options div {
  min-width: 190px;
  padding: 14px 16px;
  background: rgba(21, 25, 29, .82);
  border: 1px solid var(--line);
}

.hero-options span,
.hero-options strong {
  display: block;
}

.hero-options span {
  color: var(--steel);
}

.hero-options strong {
  font-size: 1.1rem;
}

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

.button.primary {
  background: var(--blue);
  color: #001217;
  border-color: var(--blue);
}

.button.secondary {
  color: var(--white);
  background: rgba(247, 250, 252, .08);
}

.button:hover,
.header-cta:hover {
  filter: brightness(1.08);
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(6, 7, 8, .78);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 560px) minmax(0, 1fr);
  align-items: end;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.intro {
  background: var(--graphite);
}

.years {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #101316;
}

.years::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: url("assets/images/history/team-first-generation.jpg") center 38% / cover no-repeat;
  filter: grayscale(1) blur(1.6px);
  opacity: .14;
  transform: scale(1.03);
  pointer-events: none;
}

.years::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 22, .92), rgba(16, 19, 22, .66) 48%, rgba(16, 19, 22, .9)),
    linear-gradient(180deg, rgba(16, 19, 22, .78), rgba(16, 19, 22, .34) 42%, rgba(16, 19, 22, .86));
  pointer-events: none;
}

.years > * {
  position: relative;
  z-index: 1;
}

.years-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.years-statement {
  min-height: 390px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 166, 223, .22), transparent 44%),
    #07090a;
}

.years-statement strong {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: .82;
}

.years-statement span {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.years-statement p,
.years-close {
  color: var(--silver);
  line-height: 1.8;
}

.years-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.years-list span {
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--graphite);
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.years-close {
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  background: rgba(247, 250, 252, .05);
  font-size: 1.08rem;
}

.industries {
  background: #0b0e10;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.industry-panel {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.industry-panel.wide {
  grid-column: span 2;
}

.industry-panel > span {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-panel p,
.scenario-grid p {
  color: var(--silver);
  line-height: 1.7;
}

.industry-visual {
  min-height: 170px;
  border: 1px solid rgba(216, 224, 230, .18);
  background:
    linear-gradient(135deg, rgba(0, 166, 223, .22), transparent 42%),
    linear-gradient(180deg, #252d33, #080a0b);
  position: relative;
  overflow: hidden;
}

.industry-visual::before,
.industry-visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(247, 250, 252, .34);
}

.industry-visual.car::before {
  width: 70%;
  height: 34%;
  left: 14%;
  bottom: 24%;
  border-radius: 60px 80px 20px 20px;
}

.industry-visual.car::after {
  width: 12px;
  height: 12px;
  left: 24%;
  bottom: 17%;
  border-radius: 50%;
  box-shadow: 118px 0 0 rgba(247, 250, 252, .34);
}

.industry-visual.building::before {
  inset: 24px 30px;
  background:
    repeating-linear-gradient(90deg, rgba(247, 250, 252, .18) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(180deg, rgba(247, 250, 252, .16) 0 1px, transparent 1px 30px);
}

.industry-visual.furniture::before {
  width: 68%;
  height: 42%;
  left: 16%;
  bottom: 24%;
  border-radius: 2px;
}

.industry-visual.furniture::after {
  width: 58%;
  height: 16px;
  left: 21%;
  top: 36%;
  border-left: 0;
  border-right: 0;
}

.industry-visual.commercial::before {
  width: 72%;
  height: 46%;
  left: 14%;
  top: 22%;
}

.industry-visual.commercial::after {
  width: 48%;
  height: 7px;
  left: 26%;
  top: 45%;
  background: var(--blue);
  border: 0;
}

.industry-visual.fleet::before {
  width: 34%;
  height: 30%;
  left: 10%;
  bottom: 28%;
  box-shadow: 34vw 0 0 -2px rgba(247, 250, 252, .1), 22vw 0 0 -2px rgba(247, 250, 252, .1);
}

.industry-visual.fleet::after {
  width: 78%;
  height: 2px;
  left: 11%;
  bottom: 22%;
  background: var(--blue);
  border: 0;
}

.industry-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid rgba(216, 224, 230, .18);
  background: #080a0b;
}

.industry-panel.wide .industry-photo {
  height: 220px;
}

.work-with {
  background: #101316;
}

.wrapped-proof {
  background: var(--black);
  padding-top: clamp(46px, 6.5vw, 84px);
  padding-bottom: clamp(46px, 6.5vw, 84px);
}

.wrapped-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.wrapped-grid article {
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  background: #0b0e10;
  border-radius: 8px;
  text-align: center;
}

.wrapped-grid strong {
  font-family: "Inter", sans-serif;
  font-size: .92rem;
  line-height: 1.25;
}

.wrapped-grid p {
  max-width: 150px;
  margin: 0;
  color: var(--steel);
  font-family: "Inter", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-icon {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(123, 220, 255, .78);
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(247, 250, 252, .58);
}

.icon-car {
  border-radius: 36px 48px 14px 14px;
  height: 38px;
}

.icon-car::before,
.icon-car::after,
.icon-fleet::before,
.icon-fleet::after {
  width: 10px;
  height: 10px;
  bottom: -10px;
  border-radius: 50%;
}

.icon-car::before,
.icon-fleet::before {
  left: 10px;
}

.icon-car::after,
.icon-fleet::after {
  right: 10px;
}

.icon-building::before {
  inset: 10px 15px;
  background:
    repeating-linear-gradient(90deg, rgba(247, 250, 252, .22) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(180deg, rgba(247, 250, 252, .2) 0 1px, transparent 1px 12px);
}

.icon-furniture {
  height: 44px;
  border-radius: 2px;
}

.icon-furniture::before {
  width: 72px;
  left: -6px;
  bottom: -14px;
}

.icon-retail::before {
  width: 74px;
  height: 18px;
  left: -7px;
  top: 10px;
  border-radius: 0 0 16px 16px;
}

.icon-commercial::before {
  width: 42px;
  height: 8px;
  left: 9px;
  top: 26px;
  background: var(--blue);
  border: 0;
}

.icon-fleet {
  width: 78px;
  height: 36px;
}

.icon-custom {
  transform: rotate(45deg);
}

.icon-custom::before {
  inset: 12px;
  transform: rotate(45deg);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.scenario-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #080a0b;
  border-radius: 8px;
}

.scenario-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  background: var(--blue);
  color: #001217;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  max-width: 1240px;
  margin: 0 auto;
}

.intro-grid p,
.contact-copy p,
.panel p {
  color: var(--silver);
  font-size: 1.08rem;
  line-height: 1.8;
}

.intro-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-grid li,
.pill-row span {
  padding: 13px 14px;
  background: rgba(247, 250, 252, .06);
  border: 1px solid var(--line);
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.factory-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 34px auto 0;
}

.factory-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.services {
  background: var(--black);
  padding-top: clamp(40px, 5vw, 68px);
  padding-bottom: clamp(40px, 5vw, 68px);
}

.mid-cta {
  background:
    linear-gradient(90deg, rgba(0, 166, 223, .14), transparent 52%),
    #0b0e10;
}

.mid-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(0, 166, 223, .42);
  background: rgba(6, 7, 8, .72);
}

.mid-cta-card h2 {
  margin-bottom: 12px;
}

.mid-cta-card p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--silver);
  line-height: 1.75;
}

.why {
  background: #11161a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #080a0b;
  border-radius: 8px;
}

.why-grid article:first-child {
  grid-column: span 2;
  border-color: rgba(0, 166, 223, .48);
}

.why-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: 1.06rem;
}

.why-grid p {
  color: var(--silver);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  min-height: 282px;
  padding: 18px;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.service-card p {
  min-height: 60px;
  color: var(--steel);
  line-height: 1.58;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--steel);
}

dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.service-card dl div {
  grid-template-columns: 66px 1fr;
  gap: 8px;
  padding: 6px 0;
}

.service-card dt,
.service-card dd {
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
}

.panel {
  min-height: 360px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
}

.dark-panel {
  background: #0b0e10;
}

.light-panel {
  background: var(--silver);
  color: #101316;
}

.light-panel .eyebrow,
.light-panel p {
  color: #31414a;
}

.proshop {
  background:
    linear-gradient(180deg, rgba(0, 166, 223, .12), transparent 42%),
    #080a0b;
}

.proshop-materials {
  margin-top: clamp(30px, 4.5vw, 56px);
}

.proshop .panel {
  min-height: 300px;
}

.proshop-products-heading {
  max-width: 1240px;
  margin: clamp(32px, 5vw, 58px) auto 16px;
}

.proshop-products-heading h3 {
  margin-bottom: 0;
  color: var(--white);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.proshop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.proshop-grid article {
  min-height: 390px;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 166, 223, .12), transparent 42%),
    var(--graphite);
  border-radius: 8px;
}

.proshop-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  background: #050607;
}

.proshop-grid span {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 900;
}

.proshop-grid h3 {
  margin-bottom: 0;
  color: var(--white);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.2;
}

.proshop-grid p {
  margin-bottom: 0;
  color: var(--silver);
  line-height: 1.7;
}

.proshop-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1240px;
  margin: 28px auto 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workflow {
  background: #11161a;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline li {
  min-height: 190px;
  padding: 22px;
  background: #090b0d;
}

.timeline strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
}

.timeline span {
  color: var(--silver);
  line-height: 1.65;
}

.featured-project {
  background:
    linear-gradient(180deg, #11161a, rgba(8, 10, 11, .96)),
    var(--black);
}

.project-case {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.project-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 166, 223, .34);
  background: #0b0e10;
  border-radius: 8px;
}

.project-summary h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.project-summary > p:last-of-type {
  margin-bottom: 0;
  color: var(--silver);
  font-size: 1.02rem;
  line-height: 1.8;
}

.project-facts {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(247, 250, 252, .04);
}

.project-facts strong {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-facts span {
  color: var(--white);
  font-weight: 800;
  line-height: 1.45;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.project-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card figcaption {
  display: grid;
  gap: 7px;
  padding: 17px 18px 19px;
}

.project-card span {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card strong {
  color: var(--white);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.project-card p {
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.6;
}

.ecosystem {
  background:
    linear-gradient(180deg, rgba(0, 166, 223, .13), transparent 42%),
    var(--black);
}

.ecosystem-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  grid-template-rows: repeat(5, 82px);
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  background: rgba(0, 166, 223, .58);
  pointer-events: none;
}

.ecosystem-map::before {
  top: 41px;
  bottom: 41px;
  left: 50%;
  width: 2px;
}

.ecosystem-map::after {
  top: calc(82px + 12px + 41px);
  left: 14%;
  right: 14%;
  height: 2px;
}

.map-node {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--graphite);
  color: var(--silver);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
  text-align: center;
}

.map-node strong {
  font-family: "Inter", sans-serif;
}

.map-node span {
  color: var(--steel);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
}

.map-node.center span {
  color: rgba(0, 18, 23, .72);
}

.map-node.center {
  grid-column: 2;
  grid-row: 2;
  background: var(--blue);
  color: #001217;
}

.map-node.top {
  grid-column: 2;
  grid-row: 1;
  border-color: var(--amber);
  color: var(--white);
}

.map-node.left {
  grid-column: 1;
  grid-row: 2;
}

.map-node.right {
  grid-column: 3;
  grid-row: 2;
}

.map-node.lower {
  grid-column: 2;
  grid-row: 3;
}

.map-node.bottom {
  grid-column: 2;
  grid-row: 5;
  background: #080a0b;
}

.gallery {
  background: #11161a;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

figure {
  min-width: 0;
  margin: 0;
  background: var(--graphite);
  border: 1px solid var(--line);
}

.photo-slot img,
.photo-slot div {
  height: 220px;
}

.photo-slot img {
  width: 100%;
  object-fit: cover;
}

.photo-slot div {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 166, 223, .16), transparent 40%),
    repeating-linear-gradient(45deg, rgba(216, 224, 230, .06) 0 1px, transparent 1px 16px),
    #0b0e10;
  color: rgba(216, 224, 230, .52);
  font-family: "Inter", sans-serif;
  font-size: .85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

figcaption {
  padding: 14px;
  color: var(--silver);
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.gallery-subtitle {
  margin: -22px 0 0;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  background: var(--graphite);
  padding-bottom: clamp(96px, 10vw, 136px);
}

.contact-copy,
.contact-form {
  max-width: 620px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 166, 223, .42);
  background: rgba(247, 250, 252, .05);
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .88rem;
  font-weight: 900;
}

.contact-map {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-map iframe {
  width: 100%;
  height: clamp(360px, 32vw, 420px);
  border: 1px solid rgba(0, 166, 223, .34);
  background: #07090a;
}

.contact-map .button {
  justify-self: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 780px;
}

.contact-form label:nth-last-of-type(-n+3),
.contact-form button {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 224, 230, .28);
  background: #07090a;
  color: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr 1fr;
  align-items: start;
  gap: 28px;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background: #050607;
  color: var(--steel);
}

.footer p {
  margin: 0;
  line-height: 1.75;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: .92rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: var(--silver);
  font-weight: 800;
}

.footer-brand {
  color: var(--white);
}

.footer-logo {
  width: 170px;
  max-width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p + p {
  margin-top: 10px;
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 50;
  display: grid;
  gap: 8px;
  width: min(210px, calc(100vw - 28px));
}

.floating-contact__item {
  display: grid;
  gap: 2px;
  padding: 11px 13px;
  border: 1px solid rgba(123, 220, 255, .5);
  background: rgba(6, 7, 8, .9);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.floating-contact__item span {
  color: var(--blue-soft);
  font-family: "Inter", sans-serif;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-contact__item strong {
  font-size: .92rem;
  line-height: 1.15;
}

.floating-contact__item.line {
  background: linear-gradient(135deg, rgba(0, 166, 223, .96), rgba(0, 108, 145, .9));
  color: #001217;
  border-color: var(--blue);
}

.floating-contact__item.line span {
  color: rgba(0, 18, 23, .72);
}

.founder-mark {
  color: rgba(216, 224, 230, .22);
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .section-heading,
  .years-layout,
  .intro-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .industry-grid,
  .scenario-grid,
  .wrapped-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .years-list,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-panel.wide {
    grid-column: span 2;
  }

  .project-case {
    grid-template-columns: 1fr;
  }

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

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .mid-cta-card {
    grid-template-columns: 1fr;
  }

  .mid-cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 112px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    max-width: 136px;
  }

  .site-header .brand-logo {
    flex-basis: 136px;
    width: 136px !important;
    max-width: 136px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 132px;
  }

  h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.9rem);
    line-height: 1.03;
    word-break: normal;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 7, 8, .76), rgba(6, 7, 8, .44) 58%, rgba(6, 7, 8, .18)),
      linear-gradient(0deg, rgba(6, 7, 8, .88), rgba(6, 7, 8, .18) 48%, rgba(6, 7, 8, .68));
  }

  .mobile-break {
    display: block;
  }

  .hero-scope {
    font-size: .92rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .hero-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 12px 0 8px;
    font-size: .96rem;
  }

  .hero-proof {
    font-size: .98rem;
    line-height: 1.35;
  }

  .thai-line {
    font-size: clamp(1.12rem, 5.4vw, 1.32rem);
    line-height: 1.18;
    overflow-wrap: normal;
  }

  .thai-line span {
    display: block;
  }

  .hero-options,
  .hero-actions {
    flex-direction: column;
  }

  .hero-options {
    margin: 18px 0;
  }

  .hero-options div,
  .button {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 42px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-grid,
  .proshop-grid,
  .project-gallery,
  .years-layout,
  .years-list,
  .industry-grid,
  .scenario-grid,
  .wrapped-grid,
  .why-grid,
  .timeline,
  .gallery-row,
  .factory-media,
  .intro-grid ul,
  .footer,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .industry-panel.wide,
  .contact-form label:nth-last-of-type(-n+3),
  .contact-form button {
    grid-column: auto;
  }

  .industry-panel,
  .scenario-grid article,
  .why-grid article {
    min-height: auto;
  }

  .industry-photo,
  .industry-panel.wide .industry-photo,
  .project-card img,
  .factory-media img,
  .photo-slot img,
  .photo-slot div {
    height: 230px;
  }

  .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-links a {
    justify-content: center;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-map .button {
    width: 100%;
  }

  .years-statement {
    min-height: 280px;
  }

  .why-grid article:first-child {
    grid-column: auto;
  }

  .mid-cta-card {
    padding: 22px;
  }

  .mid-cta-card .button {
    width: 100%;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .floating-contact__item {
    min-height: 56px;
    justify-items: center;
    align-content: center;
    padding: 8px 6px;
    text-align: center;
  }

  .floating-contact__item span {
    font-size: .62rem;
  }

  .floating-contact__item strong {
    font-size: .76rem;
    overflow-wrap: anywhere;
  }

  .ecosystem-map {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .ecosystem-map::before,
  .ecosystem-map::after {
    display: none;
  }

  .map-node,
  .map-node.top,
  .map-node.left,
  .map-node.center,
  .map-node.right,
  .map-node.lower,
  .map-node.bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: auto;
  }

  .proshop-grid article {
    min-height: 360px;
  }

  .proshop-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer,
  .footer > p {
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }
}
