 :root {
  --bg: #f7f6f1;
  --surface: #ffffff;
  --surface-soft: #f0eee7;
  --ink: #15212f;
  --muted: #66717e;
  --navy: #10253b;
  --navy-2: #183c5c;
  --gold: #b68a3d;
  --gold-soft: #e9dcc1;
  --line: rgba(16, 37, 59, 0.12);
  --shadow: 0 24px 60px rgba(16, 37, 59, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Myanmar", "Manrope", sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.brand,
.site-nav,
.btn {
  font-family: "Manrope", "Noto Sans Myanmar", sans-serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.4;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 246, 241, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #314252;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(16, 37, 59, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  min-height: 100vh;
  padding-top: 154px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(182, 138, 61, 0.12), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #f4f1e9 52%, #e8edf2 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.65;
}

.hero-text {
  max-width: 760px;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 37, 59, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.56);
  color: var(--navy);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #6a4a18;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-list {
  display: grid;
  gap: 14px;
}

.focus-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}

.focus-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.focus-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.focus-item p {
  margin: 0;
  font-size: 0.9rem;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-blur-one {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 12%;
  background: rgba(182, 138, 61, 0.14);
}

.hero-blur-two {
  width: 320px;
  height: 320px;
  left: -8%;
  bottom: 0;
  background: rgba(16, 37, 59, 0.08);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 52px;
  text-align: center;
}

.content-card,
.info-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 46px rgba(16, 37, 59, 0.06);
}

.content-card p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 37, 59, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(16, 37, 59, 0.1);
}

.service-number {
  margin-bottom: 44px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  color: var(--navy);
}

.timeline {
  position: relative;
  margin-top: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 0 38px;
}

.timeline-index {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 8px var(--bg);
}

.timeline-item h3 {
  margin-top: 8px;
  color: var(--navy);
}

.timeline-item p {
  max-width: 790px;
}

.statement-section {
  background: var(--navy);
}

.statement-card {
  padding: 54px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
}

.statement-card h2,
.statement-lead {
  color: #fff;
}

.statement-lead {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
}

.statement-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.statement-copy p {
  color: rgba(255,255,255,0.72);
}

.two-column-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.check-list {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334556;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.note {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: #465362;
  font-size: 0.92rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.why-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: #6c4e20;
  font-weight: 900;
}

.why-item p {
  margin: 0;
  color: #344657;
}

.contact-section {
  padding-top: 72px;
}

.contact-card {
  padding: 56px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 0%, rgba(182, 138, 61, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card .eyebrow {
  color: #fff;
}

.contact-card p {
  max-width: 780px;
  color: rgba(255,255,255,0.76);
}

.contact-note {
  margin-top: 18px;
  font-size: 0.82rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap strong {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
}

.footer-wrap p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .statement-copy,
  .two-column-cards {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 84px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .brand-text small {
    display: none;
  }

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

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

  .service-number {
    margin-bottom: 26px;
  }

  .statement-card,
  .contact-card,
  .content-card,
  .info-card {
    padding: 28px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .timeline-index {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 6px var(--bg);
  }

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

  .btn {
    width: 100%;
  }
}
