:root {
  --green-950: #043b23;
  --green-900: #07532f;
  --green-800: #0a663a;
  --green-700: #0c7a46;
  --green-600: #149257;
  --lime: #c8df69;
  --lime-soft: #eef5cf;
  --cream: #fbfcf7;
  --paper: #ffffff;
  --ink: #18231d;
  --muted: #647168;
  --line: #dfe8e1;
  --shadow: 0 18px 50px rgba(4,59,35,.10);
  --shadow-sm: 0 9px 26px rgba(4,59,35,.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,input,textarea,select {
  font: inherit;
}

.container {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}

.utility-bar {
  background: var(--green-950);
  color: #dfeee5;
  font-size: 13px;
}

.utility-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-left,.utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-right a:hover {
  color: #fff;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.site-header {
  background: rgba(7,83,47,.97);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.45);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: .1px;
}

.brand span {
  display: block;
  color: #dcebd5;
  font-size: 13px;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav>a {
  color: #edf7f1;
  font-weight: 650;
  font-size: 14px;
  position: relative;
}

.main-nav>a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transition: .25s;
}

.main-nav>a:hover:after,.main-nav>a.active:after {
  right: 0;
}

.main-nav>a.active {
  color: #fff;
}

.nav-cta {
  background: var(--lime);
  color: var(--green-950) !important;
  padding: 12px 18px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
}

.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("assets/images/hero-climate.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(2,32,18,.90) 0%,rgba(2,32,18,.62) 45%,rgba(2,32,18,.12) 78%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto -15% -52% 44%;
  height: 650px;
  background: radial-gradient(circle,rgba(200,223,105,.17),transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 90px 0 128px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #e9f5c3;
  margin-bottom: 18px;
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--lime);
}

.hero h1 {
  font-size: clamp(46px,6.2vw,78px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.hero p {
  font-size: 19px;
  max-width: 620px;
  color: #edf5ef;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s;
}

.btn-primary {
  background: var(--lime);
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(0,0,0,.20);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.14);
}

.impact-wrap {
  position: relative;
  z-index: 5;
  margin-top: -72px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impact-item {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.impact-item:last-child {
  border-right: 0;
}

.impact-number {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: var(--green-800);
  letter-spacing: -.02em;
}

.impact-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 70px 0;
}

.section-soft {
  background: #f1f6f2;
}

.section-dark {
  background: var(--green-950);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}

.kicker {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 900;
  margin-bottom: 10px;
}

.section-dark .kicker {
  color: var(--lime);
}

h2 {
  font-size: clamp(34px,4.1vw,52px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--green-950);
}

.section-dark h2 {
  color: #fff;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.section-dark .lead {
  color: #d7e7dc;
}

.prose {
  color: #4f5f55;
  font-size: 16px;
}

.prose p+p {
  margin-top: 16px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.feature-body {
  padding: 26px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--lime-soft);
  display: grid;
  place-items: center;
  color: var(--green-800);
  font-size: 22px;
  margin-top: -48px;
  position: relative;
  border: 4px solid #fff;
}

.feature-card h3 {
  color: var(--green-900);
  font-size: 21px;
  margin: 14px 0 9px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.image-frame:after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--lime);
  border-radius: 28px;
  z-index: -1;
}

.check-list {
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime-soft);
  color: var(--green-800);
  font-weight: 900;
  font-size: 12px;
}

.project-preview {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
}

.project-large,.project-small {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-sm);
}

.project-small {
  min-height: 218px;
}

.project-stack {
  display: grid;
  gap: 24px;
}

.project-large img,.project-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-large:after,.project-small:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 35%,rgba(3,46,26,.86));
}

.project-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}

.project-caption small {
  color: #d7efb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-caption h3 {
  font-size: 26px;
  line-height: 1.15;
  margin-top: 6px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
}

.gallery-strip a {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s;
}

.gallery-strip a:hover img {
  transform: scale(1.05);
}

.cta-band {
  background: linear-gradient(135deg,var(--green-900),var(--green-700));
  border-radius: 28px;
  padding: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
  font-size: 38px;
}

.cta-band p {
  color: #d8eadf;
  max-width: 670px;
  margin-top: 10px;
}

.cta-band .btn {
  flex-shrink: 0;
}

.page-hero {
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("assets/images/hero-climate.jpg") center 54%/cover no-repeat;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,48,27,.89),rgba(3,48,27,.38));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(44px,6vw,68px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.breadcrumbs {
  font-size: 13px;
  margin-top: 16px;
  color: #e2efe7;
}

.breadcrumbs a {
  color: var(--lime);
}

.chairman-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.chairman-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.quote-mark {
  font-size: 70px;
  line-height: .7;
  color: var(--lime);
  font-family: Georgia,serif;
}

.chairman-card h3 {
  font-size: 28px;
  color: var(--green-900);
  margin: 12px 0 3px;
}

.role {
  color: var(--green-700);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top;
}

.team-meta {
  padding: 20px;
}

.team-meta h3 {
  color: var(--green-900);
  font-size: 20px;
}

.team-meta p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.sector {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 750;
  color: var(--green-950);
}

.sector span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime-soft);
  display: grid;
  place-items: center;
  color: var(--green-800);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.doc-card img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #f7f7f4;
  border-radius: 10px;
}

.doc-card p {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-900);
  padding: 12px 6px 3px;
}

.completed-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.metric-card img {
  height: 225px;
  width: 100%;
  object-fit: cover;
}

.metric-card .metric-body {
  padding: 24px;
}

.metric-card .big {
  font-size: 38px;
  color: var(--green-800);
  font-weight: 900;
  line-height: 1;
}

.metric-card h3 {
  font-size: 20px;
  color: var(--green-950);
  margin: 12px 0 8px;
}

.metric-card p {
  font-size: 14px;
  color: var(--muted);
}

.table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
}

th,td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

th {
  background: var(--green-900);
  color: #fff;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.upcoming-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  min-height: 170px;
  box-shadow: var(--shadow-sm);
}

.upcoming-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.upcoming-card h3 {
  font-size: 18px;
  color: var(--green-900);
  line-height: 1.25;
}

.upcoming-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.phase-card {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.phase-label {
  display: inline-flex;
  background: var(--lime-soft);
  color: var(--green-900);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.phase-card h3 {
  font-size: 26px;
  color: var(--green-950);
  margin: 14px 0 12px;
}

.phase-card ul {
  padding-left: 19px;
  color: #56655c;
}

.phase-card li {
  margin: 6px 0;
}

.source-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--lime);
  background: rgba(200,223,105,.12);
  border-radius: 0 12px 12px 0;
  font-size: 13px;
  color: #dfece3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: .25s;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item p {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 30px;
}

.form-card,.contact-card,.bank-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 7px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,textarea,select {
  width: 100%;
  border: 1px solid #d7e2da;
  background: #fbfdfb;
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 15px;
  outline: none;
  transition: .2s;
}

input:focus,textarea:focus,select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(20,146,87,.08);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.submit {
  border: 0;
  cursor: pointer;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-entry {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.contact-entry .ico {
  width: 44px;
  height: 44px;
  background: var(--lime-soft);
  color: var(--green-800);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.contact-entry h4 {
  color: var(--green-950);
  font-size: 15px;
}

.contact-entry p,.contact-entry a {
  font-size: 14px;
  color: var(--muted);
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.bank {
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.bank h4 {
  color: var(--green-900);
  margin-bottom: 12px;
}

.bank dl {
  display: grid;
  gap: 12px;
}

.bank dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  font-weight: 900;
}

.bank dd {
  font-weight: 800;
  color: var(--ink);
  word-break: break-word;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.partner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.partner .pico {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--lime-soft);
  display: grid;
  place-items: center;
  color: var(--green-900);
  font-weight: 900;
  font-size: 20px;
}

.partner h3 {
  font-size: 17px;
  color: var(--green-950);
}

.partner p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.site-footer {
  background: var(--green-950);
  color: #d8e8dd;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand>div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-brand h3 {
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
}

.footer-brand>div p {
  font-size: 12px;
}

.footer-copy {
  margin-top: 18px;
  font-size: 14px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer a,.site-footer p {
  display: block;
  font-size: 13px;
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-cta {
  display: inline-block !important;
  color: var(--green-950) !important;
  background: var(--lime);
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 900;
  margin-top: 12px !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #a9c2b1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(1,18,10,.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: min(1100px,92vw);
  max-height: 78vh;
  border-radius: 16px;
}

.lightbox p {
  color: #fff;
  margin-top: 14px;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
}

@media (max-width:1000px) {
  .main-nav {
    gap: 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .impact-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .impact-item:nth-child(2) {
    border-right: 0;
  }

  .impact-item:nth-child(-n/**/+2) {
    border-bottom: 1px solid var(--line);
  }

  .cards-3,.completed-grid,.upcoming-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .split,.project-preview,.contact-grid,.chairman-card {
    grid-template-columns: 1fr;
  }

  .chairman-card img {
    height: 500px;
  }

  .sector-grid,.partner-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .doc-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3,1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:760px) {
  .utility-inner {
    height: auto;
    padding: 8px 0;
    align-items: flex-start;
  }

  .utility-right {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-900);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 35px rgba(0,0,0,.2);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav>a {
    padding: 8px 4px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 4px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 70px 0 126px;
  }

  .hero p {
    font-size: 17px;
  }

  .impact-wrap {
    margin-top: -82px;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impact-item {
    padding: 20px;
  }

  .impact-number {
    font-size: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .lead {
    margin-top: 14px;
  }

  .cards-3,.completed-grid,.upcoming-grid,.team-grid,.model-grid,.gallery-grid,.bank-grid,.partner-grid,.sector-grid {
    grid-template-columns: 1fr;
  }

  .project-preview {
    grid-template-columns: 1fr;
  }

  .project-stack {
    grid-template-columns: 1fr 1fr;
  }

  .project-large {
    min-height: 380px;
  }

  .project-small {
    min-height: 190px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2,1fr);
  }

  .cta-band {
    padding: 34px;
    display: block;
  }

  .cta-band .btn {
    margin-top: 20px;
  }

  .chairman-card {
    padding: 20px;
  }

  .chairman-card img {
    height: 390px;
  }

  .doc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doc-card img {
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    display: block;
    padding: 18px 0;
  }

  .footer-bottom span {
    display: block;
    margin: 4px 0;
  }
}

@media (max-width:460px) {
  .container {
    width: min(100% - 26px,1180px);
  }

  .brand strong {
    font-size: 13px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .impact-item:last-child {
    border-bottom: 0 !important;
  }

  .project-stack {
    grid-template-columns: 1fr;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PROFESSIONAL HOMEPAGE V2 ===== */

.hero-tagline {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(200,223,105,.48);
  border-radius: 999px;
  background: rgba(7,83,47,.48);
  color: #eff7ce;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .015em;
  backdrop-filter: blur(8px);
}

.home-who {
  padding-top: 108px;
}

.home-who-grid {
  grid-template-columns: .92fr 1.08fr;
}

.home-copy {
  margin: 22px 0 24px;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--green-800);
  font-weight: 850;
  border-bottom: 1px solid #b8d4c2;
  padding-bottom: 4px;
}

.text-link span {
  transition: .2s;
}

.text-link:hover span {
  transform: translateX(4px);
}

.image-collage {
  position: relative;
  min-height: 480px;
}

.image-collage-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 84%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-collage-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 215px;
  object-fit: cover;
  border: 8px solid var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.image-badge {
  position: absolute;
  right: 28px;
  bottom: 18px;
  background: var(--green-950);
  color: #fff;
  padding: 15px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.image-badge strong,.image-badge span {
  display: block;
}

.image-badge strong {
  font-size: 14px;
}

.image-badge span {
  font-size: 11px;
  color: #cfe1d5;
  margin-top: 2px;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 850;
}

.btn-outline {
  border-color: #9fc8ae;
  color: var(--green-900);
  background: #fff;
}

.btn-outline:hover {
  background: #eff6f1;
}

.btn-green {
  background: var(--green-800);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-950);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--green-950);
}

.initiatives-section {
  background: linear-gradient(180deg,#fff,#f8fbf8);
}

.initiative-layout {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 52px;
  align-items: stretch;
}

.initiative-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  color: #506057;
}

.initiative-copy>p+p {
  margin-top: 16px;
}

.initiative-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 30px;
}

.initiative-points>div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbf8;
}

.initiative-points span {
  grid-row: 1/3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--green-800);
  font-weight: 900;
  font-size: 12px;
}

.initiative-points strong {
  color: var(--green-950);
  font-size: 14px;
}

.initiative-points small {
  color: var(--muted);
  font-size: 11px;
}

.initiative-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: var(--shadow);
}

.initiative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.initiative-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(4,59,35,.88);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.home-completed .metric-card {
  transition: .2s;
}

.home-completed .metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.section-action {
  text-align: center;
  margin-top: 34px;
}

.home-project-preview {
  margin-top: 4px;
}

.home-project-preview .project-caption p {
  font-size: 12px;
  color: #dcece2;
  margin-top: 6px;
}

.roadmap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.roadmap-chips span {
  padding: 9px 13px;
  border: 1px solid #cfe0d4;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  color: var(--green-900);
}

.trust-section {
  background: #edf4ef;
}

.trust-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: center;
}

.trust-copy .lead {
  margin: 18px 0 24px;
  font-size: 16px;
}

.trust-docs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.trust-docs a {
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .2s;
}

.trust-docs a:hover {
  transform: translateY(-4px);
}

.trust-docs img {
  height: 255px;
  width: 100%;
  object-fit: contain;
  background: #fafbf8;
  border-radius: 9px;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.highlight-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.highlight-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(1,25,14,.82));
}

.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.highlight-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.dark-action {
  margin-top: 32px;
}

.support-section {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.support-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: .2s;
}

.support-card:before {
  content: "";
  position: absolute;
  right: -40px;
  top: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--lime-soft);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.support-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-900);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 22px;
  color: var(--green-950);
}

.support-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.support-card a {
  font-size: 13px;
  font-weight: 900;
  color: var(--green-700);
}

@media (max-width:1000px) {
  .home-who-grid,.initiative-layout,.trust-layout {
    grid-template-columns: 1fr;
  }

  .image-collage {
    min-height: 500px;
  }

  .trust-docs {
    grid-template-columns: repeat(4,1fr);
  }

  .highlight-cards {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:760px) {
  .home-who {
    padding-top: 86px;
  }

  .image-collage {
    min-height: 420px;
  }

  .image-collage-main {
    width: 90%;
    height: 370px;
  }

  .image-collage-small {
    width: 46%;
    height: 180px;
  }

  .initiative-points {
    grid-template-columns: 1fr;
  }

  .initiative-photo {
    min-height: 390px;
  }

  .trust-docs {
    grid-template-columns: repeat(2,1fr);
  }

  .trust-docs img {
    height: 240px;
  }

  .highlight-cards,.support-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 270px;
  }

  .hero-tagline {
    font-size: 12px;
  }

  .roadmap-chips {
    justify-content: flex-start;
  }
}

@media (max-width:460px) {
  .image-collage {
    min-height: 370px;
  }

  .image-collage-main {
    width: 100%;
    height: 330px;
  }

  .image-collage-small {
    display: none;
  }

  .image-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .trust-docs {
    grid-template-columns: 1fr;
  }

  .trust-docs img {
    height: 290px;
  }
}

/* Four-member leadership grid */

.team-grid.team-grid-four {
  grid-template-columns: repeat(4,1fr);
}

@media (max-width:1100px) {
  .team-grid.team-grid-four {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:760px) {
  .team-grid.team-grid-four {
    grid-template-columns: 1fr;
  }
}

/* Global Goal — portfolio page 7 */

.global-goal-section {
  position: relative;
  overflow: hidden;
}

.global-goal-section:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(200,223,105,.20),rgba(200,223,105,0) 70%);
  pointer-events: none;
}

.global-goal-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.global-goal-stat {
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.global-goal-stat:last-child {
  border-right: 0;
}

.global-goal-stat strong {
  display: block;
  color: var(--green-800);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.025em;
}

.global-goal-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.global-goal-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.global-goal-card,.global-goal-alert {
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.global-goal-card {
  background: #fff;
  border: 1px solid var(--line);
}

.global-goal-card h3,.global-goal-alert h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 15px 0 12px;
}

.global-goal-card h3 {
  color: var(--green-950);
}

.global-goal-card p {
  color: #526158;
}

.global-goal-alert {
  background: var(--green-950);
  color: #fff;
}

.global-goal-alert .phase-label {
  background: rgba(200,223,105,.16);
  color: var(--lime);
}

.global-goal-alert h3 {
  color: #fff;
}

.global-goal-alert p {
  color: #d8e8de;
}

.global-goal-closing {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 16px;
  background: var(--lime-soft);
  color: var(--green-950);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.global-goal-card p,.global-goal-alert p {
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width:1000px) {
  .global-goal-stats {
    grid-template-columns: repeat(2,1fr);
  }

  .global-goal-stat:nth-child(2) {
    border-right: 0;
  }

  .global-goal-stat:nth-child(-n/**/+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width:760px) {
  .global-goal-content {
    grid-template-columns: 1fr;
  }

  .global-goal-closing {
    text-align: left;
    font-size: 18px;
  }
}

@media (max-width:460px) {
  .global-goal-stats {
    grid-template-columns: 1fr;
  }

  .global-goal-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .global-goal-stat:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   RESPONSIVE WIDTH SAFETY
   Prevents horizontal page overflow without changing design.
   ========================================================= */

/* Keep every page inside the viewport. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Fallback for browsers that do not support overflow: clip. */
@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* All main structural wrappers must never exceed the viewport. */
.site-header,
.utility-bar,
.hero,
.page-hero,
.section,
.section-soft,
.section-dark,
.site-footer,
.impact-wrap,
main {
  width: 100%;
  max-width: 100%;
}

/* Let flex/grid children shrink instead of forcing horizontal scrolling. */
.container,
.utility-inner,
.nav-wrap,
.main-nav,
.hero-content,
.impact-grid,
.section-head,
.cards-3,
.split,
.project-preview,
.project-stack,
.gallery-strip,
.chairman-card,
.team-grid,
.sector-grid,
.doc-grid,
.completed-grid,
.upcoming-grid,
.model-grid,
.gallery-grid,
.contact-grid,
.form-row,
.bank-grid,
.partner-grid,
.footer-grid,
.home-who-grid,
.initiative-layout,
.initiative-points,
.trust-layout,
.trust-docs,
.highlight-cards,
.support-grid,
.global-goal-stats,
.global-goal-content,
.roadmap-chips,
.cta-band {
  min-width: 0;
  max-width: 100%;
}

/* Direct grid/flex children can otherwise keep an intrinsic minimum width. */
.impact-grid > *,
.section-head > *,
.cards-3 > *,
.split > *,
.project-preview > *,
.project-stack > *,
.chairman-card > *,
.team-grid > *,
.sector-grid > *,
.doc-grid > *,
.completed-grid > *,
.upcoming-grid > *,
.model-grid > *,
.gallery-grid > *,
.contact-grid > *,
.form-row > *,
.bank-grid > *,
.partner-grid > *,
.footer-grid > *,
.home-who-grid > *,
.initiative-layout > *,
.initiative-points > *,
.trust-layout > *,
.trust-docs > *,
.highlight-cards > *,
.support-grid > *,
.global-goal-stats > *,
.global-goal-content > *,
.cta-band > * {
  min-width: 0;
  max-width: 100%;
}

/* Form controls must respect the card width on every mobile browser. */
form,
.form-card,
.contact-card,
.bank-panel,
input,
textarea,
select,
button {
  min-width: 0;
  max-width: 100%;
}

input,
textarea,
select {
  display: block;
}

/* Native file controls are a common mobile overflow source. */
input[type="file"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

/* Long addresses, emails, URLs, IBANs and labels should wrap naturally. */
.contact-entry,
.contact-entry > div,
.contact-entry p,
.contact-entry a,
.bank,
.bank dd,
.site-footer a,
.site-footer p,
.footer-copy,
.source-note,
.roadmap-chips span,
.project-caption,
.project-caption h3,
.project-caption p,
.phase-card,
.global-goal-card,
.global-goal-alert {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Preserve image proportions while preventing image-based overflow. */
img,
.image-frame,
.image-collage,
.initiative-photo,
.project-large,
.project-small,
.gallery-item,
.highlight-card,
.doc-card,
.metric-card,
.feature-card,
.team-card {
  max-width: 100%;
}

/* Decorative outlines must not push the page outside the viewport. */
.image-frame {
  overflow: visible;
}

@media (max-width: 1000px) {
  .image-frame:after {
    right: 0;
  }
}

/* Tablet and phone fixes only; existing layout remains unchanged. */
@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .contact-grid,
  .form-card,
  .contact-card,
  .bank-panel,
  .split,
  .chairman-card,
  .project-preview,
  .initiative-layout,
  .trust-layout,
  .cta-band {
    width: 100%;
    max-width: 100%;
  }

  .form-card,
  .contact-card,
  .bank-panel {
    overflow: hidden;
  }

  .contact-entry {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .bank-grid,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    max-width: 100vw;
  }

  .cta-band .btn,
  .hero-actions .btn,
  .footer-cta {
    max-width: 100%;
    white-space: normal;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Extra-narrow phones. */
@media (max-width: 460px) {
  .container {
    width: calc(100% - 26px);
    max-width: 1180px;
  }

  .utility-inner,
  .utility-left {
    min-width: 0;
    max-width: 100%;
  }

  .utility-left {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .brand,
  .brand > div {
    min-width: 0;
    max-width: 100%;
  }

  .brand strong,
  .brand span {
    overflow-wrap: anywhere;
  }

  .form-card,
  .contact-card,
  .bank-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero h1,
  .hero h1,
  h2 {
    overflow-wrap: anywhere;
  }
}

/* =========================================================
   HOME / CONTACT / ABOUT MOBILE CONTAINMENT
   Final viewport-width safeguards for mobile browsers.
   These rules do not change the existing page layout.
   ========================================================= */

@media (max-width: 1000px) {
  /* Use hidden as the mobile-browser-safe fallback on the three affected pages. */
  body[data-page="home"],
  body[data-page="contact"],
  body[data-page="about"] {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Never allow a top-level page section to establish a wider canvas. */
  body[data-page="home"] > *,
  body[data-page="contact"] > *,
  body[data-page="about"] > * {
    max-width: 100vw;
  }

  body[data-page="home"] .container,
  body[data-page="contact"] .container,
  body[data-page="about"] .container {
    min-width: 0;
  }

  /* Home: contain decorative/absolute content inside its existing cards. */
  body[data-page="home"] .hero,
  body[data-page="home"] .impact-wrap,
  body[data-page="home"] .image-collage,
  body[data-page="home"] .initiative-photo,
  body[data-page="home"] .project-large,
  body[data-page="home"] .project-small,
  body[data-page="home"] .support-card,
  body[data-page="home"] .highlight-card,
  body[data-page="home"] .trust-docs a {
    max-width: 100%;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .support-card,
  body[data-page="home"] .highlight-card,
  body[data-page="home"] .project-large,
  body[data-page="home"] .project-small {
    overflow-x: hidden;
  }

  /* Contact: every card and every inner value must shrink inside one column. */
  body[data-page="contact"] .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  body[data-page="contact"] .contact-grid > *,
  body[data-page="contact"] .form-card,
  body[data-page="contact"] .contact-card,
  body[data-page="contact"] .contact-list,
  body[data-page="contact"] .contact-entry,
  body[data-page="contact"] .contact-entry > div,
  body[data-page="contact"] form {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body[data-page="contact"] .contact-entry {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  body[data-page="contact"] .contact-entry a,
  body[data-page="contact"] .contact-entry p {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="contact"] input,
  body[data-page="contact"] textarea,
  body[data-page="contact"] select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* About: nested cards/document grids must not keep desktop intrinsic widths. */
  body[data-page="about"] .split,
  body[data-page="about"] .chairman-card {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  body[data-page="about"] .chairman-card > *,
  body[data-page="about"] .team-grid > *,
  body[data-page="about"] .sector-grid > *,
  body[data-page="about"] .doc-grid > *,
  body[data-page="about"] .sector,
  body[data-page="about"] .team-card,
  body[data-page="about"] .doc-card {
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="about"] .sector {
    overflow-wrap: anywhere;
  }

  /* Decorative image outline stays visually present but inside mobile width. */
  body[data-page="contact"] .image-frame:after,
  body[data-page="about"] .image-frame:after,
  body[data-page="home"] .image-frame:after {
    right: 0;
    max-width: calc(100% - 1px);
  }
}

@media (max-width: 760px) {
  /* Keep the existing mobile container spacing, but make its math explicit. */
  body[data-page="home"] .container,
  body[data-page="contact"] .container,
  body[data-page="about"] .container {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  body[data-page="home"] .image-collage,
  body[data-page="home"] .initiative-layout,
  body[data-page="home"] .trust-layout,
  body[data-page="home"] .project-preview,
  body[data-page="contact"] .contact-grid,
  body[data-page="contact"] .split,
  body[data-page="about"] .split,
  body[data-page="about"] .chairman-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  body[data-page="home"] .container,
  body[data-page="contact"] .container,
  body[data-page="about"] .container {
    width: calc(100% - 26px);
    max-width: 1180px;
  }

  /* Prevent long brand/contact strings from influencing mobile page scale. */
  body[data-page="home"] .brand,
  body[data-page="contact"] .brand,
  body[data-page="about"] .brand {
    min-width: 0;
    max-width: calc(100% - 54px);
  }

  body[data-page="home"] .brand > div,
  body[data-page="contact"] .brand > div,
  body[data-page="about"] .brand > div {
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="contact"] .form-card,
  body[data-page="contact"] .contact-card {
    overflow: hidden;
  }
}