:root {
  --ink: #0a0c0f;
  --ink-2: #161a1f;
  --slate: #2c3540;
  --muted: #68727e;
  --line: #d9dee3;
  --paper: #f6f1ea;
  --panel: #ffffff;
  --panel-dark: #101419;
  --red: #a31621;
  --red-2: #d14b3f;
  --gold: #c59a45;
  --green: #1f7a65;
  --blue: #204a63;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(10, 12, 15, 0.14);
  --shadow-dark: 0 32px 100px rgba(0, 0, 0, 0.3);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.72));
  backdrop-filter: blur(22px) saturate(118%);
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}

.brand-wordmark {
  display: none;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark span {
  margin-left: 0.35rem;
  color: var(--gold);
}

.site-nav,
.footer-links,
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 10px 13px;
}

.site-nav a[aria-current="page"] {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.language-switch {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 10px;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 5px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.85rem, 5.05vw, 5.35rem);
  line-height: 0.96;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.08rem, 4.15vw, 4.55rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.16;
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  max-width: 720px;
  margin-bottom: 30px;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 19px;
  font-size: 0.92rem;
  font-weight: 820;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #9f151f, #c13a2f);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(163, 22, 33, 0.2);
}

.button.primary:hover {
  background: #85111a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.button.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: min(790px, 90vh);
  display: grid;
  align-items: end;
  padding: 134px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.95) 0%, rgba(4, 6, 8, 0.86) 33%, rgba(4, 6, 8, 0.48) 62%, rgba(4, 6, 8, 0.06) 100%),
    linear-gradient(0deg, rgba(4, 6, 8, 0.68) 0%, rgba(4, 6, 8, 0.14) 46%, rgba(4, 6, 8, 0.04) 100%),
    url("/assets/moizasia-hero-wow.jpg") center right / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.hero-copy {
  max-width: 740px;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 15, 19, 0.52);
  backdrop-filter: blur(20px) saturate(115%);
  box-shadow: var(--shadow-dark);
  padding: 24px;
}

.hero-panel-title {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metric strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  padding: 150px clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 12, 15, 0.94), rgba(17, 23, 29, 0.82)),
    url("/assets/moizasia-hero-wow.jpg") center right / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.85rem, 6vw, 6.1rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(82px, 9.5vw, 142px) clamp(20px, 5vw, 72px);
}

.hero + .section {
  padding-top: clamp(48px, 6vw, 76px);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 241, 234, 0.36)),
    #eef0ef;
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 154, 69, 0.14), transparent 28%),
    linear-gradient(135deg, #080b0f 0%, #121920 54%, #162b31 100%);
}

.section.narrow {
  max-width: 1040px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  color: var(--red);
}

.section.dark .section-head .eyebrow,
.section.dark .section-lead,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.thesis {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.46fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: stretch;
}

.thesis-copy {
  display: grid;
  align-content: center;
}

.thesis-copy h2 {
  max-width: 860px;
}

.thesis-board {
  display: grid;
  gap: 12px;
}

.board-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  border: 1px solid rgba(10, 12, 15, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 36px rgba(10, 12, 15, 0.045);
}

.board-row strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.board-row span {
  color: var(--muted);
  font-weight: 750;
}

.business-grid,
.principles-grid,
.stats-grid,
.signature-grid {
  display: grid;
  gap: 18px;
}

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

.business-card,
.principle-card,
.stat-card,
.contact-panel,
.concept-note,
.signature-card {
  border: 1px solid rgba(10, 12, 15, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
}

.business-card {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(10, 12, 15, 0.07);
}

.business-visual {
  min-height: 300px;
  background: var(--panel-dark);
}

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

.starvo-visual {
  position: relative;
  overflow: hidden;
  background: var(--panel-dark);
}

.starvo-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 7, 10, 0.7), transparent 52%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.46), rgba(5, 7, 10, 0.04) 62%);
  pointer-events: none;
}

.starvo-logo-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  width: min(45%, 188px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 13px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.starvo-logo-badge img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.business-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 32px;
}

.sector {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.legal {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

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

.stat-card {
  padding: 30px;
}

.stat-card strong {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.3vw, 4rem);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.text-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-panel .eyebrow {
  color: var(--red);
}

.image-panel {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-panel .starvo-logo-badge img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.content-stack {
  display: grid;
  gap: 46px;
}

.content-stack article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.content-stack article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.principle-card,
.signature-card {
  padding: 26px;
}

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

.signature-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.signature-card strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 22px;
}

.signature-card h3 {
  color: var(--white);
}

.business-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(10, 12, 15, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(10, 12, 15, 0.08);
}

.business-block:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
}

.business-block:nth-child(even) .business-visual {
  order: 2;
}

.business-block .business-body {
  align-self: center;
  padding: clamp(30px, 5vw, 58px);
}

.concept-note {
  margin-top: 16px;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(9, 12, 15, 0.96), rgba(9, 12, 15, 0.78)),
    url("/assets/moizasia-hero-wow.jpg") center right / cover;
  color: var(--white);
  padding: clamp(34px, 5vw, 64px);
  box-shadow: var(--shadow-dark);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 700px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  box-shadow: 0 18px 56px rgba(10, 12, 15, 0.07);
}

.contact-panel a {
  color: var(--red);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(163, 22, 33, 0.22);
  outline-offset: 2px;
}

.form-status {
  font-weight: 850;
  min-height: 1.4em;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(240px, auto);
  gap: 30px;
  align-items: start;
  background: #080a0d;
  color: var(--white);
  padding: 46px clamp(20px, 5vw, 72px);
}

.site-footer img {
  width: 184px;
  margin-bottom: 18px;
}

.site-footer p,
.footer-contact span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 850;
}

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

  .brand img {
    width: 200px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(9, 12, 15, 0.96);
    padding: 12px;
    box-shadow: var(--shadow-dark);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .section-head,
  .thesis,
  .business-grid,
  .stats-grid,
  .split,
  .principles-grid,
  .signature-grid,
  .business-block,
  .business-block:nth-child(even),
  .contact-layout,
  .site-footer,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .business-block:nth-child(even) .business-visual {
    order: 0;
  }

  .hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    padding: 12px 15px;
    gap: 10px;
  }

  .brand img {
    display: block;
    width: 170px;
  }

  .brand-wordmark {
    display: none;
  }

  .language-switch {
    gap: 2px;
  }

  .language-switch button {
    padding: 6px 7px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: min(800px, 96svh);
    padding: 102px 18px 28px;
    background-position: center right 32%;
  }

  .page-hero {
    padding: 112px 18px 48px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-panel,
  .business-body,
  .contact-panel,
  .principle-card,
  .signature-card,
  .stat-card {
    padding: 22px;
  }

  .hero-panel {
    display: none;
  }

  .hero-metric {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .image-panel,
  .image-panel img {
    min-height: 340px;
  }
}
