:root {
  --navy: #0b1f3a;
  --deep-navy: #06142a;
  --blue: #12365f;
  --gold: #b89146;
  --soft-gold: #f7efdf;
  --white: #ffffff;
  --light: #f7f9fc;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

p,
span,
small,
a,
button,
li,
input,
textarea {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.company-name,
.navlinks a,
.hero h1,
.section-head h2,
.about-card h3,
.about-summary h3,
.bod-overlay h3,
.director-modal-content h2,
.director-modal-content h4,
.business-tab strong,
.business-profile-content h3,
.project-feature h3,
.project-item h4,
.investor-card h3,
.ir-content-head h2,
.ir-box h3,
.ir-report-card h3,
.contact-strip h2,
.stat strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.6px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* TOPBAR */
.topbar {
  background: var(--deep-navy);
  color: #ffffff;
  padding: 8px 6%;
  font-size: 12px;
  font-weight: 600;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}

.logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.company-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.6px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
}

.navlinks a {
  transition: 0.2s;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.navlinks a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 8px 14px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: calc(100vh - 115px);
  display: flex;
  align-items: center;
  padding: 55px 6% 60px;
  color: #fff;
  background:
    linear-gradient(
      110deg,
      rgba(6, 20, 42, 0.88) 0%,
      rgba(11, 31, 58, 0.78) 48%,
      rgba(11, 31, 58, 0.35) 100%
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e8d39b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.22s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

/* STATS */
.stats {
  margin: -56px 6% 0;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat {
  padding: 30px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 31px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

/* SECTIONS */
section {
  padding: 92px 6%;
}

.section-head {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 44px auto;
}

.section-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
  margin: 0 auto;
}

.section-head .eyebrow {
  justify-content: center;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.about-summary {
  background: linear-gradient(180deg, var(--navy), var(--deep-navy));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.about-summary h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-summary p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.milestones {
  display: grid;
  gap: 14px;
}

.milestones div {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.milestones strong {
  display: block;
  color: #e8d39b;
  font-size: 18px;
}

.milestones span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.about-cards {
  display: grid;
  gap: 18px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.about-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--muted);
  margin: 0;
  font-weight: 400;
  line-height: 1.9;
}

/* BOARD */
.board-section {
  background: var(--light);
}

.bod-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.bod-row-top .bod-card {
  width: 330px;
}

.bod-row-bottom .bod-card {
  width: 285px;
}

.bod-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: 0.3s ease;
}

.bod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.bod-image {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  cursor: pointer;
  display: block;
}

.bod-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.bod-card:hover .bod-image img {
  transform: scale(1.05);
}

.bod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 20, 42, 0.96) 8%,
    rgba(6, 20, 42, 0.72) 45%,
    rgba(6, 20, 42, 0.12) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.bod-card:hover .bod-overlay {
  opacity: 1;
  transform: translateY(0);
}

.bod-overlay h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}

.bod-overlay p {
  color: #e8d39b;
  font-weight: 800;
  margin-bottom: 8px;
}

.bod-overlay span {
  font-size: 14px;
  opacity: 0.88;
  margin-bottom: 6px;
}

.bod-overlay small {
  font-size: 13px;
  opacity: 0.78;
}

.view-profile {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  min-width: 0;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(243, 210, 143, 0.32);
  border-radius: 999px;
  color: #f3d28f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: all 0.28s ease;
}

.bod-card:hover .view-profile {
  transform: translateY(-2px);
  background: rgba(243, 210, 143, 0.13);
  border-color: rgba(243, 210, 143, 0.52);
  box-shadow: 0 8px 18px rgba(243, 210, 143, 0.1);
}

/* DIRECTOR MODAL */
.director-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.director-modal.active {
  display: flex;
}

.director-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.78);
  backdrop-filter: blur(6px);
}

.director-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  max-height: 82vh;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.director-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.director-modal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-height: 82vh;
}

.director-modal-image {
  background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.director-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.director-modal-content {
  padding: 42px 42px 36px;
  overflow-y: auto;
  max-height: 82vh;
}

.director-modal-label {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--soft-gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.director-modal-content h2 {
  font-size: 30px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 10px;
  padding-right: 34px;
}

.director-modal-content h4 {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 18px;
}

.director-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.director-modal-meta span {
  background: #f3f6fa;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.director-modal-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* BUSINESS SECTION */
.business {
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 145, 70, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, #f7f9fc, #ffffff);
}

.business-console {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  overflow: visible;
}

.business-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 4;
}

.business-tab {
  position: relative;
  text-align: left;
  padding: 28px;
  min-height: 142px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  overflow: visible;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.business-tab span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

.business-tab strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: 0.28s ease;
}

.business-tab small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  transition: 0.28s ease;
}

.business-tab:hover,
.business-tab.active {
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  border-color: rgba(184, 145, 70, 0.42);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

.business-tab:hover strong,
.business-tab.active strong {
  color: #fff;
}

.business-tab:hover small,
.business-tab.active small {
  color: rgba(255, 255, 255, 0.74);
}

.business-tab.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29px;
  width: 31px;
  height: 82px;
  background: linear-gradient(
    90deg,
    rgba(6, 20, 42, 0.96),
    rgba(6, 20, 42, 0.82)
  );
  transform: translateY(-50%);
  border-top: 1px solid rgba(184, 145, 70, 0.26);
  border-bottom: 1px solid rgba(184, 145, 70, 0.26);
  box-shadow: 12px 0 24px rgba(15, 23, 42, 0.18);
  z-index: 6;
}

.business-profile-panel {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  padding: 48px;
  overflow: hidden;
  z-index: 2;
  background:
    radial-gradient(
      circle at top right,
      rgba(184, 145, 70, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(6, 20, 42, 0.98));
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
}

.business-profile-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(232, 211, 155, 0.14);
  pointer-events: none;
}

.business-profile-content {
  display: none;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
}

.business-profile-content.active {
  display: block;
  animation: businessFade 0.35s ease forwards;
}

@keyframes businessFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.business-profile-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(247, 239, 223, 0.08);
  border: 1px solid rgba(232, 211, 155, 0.18);
  color: #e8d39b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.business-profile-content h3 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}

.business-profile-content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

.business-profile-highlight {
  margin-top: 30px;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: rgba(247, 239, 223, 0.08);
  color: #e8d39b;
  font-weight: 900;
  font-size: 15px;
}

/* INVESTOR SECTION */
.investor {
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 145, 70, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, var(--navy), var(--deep-navy));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.investor .section-head h2 {
  color: #fff;
}

.investor .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.investor-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 28px;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.investor-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: 0.28s ease;
}

.investor-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.investor-card:hover::after {
  opacity: 1;
}

.investor-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(247, 239, 223, 0.12);
  border: 1px solid rgba(232, 211, 155, 0.22);
  color: #e8d39b;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 22px;
  transition: 0.28s ease;
}

.investor-card:hover .investor-icon {
  transform: translateY(-3px);
  background: rgba(232, 211, 155, 0.18);
}

.investor-card h3 {
  color: #e8d39b;
  margin-bottom: 12px;
  font-size: 21px;
}

.investor-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  margin-bottom: 24px;
}

.investor-card span {
  margin-top: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  opacity: 0.9;
  transition: 0.22s ease;
}

.investor-card:hover span {
  color: #e8d39b;
  transform: translateX(4px);
}

.investor-cta {
  margin-top: 34px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.investor-cta h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 6px;
}

.investor-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 720px;
}

/* INVESTOR RELATIONS PAGE */
.ir-hero {
  min-height: 520px;
  padding: 92px 6%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(
      circle at top right,
      rgba(184, 145, 70, 0.24),
      transparent 34%
    ),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.ir-hero-content {
  max-width: 760px;
}

.ir-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.ir-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 30px;
}

.ir-hero-panel {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.ir-hero-panel span {
  color: #e8d39b;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.ir-hero-panel strong {
  display: block;
  font-size: 72px;
  line-height: 1;
  color: #fff;
  margin: 16px 0;
}

.ir-hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.ir-section {
  background: #fff;
}

.ir-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ir-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: 0.28s ease;
  min-height: 255px;
  display: flex;
  flex-direction: column;
}

.ir-box:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 145, 70, 0.35);
}

.ir-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--soft-gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 22px;
}

.ir-box h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.ir-box p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
  font-weight: 400;
  line-height: 1.9;
}

.ir-box span {
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.ir-content-section {
  padding: 82px 6%;
  background: #fff;
}

.ir-content-section.alt {
  background: var(--light);
}

.ir-content-head {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
}

.ir-content-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ir-content-head h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-top: 8px;
}

.ir-document-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.ir-document {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  transition: 0.25s ease;
}

.ir-document:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  border-color: rgba(184, 145, 70, 0.35);
}

.ir-document strong {
  color: var(--navy);
  font-size: 17px;
}

.ir-document p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.ir-document > span {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.ir-info-grid,
.ir-report-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ir-info-card,
.ir-report-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}

.ir-info-card:hover,
.ir-report-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.ir-info-card span,
.ir-report-card small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ir-info-card strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  margin: 8px 0;
}

.ir-info-card p,
.ir-report-card p {
  color: var(--muted);
  margin: 0;
}

.ir-report-card h3 {
  color: var(--navy);
  font-size: 23px;
  margin: 12px 0 10px;
}

.ir-report-card span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-top: 18px;
}

.ir-policy-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ir-policy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
  transition: 0.25s ease;
}

.ir-policy:hover {
  transform: translateY(-3px);
  color: var(--gold);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

/* CONTACT */
.contact-strip {
  background: var(--soft-gold);
  margin: 80px 6%;
  border-radius: 30px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 18px 50px rgba(184, 145, 70, 0.17);
}

.contact-strip h2 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.contact-strip p {
  color: #6b5526;
  margin: 0;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.fade.show {
  opacity: 1;
  transform: none;
}

/* PROJECTS - CORPORATE MINIMAL LIST */
.projects-minimal {
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 145, 70, 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff, #f7f9fc);
}

.projects-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.projects-intro {
  position: sticky;
  top: 120px;
}

.projects-intro h2 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.projects-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.projects-summary {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.projects-summary div {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.projects-summary strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.projects-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.projects-list {
  display: grid;
  gap: 16px;
}

.project-minimal-card {
  position: relative;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: 0.28s ease;
}

.project-minimal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.project-minimal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 145, 70, 0.35);
}

.project-minimal-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-minimal-card.ongoing span {
  background: var(--soft-gold);
  color: var(--navy);
}

.project-minimal-card.completed span {
  background: #eef7f1;
  color: #247047;
}

.project-minimal-card.future span {
  background: #eef2ff;
  color: #243b7a;
}

.project-minimal-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.project-minimal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.project-minimal-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-minimal-meta small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.project-minimal-meta strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

/* CONTACT SECTION */
.contact-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 145, 70, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

.contact-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.contact-intro h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: #fff;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.contact-card-wide {
  grid-column: span 2;
}

.contact-label {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(247, 239, 223, 0.12);
  color: #e8d39b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
}

.contact-card strong {
  color: #e8d39b;
  font-weight: 900;
}

.contact-card a {
  color: #fff;
  font-weight: 800;
  transition: 0.2s ease;
}

.contact-card a:hover {
  color: #e8d39b;
}

.contact-address {
  max-width: 620px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #171717, #0f0f0f);
  color: #fff;
  padding: 36px 5% 18px;
}

.footer-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: start;
}

.footer-company {
  max-width: 360px;
}

.footer-logo {
  width: 54px;
  margin-bottom: 10px;
}

.footer-company h3 {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: #fff;
}

.footer-company p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-column span {
  display: block;
  color: #e3be6b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 9px;
  transition: 0.2s ease;
  font-size: 13px;
  font-weight: 600;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 980px) {
  .navbar {
    padding: 10px 5%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navlinks {
    position: absolute;
    top: 100%;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
  }

  .navlinks.active {
    display: flex;
  }

  .navlinks a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .navlinks a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border-radius: 0;
    text-align: left;
  }

  .company-name {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 70px 6%;
  }

  .stats,
  .about-grid,
  .investor-grid,
  .ir-dashboard,
  .ir-info-grid,
  .ir-report-grid,
  .ir-policy-grid,
  .projects-layout,
  .business-console {
    grid-template-columns: 1fr;
  }

  .project-minimal-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-intro {
    position: relative;
    top: auto;
  }

  .projects-intro h2 {
    font-size: 42px;
  }

  .business-tab.active::after {
    display: none;
  }

  .ir-hero {
    grid-template-columns: 1fr;
    padding: 72px 5%;
    gap: 24px;
    min-height: auto;
  }

  .ir-hero-panel {
    width: 100%;
    padding: 28px;
  }

  .ir-hero-panel strong {
    font-size: 54px;
  }

  .ir-hero h1 {
    font-size: 54px;
    line-height: 1;
  }

  .ir-hero p {
    font-size: 16px;
    line-height: 1.8;
  }

  .bod-row {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .bod-row-top .bod-card,
  .bod-row-bottom .bod-card {
    width: 100%;
    max-width: 360px;
  }

  .bod-image img {
    height: 430px;
    object-fit: cover;
    object-position: top center;
  }

  .bod-overlay {
    opacity: 1;
    transform: none;
  }

  .bod-card:hover {
    transform: none;
  }

  .contact-strip,
  .investor-cta,
  footer,
  .ir-content-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ir-document {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 72px 5%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: span 1;
  }

  .contact-card {
    padding: 24px;
  }

  /* =========================================
     DIRECTOR MODAL MOBILE FIX
  ========================================= */

  .director-modal {
    padding: 14px;
    align-items: center;
  }

  .director-modal-card {
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
    overflow: hidden;
    border-radius: 24px;
  }

  .director-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .director-modal-image {
    max-height: 320px;
    flex-shrink: 0;
    background: #eef2f7;
  }

  .director-modal-image img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    object-position: top center;
    display: block;
  }

  .director-modal-content {
    padding: 28px 24px 40px;
    overflow: visible;
    max-height: none;
  }

  .director-modal-content h2 {
    font-size: 28px;
    padding-right: 28px;
  }

  .director-modal-content h4 {
    font-size: 16px;
  }

  .director-modal-meta {
    gap: 8px;
  }

  .director-modal-meta span {
    font-size: 12px;
  }

  .director-modal-content p {
    font-size: 14px;
    line-height: 1.85;
  }

  .director-modal-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  /* =========================================
     FOOTER MOBILE
  ========================================= */

  .site-footer {
    padding: 42px 6% 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-company {
    max-width: 100%;
  }

  .footer-logo {
    width: 54px;
    margin-bottom: 10px;
  }

  .footer-company h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .footer-company p {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-column span {
    margin-bottom: 12px;
  }

  .footer-column a {
    margin-bottom: 10px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 16px;
    font-size: 12px;
    text-align: left;
  }
}
