
:root {
  /* Image Palette */
  --primary-white: #f4f4f4;       /* Base off-white / light surface */
  --accent-orange: #fb9935;       /* Warm secondary accent */
  --red:           #b90b0b;       /* Primary brand red */
  --red-dark:      #8c0909;       /* Deep red / dark states */

  /* Derived Neutrals & Tints */
  --red-soft:      #fff1f3;       /* Soft light tint derived from #B90B0B */
  --surface:       #f4f4f4;       /* Matched to off-white swatch */
  --line:          #e6e2e0;       /* Neutral border line */
  --ink:           #101216;       /* High-contrast text */
  --muted:         #687078;       /* Subtle copy */
  --dark:          #170207;       /* Dark theme panels */
  --white:         #ffffff;       /* Pure white */
  --ease:          cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--dark);
  display: grid;
  place-items: center;
  transition:
    opacity 0.55s var(--ease),
    visibility 0.55s var(--ease);
}
.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  color: #fff;
}
.loader-logo {
  width: 88px;
  height: 58px;
  margin: auto auto 18px;
  overflow: hidden;
}
.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader-line {
  width: 150px;
  height: 2px;
  background: #ffffff20;
  overflow: hidden;
}
.loader-line span {
  display: block;
  width: 55%;
  height: 100%;
  background: #ff4769;
  animation: load 1.1s var(--ease) infinite;
}
@keyframes load {
  to {
    transform: translateX(300%);
  }
}
.scroll-progress {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff4769);
}
.cursor-glow {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 0, 45, 0.09), transparent 68%);
  opacity: 0;
}
body.cursor-ready .cursor-glow {
  opacity: 1;
}
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fffffff2;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: 0.3s var(--ease);
}
.nav-shell.scrolled {
  box-shadow: 0 10px 35px #0000000d;
}
.nav-shell.nav-hidden {
  transform: translateY(-100%);
}
.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  min-width: 220px;
}
.brand-logo-wrap {
  width: 78px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-logo {
  width: 78px;
  height: 46px;
  object-fit: contain;
}
.brand-copy {
  display: block;
}
.brand-name {
  display: block;
  line-height: 1;
  font-size: 0.98rem;
}
.brand-note {
  display: block;
  margin-top: 5px;
  color: #92979c;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  line-height: 1;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 11px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;          
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 750;
  color: #4a4d50;
  line-height: 1;
}


.nav-link:after {
  content: "";
  position: absolute;
  left: 50%;  
  bottom: 2px;
  width: 0;
  height: 2px;
  bottom: 8px;
  background: var(--red);
  transform: translateX(-50%);
  transition: 0.25s var(--ease);
}

.nav-link:hover:after,
.nav-link.active:after {
 width: calc(100% - 24px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.hero-photo {
  position: absolute;
  inset: -2%;
  background:
    linear-gradient(
      90deg,
      #110005f7 0%,
      #110005d4 35%,
      #11000566 68%,
      #11000526 100%
    ),
    url("../assets/representative.png") center/cover no-repeat;
  transform: scale(1.02);
  transition: transform 1.5s var(--ease);
}
.loaded .hero-photo {
  transform: scale(1);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(#fff1 1px, transparent 1px),
    linear-gradient(90deg, #fff1 1px, transparent 1px);
  background-size: 76px 76px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.kicker,
.eyebrow {
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker {
  color: #ffb5c3;
}
.kicker:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #ffb5c3;
  vertical-align: middle;
  margin-right: 11px;
}
.eyebrow {
  color: var(--red);
}
/* .hero h2 {
  max-width: 900px;
  margin: 1rem 0 1.3rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.07em;
} */
.hero h2 .red {
  color: #f98a9ec7;
}

.hero-copy, .hero-copy1 {
  max-width: 690px;
  color: #ffffffbd;
  font-size: 1.04rem;
}

.hero-highlights {
  max-width: 1050px;
  margin: 0;
  padding-left: 1.2rem;
  color: #ffffff;
}

.hero-highlights li {
  margin-bottom: 1rem;
  padding-left: 0.2rem;
  color: #ffffffbd;
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-highlights li::marker {
  color: #ffffff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.86rem 1.25rem;
  font-weight: 800;
  transition: 0.22s var(--ease);
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px #c9002d33;
}
.btn-red:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #171717;
}
.btn-white:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
  max-width: 860px;
  border-top: 1px solid #fff2;
  padding-top: 1.25rem;
}
.hero-fact {
  min-width: 200px;
  padding: 0 1.35rem;
  border-right: 1px solid #fff1;
}
.hero-fact:first-child {
  padding-left: 0;
}
.hero-fact:last-child {
  border-right: 0;
}
.hero-fact small {
  display: block;
  color: #ffffff70;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-fact strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.section {
  padding: 100px 0;
}
.section-soft {
  background: var(--surface);
}
.section-title {
  margin: 0.55rem 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
}
.section-copy {
  color: var(--muted);
  max-width: 720px;
}
.page-hero {
  padding: 140px 0 92px;
  background: linear-gradient(135deg, #170207, #39000d);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid #fff2;
  border-radius: 50%;
  right: -170px;
  top: -220px;
  box-shadow:
    0 0 0 55px #fff00005,
    0 0 0 110px #fff00003;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  color: #ffb5c3;
}
.crumb {
  font-size: 0.72rem;
  color: #ffffff80;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.9rem, 6vw, 6rem);
  margin: 0.5rem 0 1rem;
}
.page-hero p {
  max-width: 720px;
  color: #ffffffb8;
  font-size: 1.05rem;
}
.card-clean,
.service-card,
.job-card,
.gallery-copy,
.profile {
  background: #fff;
  border: 1px solid var(--line);
}
.card-clean {
  height: 100%;
  padding: 2rem;
  transition: 0.28s var(--ease);
}
.card-clean:hover,
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px #00000012;
}
.number {
  font-weight: 850;
  color: var(--red);
  font-size: 2.8rem;
  line-height: 1;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact {
  background: #fff;
  padding: 1.3rem;
}
.fact small {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.fact strong {
  display: block;
  margin-top: 0.25rem;
}
.profile {
  border-top: 3px solid var(--red);
  box-shadow: 0 25px 65px #0000000f;
}
.profile-head {
  padding: 1.15rem 1.35rem;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.profile-body {
  padding: 0.25rem 1.35rem;
}
.profile-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 1.08rem 0;
  border-bottom: 1px solid var(--line);
}
.profile-row:last-child {
  border-bottom: 0;
}
.profile-label {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
}
.profile-value {
  font-weight: 600;
}
.dark-panel {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark-panel .container {
  position: relative;
  z-index: 1;
}
.quote {
  max-width: 850px;
  border-left: 3px solid #ff4769;
  padding-left: 1.2rem;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  line-height: 1.38;
}
.dark-panel p {
  color: #ffffffad;
}
.service-card {
  height: 100%;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.service-card h2,
.service-card h3 {
  font-size: 1.42rem;
}
.service-card p,
.service-list {
  color: var(--muted);
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}
.service-list li {
  display: flex;
  gap: 9px;
  padding: 0.62rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}
.service-list li:before {
  content: "↗";
  color: var(--red);
  font-weight: 800;
}
.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}
.support-item {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
}
.support-item:last-child {
  border-right: 0;
}
.support-item small {
  display: block;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.support-item p {
  color: var(--muted);
  font-size: 0.81rem;
  margin: 0.35rem 0 0;
}
.flow-shell {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2.35rem 1.2rem;
}
.flow-step {
  text-align: center;
  position: relative;
}
.flow-dot {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-weight: 850;
  box-shadow: 0 13px 28px #c9002d33;
}
.flow-line {
  position: absolute;
  top: 30px;
  left: 74%;
  right: -26%;
  height: 1px;
  background: #ddd;
}
.flow-step:last-child .flow-line {
  display: none;
}
.flow-step p {
  max-width: 188px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.81rem;
}
.visual-card,
.gallery-box {
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.visual-card {
  min-height: 560px;
}
.visual-card img,
.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-card img {
  min-height: 560px;
}
.gallery-box {
  height: 100%;
  min-height: 460px;
}
.gallery-box img {
  min-height: 460px;
}
.gallery-label {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: #00000085;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.7rem 0.85rem;
  font-size: 0.79rem;
}
.gallery-copy {
  height: 100%;
  min-height: 300px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 1.08rem 0;
  border-top: 1px solid var(--line);
}
.principle:last-child {
  border-bottom: 1px solid var(--line);
}
.principle-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #e8b7c0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
}
.principle span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}
.recruitment-note {
  padding: 0.9rem 1rem;
  border: 1px dashed #dfafb8;
  background: #fff8f9;
  color: #71414a;
  font-size: 0.73rem;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter {
  border: 1px solid #202326;
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 750;
  font-size: 0.8rem;
}
.filter.active,
.filter:hover {
  background: #202326;
  color: #fff;
}
.role-count {
  margin-left: auto;
  align-self: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.job-card {
  height: 100%;
  overflow: hidden;
  transition: 0.25s var(--ease);
}
.job-top {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.job-category {
  color: var(--red);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.job-title {
  font-size: 1.25rem;
  margin: 0.2rem 0;
}
.job-status {
  color: #14733c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.job-body {
  padding: 1.35rem;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 1rem;
}
.job-chip,
.skill-pill {
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  font-size: 0.69rem;
}
.job-chip {
  border: 1px solid var(--line);
  color: #575c60;
  background: #fbfbfb;
}
.skill-pill {
  background: var(--red-soft);
  color: var(--red);
  font-weight: 700;
}
.job-description {
  color: var(--muted);
  font-size: 0.82rem;
}
.job-footer {
  padding: 1rem 1.35rem;
  background: #fbfbfb;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.job-salary {
  font-size: 0.74rem;
  color: var(--muted);
}
.job-salary strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}
.job-more {
  border: 0;
  background: none;
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0;
}
.contact {
  background: var(--red);
  color: #fff;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  padding: 1.8rem;
  box-shadow: 0 25px 70px #46000c38;
}
.contact-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type {
  border-bottom: 0;
}
.contact-row small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}
.contact-actions {
  display: grid;
  gap: 10px;
}
.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.55rem;
}
footer {
  background: var(--dark);
  color: #ffffff94;
  font-size: 0.77rem;
}
.footer-inner {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: #0009;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open {
  display: flex;
}
.modal {
  width: min(820px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  box-shadow: 0 30px 100px #0006;
}
.modal-head {
  background: var(--dark);
  color: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.modal-head h3 {
  margin: 0;
}
.modal-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.modal-body {
  padding: 24px;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.modal-side {
  background: var(--surface);
  padding: 18px;
}
.modal-side p {
  margin: 0 0 16px;
}
.modal-side small {
  color: var(--muted);
}
body.modal-open {
  overflow: hidden;
}
.backtop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s var(--ease);
}
.backtop.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.backtop:hover {
  background: var(--red);
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px;
    box-shadow: 0 18px 35px #0000000d;
  }
  .nav-links.open {
    display: grid;
  }
  .nav-link {
    padding: 12px;
  }
  .nav-contact {
    margin-top: 4px;
    text-align: center;
  }
  .hero {
    min-height: 760px;
  }
  .hero-photo {
    background:
      linear-gradient(180deg, #11000555, #110005f7 76%),
      url("../assets/representative.png") center top/cover no-repeat;
  }
  .hero-fact {
    flex: 1 1 45%;
    min-width: 0;
    margin-bottom: 10px;
  }
  .hero-fact:nth-child(2) {
    border-right: 0;
  }
  .hero-fact:last-child {
    flex-basis: 100%;
    border-right: 0;
  }
  .flow-line {
    display: none;
  }
  .support-strip {
    grid-template-columns: 1fr;
  }
  .support-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-item:last-child {
    border-bottom: 0;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 76px 0;
  }
  .page-hero {
    padding: 115px 0 72px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }
  .hero-copy {
    font-size: 0.98rem;
  }
  .hero-fact {
    flex-basis: 100%;
    border-right: 0;
    padding-left: 0;
  }
  .fact-grid {
    grid-template-columns: 1fr;
  }
  .profile-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .visual-card,
  .visual-card img,
  .gallery-box,
  .gallery-box img {
    min-height: 390px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .brand {
    min-width: 0;
  }
  .brand-copy {
    display: none;
  }
  .brand-logo-wrap,
  .brand-logo {
    width: 76px;
    height: 44px;
  }
  .job-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .role-count {
    margin-left: 0;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   LANGUAGE SELECTOR — ALIGNED SEGMENTED CONTROL
   ========================================================= */
.language-selector {
  --lang-padding: 3px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  flex: 0 0 auto;
  width: 100px;
  height: 40px;
  margin-left: 8px;
  padding: var(--lang-padding);
  border: 1px solid #dfe3e6;
  border-radius: 999px;
  background: #f4f5f6;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.045),
    0 2px 7px rgba(0, 0, 0, 0.035);
  isolation: isolate;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.language-selector:hover {
  border-color: #cdd2d6;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.045),
    0 5px 14px rgba(0, 0, 0, 0.07);
}

/* Active red pill: JP is the first/primary language. */
.language-pill-bg {
  position: absolute;
  z-index: 1;
  top: var(--lang-padding);
  bottom: var(--lang-padding);
  left: var(--lang-padding);
  width: calc(50% - var(--lang-padding));
  height: calc(100% - (var(--lang-padding) * 2));
  border-radius: 999px;
  background: var(--red);
  box-shadow:
    0 4px 12px rgba(185, 11, 11, 0.24),
    0 1px 3px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.42, 0.64, 1),
    width 0.2s ease;
}

.language-btn {
  position: relative;
  z-index: 2;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #62686d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family:
    "IBM Plex Sans",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Arial,
    sans-serif;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.language-btn:hover {
  color: #15181b;
}

.language-btn:active {
  transform: scale(0.96);
  color: #ffffff;
}

.language-btn[aria-pressed="true"] {
  color: #fff;
}

.language-code {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: 800;
  line-height: 1;
}

.language-name {
  display: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.language-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.nav-shell.scrolled .language-selector {
  border-color: #d5dade;
  background: #eef0f2;
}


/* =========================================================
   LANGUAGE SELECTOR — TABLET
   ========================================================= */

@media (min-width: 901px) and (max-width: 1200px) {
  .language-selector {
    width: 138px;
    height: 38px;
    margin-left: 5px;
    padding: 3px;
  }

  .language-btn {
    height: 30px;
    font-size: 0.62rem;
  }
}


/* =========================================================
   LANGUAGE SELECTOR — MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .language-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    height: 44px;

    margin: 10px 0 0;
    padding: 3px;

    justify-content: stretch;
  }

  .language-btn {
    width: 100%;
    height: 36px;

    min-width: 0;
    padding: 0 8px;

    font-size: 0.7rem;
  }

  .language-name {
    display: inline;
    margin-left: 4px;

    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
}


@media (max-width: 420px) {
  .language-name {
    display: none;
  }

  .language-btn {
    font-size: 0.68rem;
  }
}

/* Japanese mobile adjustments */
@media (max-width: 900px) {
  html[lang="ja"] .language-btn {
    font-size: 0.68rem;
    padding: 0 6px;
  }

  html[lang="ja"] .language-name {
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  html[lang="ja"] .language-btn {
    font-size: 0.65rem;
  }
}


html[lang="ja"] body {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
html[lang="my"] body {
  font-family:
    "Myanmar Text", "Noto Sans Myanmar", "Padauk", "IBM Plex Sans", Arial,
    sans-serif;
}

/* =========================================================
   NAV ALIGNMENT FIXES FOR JAPANESE & MYANMAR
   ========================================================= */

/* Japanese: wider characters need adjusted nav-link padding */
html[lang="ja"] .nav-link {
  padding: 0 10px;
  font-size: 0.8rem;
}

/* Myanmar: taller glyphs need vertical alignment and padding adjustments */
html[lang="my"] .nav-link {
  padding: 0 10px;
  font-size: 0.8rem;
  line-height: 1.2;
}

/* Ensure nav-inner maintains alignment with longer nav-link text in JA/MY */
html[lang="ja"] .nav-inner,
html[lang="my"] .nav-inner {
  gap: 16px;
}

/* Language-specific navigation typography. */
html[lang="ja"] .language-btn,
html[lang="my"] .language-btn {
  font-size: 0.65rem;
}

@media (min-width: 901px) and (max-width: 1200px) {
  html[lang="ja"] .language-btn {
    font-size: 0.6rem;
  }
}

/* ===== Consolidated from layout-fix.css ===== */
/* =========================================================
   MGSS — layout-fix.css
   Load AFTER styles.css
   Page-wide alignment + responsive grid fixes.
   ========================================================= */

:root {
  --mgss-container: 1180px;
  --mgss-gap: 24px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.nav-inner,
.footer-inner {
  width: min(var(--mgss-container), calc(100% - 40px));
  margin-inline: auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  min-width: 0;
}

.row > .col {
  grid-column: span 6;
  min-width: 0;
}

.row.three > .col {
  grid-column: span 4;
}

.g-4 { gap: 24px; }
.g-5 { gap: 48px; }

.align-items-center {
  align-items: center;
}

.mt-2 {
  margin-top: 16px;
}

.row img,
.section-image,
.gallery-box img,
.visual-card img {
  max-width: 100%;
}

.section-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.service-card,
.card-clean,
.job-card {
  height: 100%;
}

.section {
  padding: 88px 0;
}

.nav-inner {
  min-height: 76px;
}

.footer-inner {
  width: min(var(--mgss-container), calc(100% - 40px));
}

.btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .container,
  .nav-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

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

  .row > .col {
    grid-column: span 2;
  }

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

  .row.three > .col {
    grid-column: span 1;
  }

  .row.three > .col:last-child {
    grid-column: 1 / -1;
  }

  .g-5 {
    gap: 32px;
  }

  .section-image {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 68px 0;
  }

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

  .row > .col,
  .row.three > .col,
  .row.three > .col:last-child {
    grid-column: 1 / -1;
  }

  .g-4 { gap: 18px; }
  .g-5 { gap: 26px; }

  .section-image {
    min-height: 300px;
  }
}


/* ===== Consolidated from home-carousel.css ===== */
/* =========================================================
   MGSS — home-carousel.css
   Load AFTER styles.css and layout-fix.css.
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #170207;
  transform: none !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition:
    opacity 0.85s cubic-bezier(.2,.8,.2,1),
    transform 6s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear .85s;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

/* Readability layer */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(10, 0, 4, .90) 0%,
      rgba(10, 0, 4, .76) 34%,
      rgba(10, 0, 4, .42) 68%,
      rgba(10, 0, 4, .12) 100%
    );
}

.hero-grid {
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 10;
  right: max(20px, calc((100vw - var(--mgss-container)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-carousel-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 50%;
  background: rgba(12,0,4,.55);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  background: #c9002d;
  border-color: #c9002d;
  transform: translateY(-1px);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(12,0,4,.55);
  opacity: .72;
  cursor: pointer;
  transition:
    width .25s ease,
    opacity .25s ease,
    background .25s ease;
}

.hero-carousel-dot.active {
  width: 26px;
  background: #fff;
  opacity: 1;
}

.hero-carousel-arrow:focus-visible,
.hero-carousel-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-photo::after {
    background:
      linear-gradient(
        180deg,
        rgba(10,0,4,.22) 0%,
        rgba(10,0,4,.58) 48%,
        rgba(10,0,4,.94) 100%
      );
  }

  .hero-carousel-controls {
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 700px) {
  .hero-carousel-controls {
    right: 14px;
    bottom: 14px;
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .hero-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .hero-carousel-dot.active {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity .01ms linear;
  }
}


/* ===== Consolidated from home-polish.css ===== */
/* =========================================================
   MGSS — home-polish.css
   Home-page visual corrections.
   Load LAST.
   ========================================================= */

.hero {
  min-height: 650px;
}

.hero-content {
  padding: 86px 0 100px;
  max-width: 900px;
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(3.4rem, 6.3vw, 6rem);
  line-height: .98;
}

.hero-copy {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
}

.hero-facts {
  margin-top: 34px;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.section-copy {
  font-size: .95rem;
  line-height: 1.75;
}

.section > .container > .reveal:first-child {
  max-width: 760px;
}

.service-card {
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.service-card h3 {
  margin: 18px 0 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p {
  line-height: 1.7;
  min-height: 82px;
}

.service-card .btn {
  margin-top: 10px;
}

.section-image {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.dark-panel .section-title {
  color: #fff;
}

.contact {
  padding: 82px 0;
}

.contact-button {
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 82px 0 110px;
  }

  .contact-button {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 70px 0 96px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-copy {
    font-size: .94rem;
  }

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