/* ================================================
   AMADA Asset Management — Professional Theme
   Design Tokens · Global Styles · Components
   ================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand Colors */
  --green-forest: #077905;
  --green-mid: #489940;
  --green-light: #81bc7a;
  --green-mint: #c2e9bf;
  --green-pale: #f4f8ee;
  --gold: #c9a44c;
  --gold-bright: #fbe48b;

  /* Neutrals */
  --ink: #111827;
  --charcoal: #374151;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --white: #ffffff;
  --off-white: #fafafa;

  /* Dark Sections */
  --dark: #0d1f0d;
  --dark-mid: #162816;

  /* Typography */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s7: 1.75rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s14: 3.5rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Layout */
  --nav-h: 80px;
  --max-w: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .06);

  /* Component Aliases (used but were undefined) */
  --bg-light: var(--off-white);
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --font-heading: var(--font-display);

  /* Transitions */
  --t: 0.22s ease;
  --t-slow: 0.45s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Text Highlight (Selection) */
::selection {
  background-color: var(--gold);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--gold);
  color: var(--white);
}

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

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

ul {
  list-style: none;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, var(--s8));
}

.section {
  padding: clamp(var(--s10), 8vw, var(--s24)) 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

/* ── Section Labels ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-forest);
  margin-bottom: var(--s3);
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--light {
  color: var(--green-mint);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: var(--s4);
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s16);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-subtitle {
  margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .7rem var(--s8);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-forest);
  color: var(--white);
  border-color: var(--green-forest);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7, 121, 5, .28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-forest);
  border-color: var(--green-forest);
}

.btn-outline:hover {
  background: var(--green-pale);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .65);
}

/* ── Arrow Link ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-forest);
  letter-spacing: .02em;
  transition: gap var(--t);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--t);
}

.link-arrow:hover {
  gap: var(--s3);
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.site-nav.scrolled {
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0, 0, 0, .3);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s8);
  gap: var(--s8);
}

.nav-logo {
  flex-shrink: 0;
  margin-top: 4px;
  margin-bottom: 4px;
  padding-right: calc(var(--s8) + 4px);
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 164, 76, 0.45) 30%,
    rgba(201, 164, 76, 0.45) 70%,
    transparent
  );
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  transition: filter var(--t), transform var(--t);
}

.nav-logo:hover img {
  filter: drop-shadow(0 2px 18px rgba(201, 164, 76, 0.28)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: var(--s2) var(--s4);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--s4);
  right: var(--s4);
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-chevron {
  width: 13px;
  height: 13px;
  transition: transform var(--t);
  color: rgba(255, 255, 255, .6);
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -4px;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: .65rem var(--s5);
  font-size: .82rem;
  color: var(--charcoal);
  border-left: 2px solid transparent;
  transition: background var(--t), color var(--t), padding-left var(--t), border-left-color var(--t);
}

.dropdown-link:hover {
  background: var(--green-pale);
  color: var(--green-forest);
  padding-left: calc(var(--s5) + 5px);
  border-left-color: var(--green-forest);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  margin-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(13,31,13,.92) 0%, rgba(13,31,13,.55) 55%, rgba(13,31,13,.1) 100%);
}

/* Inner page hero sizes */
.hero--sm  { min-height: 360px; height: 40vh; }
.hero--md  { min-height: 380px; height: 45vh; }
.hero--lg  { min-height: 480px; height: 60vh; }
.hero--xl  { min-height: 520px; height: 60vh; }

/* Inner page hero: smaller title & subtitle */
.hero--sm .hero-title,
.hero--md .hero-title,
.hero--lg .hero-title,
.hero--xl .hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  max-width: 800px;
  line-height: 1.1;
}

.hero--sm .hero-subtitle,
.hero--md .hero-subtitle,
.hero--lg .hero-subtitle,
.hero--xl .hero-subtitle {
  max-width: 600px;
}

/* Legal page hero variants */
.hero-overlay--legal {
  background: linear-gradient(105deg, rgba(13,31,13,.92) 0%, rgba(13,31,13,.6) 60%, rgba(13,31,13,.15) 100%);
}
.hero-title--legal {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 660px;
}
.hero-subtitle--legal {
  max-width: 520px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 12vh, 100px) clamp(1rem, 5vw, var(--s10)) 0;
  text-align: left;
  animation: heroFadeUp 1s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--s6);
  animation: heroFadeUp 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 1px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--s5);
  max-width: 780px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  animation: heroFadeUp 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  color: var(--gold-bright);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: var(--s8);
  animation: heroFadeUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .4);
  transition: color var(--t);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, .75);
}

.hero-scroll svg {
  width: 26px;
  height: 26px;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  55% {
    transform: translateX(-50%) translateY(9px);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   ABOUT
   ================================================ */
.about-section {
  padding-bottom: var(--s8);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s20);
  align-items: center;
}

.about-text {
  padding-right: var(--s8);
}

.about-text .section-title {
  margin-bottom: var(--s6);
}

.about-text .section-title::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--green-forest);
  margin-bottom: var(--s4);
}

.body-text {
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--s4);
  text-align: justify;
}

.about-visual {
  position: relative;
  padding-bottom: 48px;
  padding-right: 32px;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-quote {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--green-forest);
  color: var(--white);
  padding: var(--s6);
  border-radius: var(--radius-lg);
  max-width: 270px;
  box-shadow: var(--shadow-md);
}

.about-quote p {
  font-family: var(--font-display);
  font-size: .98rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, .9);
}

.services-section {
  padding: var(--s16) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: var(--s12);
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s4);
}

.services-subhead {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* 3-column grid for service cards (6 solutions = 3×2 balanced) */
.amada-v2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* ── Premium svc-card: image + gliding overlay ── */
.svc-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  background: var(--ink);
  cursor: pointer;
}

/* Image layer */
.svc-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.7s ease;
  filter: brightness(0.65);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.08);
  filter: brightness(0.42);
}

/* Gradient overlay always present at bottom */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      transparent 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

/* Body: always visible at bottom */
.svc-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Service category pill */
.svc-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright, #c9a84c);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Card title */
.svc-title {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--s1);
}

/* Description: always visible, truncated on small cards */
.svc-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-height: 3.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.svc-card:hover .svc-desc {
  max-height: 6em;
  -webkit-line-clamp: unset;
}

/* "Learn More" CTA arrow */
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mint, #a8d5b0);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  margin-top: var(--s2);
}

.svc-card:hover .svc-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Top border accent on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

/* Responsive: 2 columns on tablet */
@media (max-width: 1024px) {
  .amada-v2-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 column on mobile */
@media (max-width: 600px) {
  .amada-v2-services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    aspect-ratio: 4 / 3;
  }
}



/* ================================================
   EXPERTISE
   ================================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.expertise-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}

.expertise-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-mint);
}

.expertise-img {
  overflow: hidden;
}

.expertise-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.expertise-card:hover .expertise-img img {
  transform: scale(1.05);
}

.expertise-body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.expertise-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.expertise-desc {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.7;
}

.expertise-features {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s2);
}

.expertise-features li {
  font-size: .82rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.expertise-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-forest);
  flex-shrink: 0;
}

/* ================================================
   INSIGHTS — Horizontal list (Apollo style)
   ================================================ */
/* Circle arrow button (Apollo "View All") */
.circle-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
  transition: gap var(--t);
}

.circle-arrow-btn .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}

.circle-arrow-btn .circle svg {
  width: 16px;
  height: 16px;
}

.circle-arrow-btn:hover .circle {
  background: var(--green-forest);
  transform: translateX(3px);
}

.insights-section {
  background: var(--white);
  padding: var(--s24) 0;
  border-top: 1px solid var(--border);
}

.insights-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s6);
  gap: var(--s6);
  flex-wrap: wrap;
}

.insights-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.insight-list>li {
  border-top: 1px solid var(--border);
}

.insight-list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s8);
  padding: var(--s8) 0;
  text-decoration: none;
  color: var(--text-dark);
}

.insight-list-item.bg-light-green {
  background-color: #f2f5ed;
  /* Soft light green background */
  padding: var(--s8);
  /* Ensure padding for background color */
  margin: 0 calc(-1 * var(--s8));
  /* Pull out to edge */
}

.insight-thumb {
  width: 140px;
  height: 90px;
  border-radius: 4px;
  /* Slight rounding for a premium card feel */
  overflow: hidden;
  background: var(--bg-alt);
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.insight-list-item:hover .insight-thumb img {
  transform: scale(1.05);
}

.insight-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s2);
  min-width: 0;
  overflow: hidden;
}

.insight-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b8c3b;
  /* Green matching screenshot */
}

.insight-list-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  color: #1f2937;
}

.insight-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 800px;
}

.insight-list-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3b8c3b;
  /* Green matching screenshot */
  margin-top: var(--s2);
  transition: gap 0.3s ease;
}

.insight-list-cta svg {
  width: 14px;
  height: 14px;
}

.insight-list-item:hover .insight-list-cta {
  gap: 10px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding-top: var(--s20);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s16);
  padding-bottom: var(--s16);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.footer-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s2);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .45);
  transition: all var(--t);
}

.social-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-light);
  background: rgba(72, 153, 64, .12);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
}

.footer-col h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-col a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .46);
  transition: color var(--t), padding-left var(--t);
}

.footer-col a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: var(--s6) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s8);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, .28);
}

.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255, 255, 255, .22);
  max-width: 460px;
  text-align: right;
  line-height: 1.65;
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--s8);
  right: var(--s8);
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t),
    background var(--t), color var(--t), border-color var(--t);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-forest);
  color: var(--white);
  border-color: var(--green-forest);
}

.back-to-top svg {
  width: 17px;
  height: 17px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }

  .about-text {
    padding-right: 0;
  }

  .about-visual {
    padding-bottom: 56px;
  }

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

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

  .expertise-card {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--s5);
  }

  .section {
    padding: var(--s16) 0;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 80px) !important;
    max-height: calc(100dvh - 80px) !important;
    background: rgba(255,255,255,0.92) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 16px 24px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    border-top: none !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .nav-menu.is-open,
  .nav-menu.open {
    display: flex !important;
  }

  /* Mobile nav items */
  .nav-menu .nav-item {
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu .nav-link {
    color: #1f2937 !important;
    padding: 16px 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    justify-content: space-between;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .has-dropdown .nav-link .nav-chevron {
    transform: rotate(90deg);
    color: #9ca3af;
  }

  /* Mobile dropdown */
  .nav-dropdown {
    display: none;
    position: static !important;
    background: rgba(249,250,251,0.7) !important;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 16px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-item.has-dropdown.is-open .nav-dropdown,
  .nav-item.has-dropdown.open .nav-dropdown {
    display: block !important;
  }

  .nav-dropdown .dropdown-link {
    padding: 12px 16px !important;
    color: #4b5563 !important;
    font-size: 14px !important;
  }

  .nav-link {
    width: 100%;
    padding: var(--s3) var(--s4);
    justify-content: space-between;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--green-pale);
    border-radius: var(--radius);
    margin: 4px 0 4px var(--s4);
    padding: var(--s2) 0;
    display: none;
  }

  .nav-item.mobile-open .nav-dropdown {
    display: block;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s3);
  }

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

  .service-col {
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .service-col:last-child {
    border-bottom: none;
  }

  /* Expertise */
  .expertise-card {
    grid-template-columns: 1fr;
  }

  .expertise-img {
    aspect-ratio: 16/9;
  }

  /* Insights */
  .insight-list-item {
    grid-template-columns: 100px 1fr;
    gap: var(--s4);
  }

  .insight-thumb {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
  }

  /* Touch devices: service card content always visible */
  .svc-desc {
    max-height: 180px;
    opacity: 1;
    -webkit-line-clamp: unset;
  }

  .svc-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .svc-card {
    aspect-ratio: 4 / 3;
  }

  .svc-card-body {
    padding: var(--s6) var(--s5);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   SDG FOCUS AREAS (UN STYLE)
   ================================================ */
.sdg-un-section {
  width: 100%;
  background: var(--bg-light);
  /* light background behind the grid */
  position: relative;
  padding: var(--s16) 0;
}

.sdg-un-split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s12);
  align-items: center;
}

.sdg-un-text-col {
  padding-right: var(--s4);
}

.sdg-un-text-col .section-title::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--green-forest);
  margin-bottom: var(--s4);
}

.sdg-un-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 4px;
  /* Slight gap for separation in split view */
}

.sdg-un-card {
  position: relative;
  aspect-ratio: 1 / 1;
  /* Square for 3x2 grid */
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #000;
}

.sdg-un-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 1;
}

.sdg-un-card:hover .sdg-un-bg {
  transform: scale(1.08);
}

/* Outer tint to ensure text readable */
.sdg-un-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: background 0.4s ease;
}

.sdg-un-card:hover::after,
.sdg-un-card:focus-visible::after {
  background: rgba(0, 0, 0, 0.8);
  /* Darken heavily on hover/focus for text */
}

/* Default Badge (Bottom Left Square) */
.sdg-un-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  color: var(--white);
  display: block;
  z-index: 3;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Use standard active/focus fallbacks for mobile as well since hover is unreliable */
.sdg-un-card:hover .sdg-un-badge,
.sdg-un-card:focus-visible .sdg-un-badge {
  opacity: 0;
  transform: translateY(15px);
}

.sdg-un-badge-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sdg-un-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 0.85;
}

.sdg-un-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.02em;
}

.sdg-un-icon {
  width: 48px;
  height: 48px;
  align-self: flex-start;
  color: var(--white);
}

.sdg-badge-icon {
  position: absolute;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 140px !important;
  height: auto !important;
  display: block !important;
  z-index: 3;
}

/* Hover Content */
.sdg-un-hover-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  z-index: 4;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.sdg-un-card:hover .sdg-un-hover-content,
.sdg-un-card:focus-visible .sdg-un-hover-content {
  opacity: 1;
  transform: translateY(0);
}

/* Explicit class for mobile tap */
.sdg-un-card.is-active .sdg-un-badge {
  opacity: 0;
  transform: translateY(15px);
}

.sdg-un-card.is-active::after {
  background: rgba(0, 0, 0, 0.8);
}

.sdg-un-card.is-active .sdg-un-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.sdg-un-hover-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--s4);
  font-weight: 500;
}

.sdg-un-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: gap 0.3s ease;
}

.sdg-un-card:hover .sdg-un-readmore:hover {
  gap: 14px;
}

/* Responsive */
@media (max-width: 1400px) {
  .sdg-un-badge {
    padding: 1.25rem;
  }

  .sdg-un-num {
    font-size: 1.8rem;
  }

  .sdg-un-title {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .sdg-un-split-grid {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }

  .sdg-un-text-col {
    padding-right: 0;
  }

  .sdg-un-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sdg-un-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sdg-un-card {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .sdg-un-grid {
    grid-template-columns: 1fr;
  }

  .sdg-un-card {
    aspect-ratio: 4 / 3;
  }

  .sdg-un-badge {
    width: 100px;
    height: 100px;
  }

  .sdg-badge-icon {
    max-width: 100px !important;
  }
}

/* ================================================
   INVESTOR RELATIONS & ANNOUNCEMENTS
   ================================================ */
.ir-section {
  padding: var(--s16) 0;
  background-color: var(--bg-light);
  /* Off-white warm background */
  border-top: 1px solid var(--border);
}

.ir-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s16);
  align-items: flex-start;
}



.ir-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
}

.ir-header.border-bottom {
  border-bottom: 1px solid var(--border);
}

.ir-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0;
}

.ir-view-more {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  /* Put arrow on the left of text */
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ir-view-more:hover {
  opacity: 0.7;
}

.circle-arrow-black {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
}

.circle-arrow-black svg {
  width: 14px;
  height: 14px;
}

/* Left: Featured Card / Carousel */
.insights-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.insights-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.insights-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.insights-carousel-dots {
  position: absolute;
  bottom: var(--s4);
  left: var(--s6);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.insights-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.insights-carousel-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.ir-featured-card {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.ir-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e6e9;
}

.ir-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ir-featured-card:hover .ir-image-wrapper img {
  transform: scale(1.03);
}

.ir-meta {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: var(--s3);
  display: block;
}

.ir-featured-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-heading);
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.ir-featured-title:hover {
  text-decoration: underline;
}

.ir-featured-content {
  min-width: 0;
  overflow: hidden;
}

/* Right: Announcements List */
.ir-announcement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ir-announcement-list li {
  border-bottom: 1px solid var(--border);
}

.ir-list-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s6) 0;
  text-decoration: none;
  color: var(--text-dark);
}

.ir-list-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
}

.ir-list-text h4 {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.ir-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ir-list-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.ir-list-arrow svg {
  width: 24px;
  height: 24px;
}

.ir-list-link:hover .ir-list-text h4 {
  color: var(--green-forest);
}

.ir-list-link:hover .ir-list-arrow {
  transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 900px) {
  .ir-split-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}
/* ================================================
   FEATURED PROJECTS GRID — with gap override
   ================================================ */
.featured-projects-grid {
  gap: 1.5rem;
}

/* ================================================
   MOBILE RESPONSIVE ENHANCEMENTS
   Prevents horizontal overflow across all pages
   ================================================ */

/* Block all horizontal document-level scroll */
html {
  overflow-x: hidden;
}

/* Ensure nothing exceeds viewport */
body {
  max-width: 100vw;
}

/* ── NAV — show toggle at 900px (matches injected header component) ── */
@media (max-width: 900px) {
  /* Hide gold separator, reset logo padding */
  .nav-logo {
    padding-right: 0;
  }

  .nav-logo::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 80px) !important;
    max-height: calc(100dvh - 80px) !important;
    background: var(--white) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: var(--s4) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    border-top: 1px solid var(--border) !important;
    z-index: 99999 !important;
    box-shadow: none !important;
    transform: none !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
  }

  /* Support both class names used across the codebase */
  .nav-menu.is-open,
  .nav-menu.open {
    display: flex !important;
  }

  .nav-link {
    width: 100%;
    padding: 14px var(--s4);
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--green-pale);
    border-radius: var(--radius);
    margin: 4px 0 4px var(--s4);
    padding: var(--s2) 0;
    display: none;
  }

  .nav-item.mobile-open .nav-dropdown {
    display: block;
  }

  .nav-chevron {
    display: none;
  }

  .dropdown-link {
    color: var(--gray);
    padding: 8px var(--s4);
    font-size: 0.85rem;
    border-left: none;
  }

  .dropdown-link:hover {
    background: transparent;
    color: var(--green-forest);
    padding-left: calc(var(--s4) + 8px);
    border-left-color: transparent;
  }
}

/* ── HERO — mobile refinements ── */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 520px;
    padding-bottom: var(--s12);
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: var(--s8);
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    max-width: 100% !important;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100% !important;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s3);
  }

  /* ABOUT — keep quote overlapping the image on mobile */
  .about-visual {
    padding-bottom: 32px;
  }

  .about-quote {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 220px;
    padding: var(--s4);
    border-radius: var(--radius-lg);
    transform: translateX(8px);
  }

  .about-quote p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--s4);
  }

  .section {
    padding: var(--s10) 0;
  }

  .hero-content {
    padding-top: 96px;
    padding-left: var(--s4);
    padding-right: var(--s4);
  }

  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  /* Services / featured grid: always 1 col on very small screens */
  .amada-v2-services-grid {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
  }

  .svc-card {
    aspect-ratio: 16 / 9;
  }

  .services-heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .services-subhead {
    font-size: 0.9rem;
  }

  /* Insights list thumbnail */
  .insight-list-item {
    grid-template-columns: 80px 1fr;
    gap: var(--s3);
  }

  .insight-thumb {
    width: 80px;
    height: 60px;
  }

  .insight-list-title {
    font-size: 1rem !important;
  }

  /* Section headers */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ── ABOUT PAGE: detail rows ── */
@media (max-width: 600px) {
  .svc-detail-row,
  .svc-detail-row:nth-child(even),
  .sdg-detail-row,
  .sdg-detail-row:nth-child(even) {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: var(--s8);
    margin-bottom: var(--s12) !important;
  }

  .svc-detail-row:nth-child(even) > div,
  .sdg-detail-row:nth-child(even) > div {
    direction: ltr;
  }

  .sdg-detail-row:nth-child(even) .sdg-un-feature-badge {
    left: 0 !important;
    right: auto !important;
  }
}

/* ── FOOTER ── */
@media (max-width: 480px) {
  .site-footer {
    padding-top: var(--s12);
  }

  .footer-copy,
  .footer-disclaimer {
    font-size: 0.68rem;
  }

  .footer-bottom {
    gap: var(--s4);
  }
}

/* ── ARTICLE HERO ── */
@media (max-width: 768px) {
  .article-hero-content {
    bottom: 1.5rem;
    padding: 0 1.25rem;
  }

  .article-hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .article-body-wrap {
    padding: 2rem 1.25rem 3rem;
  }
}

/* ── DOC DOWNLOAD BOX ── */
@media (max-width: 480px) {
  .doc-download-box {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
  }

  .btn-download {
    margin-left: 0;
    display: block;
    text-align: center;
  }
}

/* ── CONTACT FORM ── */
@media (max-width: 480px) {
  .contact-form-card {
    padding: var(--s6) var(--s4) !important;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-submit-row .note {
    max-width: 100%;
  }
}

/* ── ABOUT PAGE SPECIFIC (used across multiple pages) ── */
@media (max-width: 600px) {
  .name-feature {
    flex-direction: column;
    padding: var(--s8) !important;
    gap: var(--s6);
  }

  .name-feature-logo {
    font-size: 3rem !important;
  }

  .shareholder-grid {
    grid-template-columns: 1fr !important;
  }

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

  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .people-grid {
    grid-template-columns: 1fr !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .timeline {
    padding-left: var(--s6);
  }

  .about-subnav-inner {
    padding: var(--s3) var(--s4) !important;
    gap: 6px;
  }

  .about-subnav a {
    padding: 7px 14px;
    font-size: 0.68rem;
  }

  .mission-block blockquote {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
}

/* ── UTILITY: prevent long words/URLs from overflowing ── */
.hero-title,
.hero-subtitle,
.section-title,
.body-text,
.svc-title,
.svc-desc,
.ir-featured-title,
.insight-list-title,
.article-card-title,
.person-name,
.value-title {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── BACK TO TOP: don't overlap content too close to edge on small screens ── */
@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ================================================
   COMPREHENSIVE MOBILE IMPROVEMENTS
   Targets all pages — tight spacing, readable text,
   correct proportions on small viewports
   ================================================ */

/* ── Shared section padding tightening on mobile ── */
@media (max-width: 768px) {
  .insights-section {
    padding: var(--s12) 0;
  }

  .ir-section {
    padding: var(--s12) 0;
  }

  .sdg-un-section {
    padding: var(--s12) 0;
  }

  .services-section {
    padding: var(--s12) 0;
  }

  /* Services header on mobile */
  .services-header {
    margin-bottom: var(--s8);
  }

  /* About grid vertical gap tighter on tablet */
  .about-grid {
    gap: var(--s8);
  }

  /* IR split grid stacks */
  .ir-split-grid {
    gap: var(--s8);
  }

  /* Featured Insight title responsive size */
  .ir-featured-title {
    font-size: 1.1rem;
  }

  /* Article list title */
  .insight-list-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Ensure carousel dots don't overlap content */
  .insights-carousel-dots {
    top: auto;
    bottom: var(--s4);
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }

  /* Footer logo slightly larger on mobile */
  .footer-logo {
    height: 40px;
  }

  /* Hero side padding tight on small screens */
  .hero-content {
    padding-left: var(--s5);
    padding-right: var(--s5);
  }

  /* Make nav-logo slightly smaller on mobile for balance */
  .nav-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  /* Insights section */
  .insights-section,
  .ir-section {
    padding: var(--s10) 0;
  }

  /* IR carousel image aspect ratio — less tall on tiny screens */
  .ir-image-wrapper {
    aspect-ratio: 16 / 10;
  }

  /* Services cards: portrait on tiny screens */
  .svc-card {
    aspect-ratio: 3 / 2;
  }

  /* Section subtitles */
  .services-subhead,
  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  /* SDG section text column */
  .sdg-un-text-col {
    padding-right: 0;
  }

  /* Project card content padding tighter */
  .project-content {
    padding: 1.5rem;
  }

  /* Article hero content */
  .ir-featured-content {
    padding: 0 var(--s1);
  }

  /* Footer nav: sensible on tiny */
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }

  /* Footer brand */
  .footer-brand {
    gap: var(--s4);
  }

  /* Footer top smaller padding */
  .footer-top {
    padding-bottom: var(--s10);
  }

  /* About quote tighter on small screens */
  .about-quote {
    padding: var(--s4) var(--s5);
  }
}

/* ── Hero eyebrow dash: smaller on very narrow screens ── */
@media (max-width: 380px) {
  .hero-eyebrow::before {
    width: 14px;
  }

  .hero-content {
    padding-left: var(--s3);
    padding-right: var(--s3);
  }
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */

/* Base hidden state for sections */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Revealed state */
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-on-scroll.reveal-left {
  transform: translateX(-40px);
}
.reveal-on-scroll.reveal-left.is-revealed {
  transform: translateX(0);
}

/* Slide from right */
.reveal-on-scroll.reveal-right {
  transform: translateX(40px);
}
.reveal-on-scroll.reveal-right.is-revealed {
  transform: translateX(0);
}

/* Scale up */
.reveal-on-scroll.reveal-scale {
  transform: scale(0.92);
}
.reveal-on-scroll.reveal-scale.is-revealed {
  transform: scale(1);
}

/* Staggered children inside revealed sections */
.reveal-on-scroll .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.is-revealed .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.reveal-child:nth-child(1) { transition-delay: 0s; }
.reveal-child:nth-child(2) { transition-delay: 0.08s; }
.reveal-child:nth-child(3) { transition-delay: 0.16s; }
.reveal-child:nth-child(4) { transition-delay: 0.24s; }
.reveal-child:nth-child(5) { transition-delay: 0.32s; }
.reveal-child:nth-child(6) { transition-delay: 0.40s; }

/* Utility delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll .reveal-child {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Sectors Carousel */
.sectors-carousel-section {
  position: relative;
  overflow: hidden;
}

.sectors-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.sectors-carousel-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.sectors-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 24px;
}

.sector-carousel-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
}

@media (max-width: 1100px) {
  .sector-carousel-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .sector-carousel-slide {
    flex: 0 0 calc(100% - 24px);
    min-width: calc(100% - 24px);
  }
}

/* Sector cards use same style as svc-card but without tags/icons */
.sector-home-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  background: var(--ink);
  cursor: pointer;
}

.sector-home-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sector-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
  filter: brightness(0.65);
}

.sector-home-card:hover .sector-home-img img {
  transform: scale(1.08);
  filter: brightness(0.42);
}

.sector-home-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

.sector-home-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.sector-home-card:hover::after {
  transform: scaleX(1);
}

.sector-home-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.sector-home-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.sector-home-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease 0.05s;
}

.sector-home-card:hover .sector-home-desc {
  max-height: 100px;
  opacity: 1;
}

.sector-home-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  margin-top: var(--s2);
}

.sector-home-card:hover .sector-home-cta {
  opacity: 1;
  transform: translateY(0);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-forest);
  border: 2px solid var(--green-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.carousel-nav:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.sectors-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.sectors-carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sectors-carousel-dots .dot.active {
  background: var(--green-forest);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-nav { display: none; }
  .sector-home-card { aspect-ratio: 4/3; }
  .sector-home-desc { max-height: 100px; opacity: 1; }
  .sector-home-cta { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TEAM PAGES — NIH-inspired compact cards
   ============================================================ */


.team-section {
  padding: var(--s10) 0 var(--s16);
}
.team-section.alt-bg {
  background: var(--off-white);
}
.team-section.dark-bg {
  background: var(--dark);
}

.team-section-header {
  text-align: center;
  margin-bottom: var(--s12);
  position: relative;
}
.team-section-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--green-forest);
  margin: var(--s4) auto 0;
  border-radius: 1px;
}
.team-section-header h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.team-section-header h2 span.dot {
  color: var(--gold);
}
.team-section-header p {
  max-width: 600px;
  margin: var(--s3) auto 0;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* — NIH-inspired compact card — */
.team-grid-nih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
@media (max-width: 1100px) { .team-grid-nih { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid-nih { grid-template-columns: 1fr; gap: var(--s4); } }

.team-card-nih {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e9ebee;
  transition: all 0.5s ease;
  cursor: pointer;
}
.team-card-nih:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.team-card-nih__inner {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.team-card-nih__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--off-white);
}
.team-card-nih__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.team-card-nih:hover .team-card-nih__image img {
  transform: scale(1.06);
  filter: grayscale(60%) contrast(1.05);
}

.team-card-nih__content {
  padding: 18px 14px 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e9ebee;
  transition: all 0.5s ease;
  position: relative;
}

.team-card-nih__name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.team-card-nih__role {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-forest);
  margin-top: 4px;
  line-height: 1.3;
}

.team-card-nih__org {
  font-size: 0.65rem;
  color: var(--gray);
  margin-top: 2px;
  font-style: italic;
}

/* — Hover social icons (NIH style) — */
.team-card-nih__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e9ebee;
  padding: 14px;
  text-align: center;
  transform-origin: bottom center;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}
.team-card-nih:hover .team-card-nih__hover {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.team-card-nih:hover .team-card-nih__content {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
}

.team-card-nih__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.team-card-nih__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f5f8;
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.team-card-nih__social a:hover {
  background: var(--gold);
  color: var(--ink);
}
.team-card-nih__hover .team-card-nih__name {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.team-card-nih__hover .team-card-nih__role {
  font-size: 0.55rem;
  margin-bottom: 8px;
}

/* — CIO Featured Layout — */
.cio-feature-nih {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: var(--s12);
  align-items: start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ebee;
}
@media (max-width: 1024px) { .cio-feature-nih { grid-template-columns: 1fr; gap: 0; } }

.cio-feature-nih__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark);
}
.cio-feature-nih__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.7s ease;
}
.cio-feature-nih:hover .cio-feature-nih__image img {
  transform: scale(1.04);
}
.cio-feature-nih__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(13, 31, 13, 0.4) 100%);
}

.cio-feature-nih__body {
  padding: var(--s10) var(--s10) var(--s10) 0;
}
@media (max-width: 1024px) { .cio-feature-nih__body { padding: var(--s8); } }

.cio-feature-nih__eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s4);
}
.cio-feature-nih__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.cio-feature-nih__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: var(--s2);
  letter-spacing: -0.015em;
}

.cio-feature-nih__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-forest);
  margin-bottom: var(--s5);
  line-height: 1.4;
}

.cio-feature-nih__bio {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: var(--s6);
}

/* — Team subnav — */
.team-subnav {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.team-subnav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s3) var(--s8);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.team-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.team-subnav a:hover,
.team-subnav a.active {
  background: var(--green-forest);
  color: #fff;
  border-color: var(--green-forest);
  box-shadow: 0 2px 8px rgba(7, 121, 5, 0.18);
}

/* — Footer transition — */
.team-footer-transition {
  height: 1px;
  background: var(--border);
}

/* ================================================
   MOBILE GRID OPTIMIZATION
   Keep content in 2 columns where possible
   instead of stacking everything vertically
   ================================================ */

@media (max-width: 600px) {
  .amada-v2-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .team-grid-nih:not(.team-grid-5) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .updates-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .svc-card {
    aspect-ratio: 3 / 2;
  }
  .svc-tag {
    display: none;
  }
  .svc-title {
    font-size: 0.9rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .svc-desc {
    display: none;
  }
}

@media (max-width: 480px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sdg-un-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .goals-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .res-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 380px) {
  .people-grid {
    grid-template-columns: 1fr !important;
  }
  .values-grid {
    grid-template-columns: 1fr !important;
  }
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  .sdg-un-grid {
    grid-template-columns: 1fr !important;
  }
  .goals-grid {
    grid-template-columns: 1fr !important;
  }
  .amada-v2-services-grid {
    grid-template-columns: 1fr !important;
  }
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .articles-grid {
    grid-template-columns: 1fr !important;
  }
  .updates-grid {
    grid-template-columns: 1fr !important;
  }
  .res-grid {
    grid-template-columns: 1fr !important;
  }
  .news-grid {
    grid-template-columns: 1fr !important;
  }
}
