:root {
  --green: #9fcc40;
  --green-dark: #7faa27;
  --green-soft: rgba(159, 204, 64, 0.15);
  --blue: #245395;
  --blue-dark: #163963;
  --blue-soft: rgba(36, 83, 149, 0.12);
  --ink: #162130;
  --ink-soft: #536175;
  --line: #dce5f0;
  --surface: #ffffff;
  --surface-alt: #f4f8fc;
  --surface-muted: #eef4fa;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 14px 28px rgba(18, 45, 79, 0.08);
  --shadow-md: 0 20px 44px rgba(18, 45, 79, 0.12);
  --shadow-lg: 0 26px 60px rgba(18, 45, 79, 0.16);
  --container: min(1180px, calc(100vw - 32px));
  --header-height: 84px;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 252, 247, 0.18), rgba(255, 255, 255, 0.38)),
    url('assets/Backgrounds/sustainable-bg.9.png') center top / cover fixed no-repeat;
  line-height: 1.65;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section,
.site-footer,
.stats-band {
  width: 100%;
  max-width: 100%;
}

.footer-brand,
.footer-column,
.contact-card > div,
.project-card__content,
.contact-form,
.contact-panel {
  min-width: 0;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.contact-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}


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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(239, 248, 236, 0.78), rgba(247, 252, 243, 0.9));
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
  max-width: 760px;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--blue-dark);
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(159, 204, 64, 0.3);
  outline-offset: 3px;
}

.btn--block {
  width: 100%;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 24px rgba(36, 83, 149, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(36, 83, 149, 0.26);
}

.btn-secondary {
  color: var(--blue-dark);
  background: linear-gradient(135deg, #d9efab, #b7dd59);
  box-shadow: 0 12px 24px rgba(159, 204, 64, 0.22);
}

.btn-secondary:hover {
  box-shadow: 0 16px 28px rgba(159, 204, 64, 0.28);
}

.btn-outline {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(36, 83, 149, 0.2);
  box-shadow: 0 10px 24px rgba(18, 45, 79, 0.08);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: rgba(36, 83, 149, 0.32);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(159, 204, 64, 0.24);
}

.badge--completed {
  background: rgba(36, 83, 149, 0.12);
  color: var(--blue-dark);
  border-color: rgba(36, 83, 149, 0.18);
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 240, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(248, 252, 247, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(159, 204, 64, 0.14);
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled,
.site-header.nav-open {
  box-shadow: 0 18px 42px rgba(16, 38, 66, 0.1);
  border-color: rgba(36, 83, 149, 0.09);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mobile-menu-cta {
  display: none;
}

.nav-links .mobile-menu-cta::after {
  display: none;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-shell,
.header-actions {
  overflow: visible;
}

.header-actions .btn-primary {
  min-height: 42px;
  padding: 10px 20px;
  line-height: 1;
  border: none;
  border-radius: 999px;
  box-shadow: none;
  overflow: visible;
}

.header-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(36, 83, 149, 0.14);
  border-radius: 16px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(18, 45, 79, 0.08);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 90vh, 860px);
  padding: 132px 0 104px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 45, 79, 0.92), rgba(36, 83, 149, 0.58)),
    linear-gradient(0deg, rgba(159, 204, 64, 0.08), rgba(159, 204, 64, 0.08)),
    url('hero 3.png') center/cover no-repeat;
}
.stats-band {
  margin-top: 12px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(420px, 58vh, 600px);
  display: grid;
  align-items: center;
  padding-left: clamp(48px, 6vw, 110px);
  padding-top: clamp(36px, 5vh, 70px);
}

.hero-copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
  align-content: center;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 4px;
}

.hero-tagline {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #d7f28f;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-copy p {
  font-size: 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-copy .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.hero-copy .btn-outline:hover {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.hero-panel {
  padding: 24px;
  border-radius: 28px;
  background: rgba(247, 251, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 44px rgba(8, 23, 41, 0.22);
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--white);
}

.hero-panel p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
}

.hero-panel-item {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero-panel-item span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, #d8f18e, var(--green));
  flex: 0 0 auto;
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(220, 229, 240, 0.95);
  text-align: center;
}

.stat-number {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.about-grid,
.contact-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p,
.founder-note {
  color: var(--ink-soft);
  font-size: 16px;
}

.founder-note {
  font-weight: 700;
  color: var(--blue-dark);
}

.about-media {
  position: relative;
  min-height: 100%;
}

.about-media img {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.floating-summary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(220, 229, 240, 0.86);
  max-width: 250px;
  display: grid;
  gap: 8px;
}

.floating-summary strong {
  color: var(--blue-dark);
  font-size: 16px;
}

.floating-summary span {
  color: var(--ink-soft);
  font-size: 14px;
}

.mvv-grid,
.services-grid,
.why-grid,
.testimonials-grid,
.contact-cards {
  display: grid;
  gap: 20px;
}

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

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

.info-card,
.service-card,
.why-card,
.testimonial-card,
.contact-card,
.project-intro-card,
.detail-section-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 229, 240, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.project-card:hover,
.detail-section-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 83, 149, 0.14);
}

.info-card--accent {
  background: linear-gradient(180deg, rgba(36, 83, 149, 0.96), rgba(22, 57, 99, 0.98));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}

.info-card--accent h3,
.info-card--accent .muted {
  color: var(--white);
}

.card-title {
  font-size: 22px;
  line-height: 1.15;
  color: var(--blue-dark);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

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

.service-card p,
.why-card p,
.testimonial-card p,
.contact-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.service-icon,
.why-icon,
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(36, 83, 149, 0.12), rgba(159, 204, 64, 0.18));
  color: var(--blue-dark);
}

.service-icon svg,
.why-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
}

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

.why-card {
  text-align: center;
}

.why-card h3 {
  font-size: 18px;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.project-group {
  display: grid;
  gap: 28px;
}

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

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

.project-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 240, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__status {
  position: absolute;
  left: 18px;
  top: 18px;
}

.project-card__content {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.project-card__content h3 {
  font-size: 22px;
  line-height: 1.14;
  color: var(--blue-dark);
  letter-spacing: -0.04em;
}

.project-card__meta {
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.project-card__meta strong {
  color: var(--ink);
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.project-card__actions .btn {
  min-height: 44px;
  padding-inline: 20px;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--blue);
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}

.link-inline:hover {
  color: var(--green-dark);
  transform: translateX(2px);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-weight: 700;
  color: var(--green-dark);
  transition: color var(--transition), transform var(--transition);
}

.location-link__text {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.location-link__icon {
  text-decoration: none !important;
  font-size: 15px;
  line-height: 1;
}

.location-link:hover {
  color: var(--white);
  transform: translateX(2px);
}

.project-page-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 72px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 45, 79, 0.92), rgba(36, 83, 149, 0.54)),
    url('hero 3.png') center/cover no-repeat;
}

.project-page-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--green);
}

.project-page-hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.project-page-hero h1,
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--white);
}

.project-page-hero p,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.hero-metric {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-metric span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7f28f;
  margin-bottom: 8px;
}

.hero-metric strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  color: var(--white);
}

.project-shell {
  padding: 80px 0 96px;
}

.project-shell__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.66fr);
  gap: 30px;
  align-items: start;
}

.project-main {
  display: grid;
  gap: 24px;
}

.project-overview {
  display: grid;
  gap: 18px;
}

.project-overview p {
  color: var(--ink-soft);
  font-size: 16px;
}

.detail-section-card h2,
.detail-section-card h3,
.project-intro-card h2 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

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

.feature-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(36, 83, 149, 0.04), rgba(159, 204, 64, 0.08));
  border: 1px solid rgba(36, 83, 149, 0.08);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(159, 204, 64, 0.12);
}

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

.spec-item {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(220, 229, 240, 0.9);
  background: rgba(244, 248, 252, 0.72);
}

.spec-item strong {
  display: block;
  font-size: 14px;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.spec-item span {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.project-visual {
  overflow: visible;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.project-visual img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.project-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-row {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d7f28f;
}

.detail-value {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

.detail-subtext {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.side-note {
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-strip {
  padding: 72px 0;
  background:
    linear-gradient(115deg, rgba(16, 45, 79, 0.96), rgba(36, 83, 149, 0.86)),
    linear-gradient(90deg, rgba(159, 204, 64, 0.08), rgba(159, 204, 64, 0.08));
  color: var(--white);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 44px rgba(8, 23, 41, 0.22);
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.testimonials-marquee {
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: testimonials-scroll 36s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(360px, calc(100vw - 48px));
  flex: 0 0 min(360px, calc(100vw - 48px));
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 229, 240, 0.9);
}

.testimonial-card__author {
  font-weight: 800;
  color: var(--blue-dark);
}

.testimonial-card__label {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.contact-grid {
  align-items: stretch;
}

.contact-form,
.contact-panel {
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 229, 240, 0.92);
  box-shadow: var(--shadow-sm);
}

.contact-form h3,
.contact-panel h3 {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.contact-form p,
.contact-panel p {
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(36, 83, 149, 0.14);
  background: rgba(244, 248, 252, 0.8);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(36, 83, 149, 0.36);
  box-shadow: 0 0 0 4px rgba(36, 83, 149, 0.08);
  background: var(--white);
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--green-dark);
  font-weight: 700;
  background: rgba(159, 204, 64, 0.15);
  border: 1px solid rgba(159, 204, 64, 0.22);
}

.contact-cards {
  grid-template-columns: 1fr;
  margin-top: 24px;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
}

.contact-card .contact-icon {
  margin-bottom: 0;
}

.contact-card h4 {
  font-size: 18px;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.map-frame {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(220, 229, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.site-footer {
  padding: 64px 0 20px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 45, 79, 0.96), rgba(16, 45, 79, 1)),
    linear-gradient(90deg, rgba(159, 204, 64, 0.08), rgba(159, 204, 64, 0.08));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-column h4 {
  margin-bottom: 14px;
  color: #d7f28f;
  font-size: 16px;
}

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

.footer-links a {
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.hide-mobile {
  display: inline-flex;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .project-shell__grid,
  .about-grid,
  .contact-grid,
  .two-column,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
  }

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

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

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

@media (max-width: 920px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    position: relative;
    z-index: 130;
  }

  .site-header.nav-open .nav-links {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) - 4px);
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 229, 240, 0.95);
    box-shadow: var(--shadow-md);
    z-index: 110;
  }

  .site-header.nav-open .nav-links a {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .site-header.nav-open .nav-links a:hover,
  .site-header.nav-open .nav-links a.active {
    background: rgba(36, 83, 149, 0.06);
  }

  .site-header.nav-open .nav-links .mobile-menu-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
    padding: 14px 24px;
  }

  .stats-grid,
  .services-grid,
  .projects-grid,
  .projects-grid--all,
  .spec-grid,
  .project-visuals,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 26px 24px;
    min-width: 0;
  }

  .service-card .card-title {
    font-size: 24px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .service-card p {
    font-size: 16px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section,
  .project-shell {
    padding: 72px 0;
  }

  .stats-band {
    margin-top: 12px;
  }

  .floating-summary {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 32px);
    --header-height: 84px;
  }

  html,
  body {
    background: transparent !important;
  }

  body {
    position: relative;
    isolation: isolate;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(248, 252, 247, 0.18), rgba(255, 255, 255, 0.38)),
      url("assets/Backgrounds/sustainable-bg.11.png") center top / cover no-repeat;
  }

  .section--muted {
    background:
      linear-gradient(180deg, rgba(239, 248, 236, 0.78), rgba(247, 252, 243, 0.9));
  }

  .section {
    background: transparent;
  }

  .container {
    width: var(--container);
    max-width: var(--container);
  }

  .project-card,
  .why-card,
  .service-card,
  .testimonial-card,
  .contact-form,
  .contact-panel {
    background: rgba(255, 255, 255, 0.88);
  }

   .projects-grid {
    gap: 28px;
  }

  .project-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
  }

  .project-card__media {
    aspect-ratio: 4 / 3;
    background: #ffffff;
  }

  .project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .project-card__content {
    padding: 24px 22px 26px;
  }

  .project-card__content h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .project-card__meta {
    gap: 10px;
    font-size: 16px;
  }

  .project-card__actions .btn {
    width: 100%;
  }
}

/* Projects dropdown navigation */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown__chevron {
  font-size: 12px;
  line-height: 1;
  transform: translateY(1px);
}

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 229, 240, 0.95);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  padding: 11px 13px;
  border-radius: 13px;
  white-space: nowrap;
  font-size: 14px;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(36, 83, 149, 0.06);
  color: var(--blue);
}

@media (max-width: 920px) {
  .site-header.nav-open .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .site-header.nav-open .nav-dropdown__trigger {
    width: 100%;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .site-header.nav-open .nav-dropdown__menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 4px 0 6px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(36, 83, 149, 0.04);
    border-color: rgba(36, 83, 149, 0.08);
    box-shadow: none;
  }

  .site-header.nav-open .nav-dropdown__menu a {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.nav-dropdown__menu {
  z-index: 140;
}

/* Clickable project gallery images */

.project-visual img {
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.project-visual img:hover {
  transform: scale(1.02);
}

/* Full-screen image viewer */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 12, 22, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 10000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

body.lightbox-open {
  overflow: hidden;
}

.founder-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
}

.founder-note::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}

.founder-role {
  color: var(--blue-dark);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.founder-name {
  color: var(--blue-dark);
  font-size: 19px;
  font-weight: 800;
}

/* Prevent fixed header from covering mobile page headings */
@media (max-width: 640px) {
  .page-hero,
  .project-page-hero {
    margin-top: var(--header-height);
    padding: 48px 0 64px;
  }

  section[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
  }
}

/* Mobile spacing for Completed and Ongoing Projects pages */
@media (max-width: 640px) {
  .project-listing-section {
    padding-top: calc(var(--header-height) + 32px);
  }
}

/* Keep homepage project cards inside the mobile screen */
@media (max-width: 640px) {
  #projects > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #projects .projects-grid {
    width: 100%;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  #projects .project-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }
}

/* Correct individual project-page order on tablet and mobile */
@media (max-width: 1120px) {
  .project-shell__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-main,
  .project-sidebar {
    display: contents;
  }

  .project-main > .project-intro-card {
    order: 1;
  }

  .project-sidebar > .info-card--accent {
    order: 2;
  }

  .project-main > .detail-section-card {
    order: 3;
  }

  .project-sidebar > .detail-section-card {
    order: 4;
  }
}