:root {
  color: #10271d;
  background: #ececea;
  font-family: "Myanmar Text", "Noto Sans Myanmar", "Pyidaungsu", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ececea;
  color: #10271d;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 3%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(245, 245, 242, 0.72);
  box-shadow: 0 18px 45px rgba(16, 39, 29, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand span {
  display: grid;
}

.brand strong {
  font: 800 22px/1 Arial, sans-serif;
}

.brand small {
  margin-top: 5px;
  font: 700 9px/1 Arial, sans-serif;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  min-width: 78px;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
}

nav a.active {
  background: rgba(247, 201, 0, 0.82);
}

main,
footer {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 130px 5% 8vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 105px 0 0;
  overflow: hidden;
  border-radius: 8px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 19, 0.83), rgba(7, 28, 19, 0.08));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f7c900;
  font: 800 13px/1.2 Arial, sans-serif;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 1.12;
}

.english-name {
  margin: 12px 0 28px;
  font: 700 clamp(18px, 2vw, 28px)/1.2 Arial, sans-serif;
}

.intro {
  max-width: 680px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.85;
}

.services,
.location {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5vw;
  padding: 120px 5%;
}

.section-label {
  color: #237a48;
  font: 800 13px/1.2 Arial, sans-serif;
}

.section-copy > h2,
.location h2 {
  max-width: 850px;
  margin: 0 0 60px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.3;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(16, 39, 29, 0.18);
}

.service-grid article {
  min-height: 320px;
  padding: 32px;
  border-bottom: 1px solid rgba(16, 39, 29, 0.18);
}

.service-grid article + article {
  border-left: 1px solid rgba(16, 39, 29, 0.18);
}

.service-grid span {
  color: #237a48;
  font: 700 14px/1 Arial, sans-serif;
}

.service-grid h3 {
  margin: 56px 0 22px;
  font-size: 30px;
}

.service-grid p,
.location address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.9;
  color: #42564d;
}

.location {
  align-items: end;
  margin-bottom: 80px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 39, 29, 0.08);
}

.location h2 {
  margin-bottom: 0;
}

.location a {
  align-self: end;
  justify-self: end;
  padding-bottom: 8px;
  border-bottom: 2px solid #f7c900;
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 50px 5%;
  border-top: 1px solid rgba(16, 39, 29, 0.16);
}

footer img {
  width: 58px;
}

footer p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    display: none;
  }

  nav a {
    min-width: auto;
    padding: 10px;
  }

  .hero {
    min-height: 86vh;
    padding-inline: 7%;
  }

  .hero-media {
    inset: 90px 0 0;
  }

  .services,
  .location {
    grid-template-columns: 1fr;
    padding: 82px 7%;
  }

  .section-copy > h2 {
    margin-bottom: 38px;
  }

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

  .service-grid article + article {
    border-left: 0;
  }

  .location a {
    justify-self: start;
  }

  footer {
    grid-template-columns: auto 1fr;
  }

  footer p:last-child {
    grid-column: 1 / -1;
  }
}
