/* Trautbuck Energy – custom styles (Tailwind handles most layout) */

:root {
  --green: #1E663E;
  --green-dark: #184f30;
  --lime: #7AB03C;
  --orange: #E8781A;
  --blue: #0B8EBD;
  --ink: #13241A;
  --mute: #5A6B60;
  --paper: #F3F5F1;
  --sand: #E8ECE4;
  --white: #ffffff;
  --topbar-h: 40px;
  --nav-h: 80px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
}

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

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 36, 26, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(19, 36, 26, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

/* Top bar – lime green */
.top-bar {
  background: #7AB03C;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  min-height: var(--topbar-h);
}

.top-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  min-width: 0;
}

.top-bar-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.top-bar-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.top-bar-sep {
  opacity: 0.45;
  font-weight: 500;
  margin: 0 0.1rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.top-bar-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.top-bar-social a,
.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.top-bar-social a:hover,
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.social-svg {
  display: block;
  fill: currentColor;
  color: #ffffff;
}

.footer-social {
  margin-top: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name-main {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-name-sub {
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  font-family: Poppins, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mute);
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green);
}

.main-nav a.nav-cta {
  background: var(--lime);
  color: var(--white) !important;
  margin-left: 0.55rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  line-height: 1.2;
}

.main-nav a.nav-cta:hover {
  background: #6a9c34;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 36, 26, 0.15);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.is-inview .hero-media img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 28, 18, 0.35) 0%, rgba(10, 28, 18, 0.72) 70%),
    linear-gradient(180deg, rgba(10, 28, 18, 0.45) 0%, rgba(10, 28, 18, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  font-family: Poppins, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-brand span {
  display: inline;
  color: var(--lime);
}

.hero h1 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  max-width: 24ch;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.hero-lead,
.hero p.hero-lead {
  max-width: 36ch;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: Poppins, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero .btn-row {
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: #cf6812; }

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

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

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

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

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

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

.btn-lime {
  background: #7AB03C;
  color: #ffffff;
}

.btn-lime:hover {
  background: #6a9c34;
  color: #ffffff;
}

.btn-outline-lime {
  background: transparent;
  color: #7AB03C;
  border-color: #7AB03C;
}

.btn-outline-lime:hover {
  background: #7AB03C;
  color: #ffffff;
}

/* ---------- About showcase (home) ---------- */
.about-showcase {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-copy .section-title {
  max-width: 16ch;
}

.about-copy .section-lead {
  margin-bottom: 1rem;
}

.about-body {
  color: var(--mute);
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about-heading {
  display: flex;
  gap: 0.9rem;
  align-items: stretch;
  margin-bottom: 1.1rem;
}

.about-heading-mark {
  width: 5px;
  flex-shrink: 0;
  border-radius: 99px;
  background: #7AB03C;
  align-self: stretch;
  min-height: 100%;
}

.about-heading h2 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-transform: none;
}

.about-heading h2 span {
  display: block;
  color: #7AB03C;
}

.about-lead {
  margin: 0 0 1rem;
  max-width: 34ch;
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--mute);
}

.about-copy-text {
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.about-copy-text p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 48ch;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.about-points li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  background: var(--white);
  border: 1px solid rgba(19, 36, 26, 0.07);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(19, 36, 26, 0.04);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7AB03C;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 210px 150px 170px;
  gap: 0.7rem;
  position: relative;
}

.about-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  background: var(--sand);
}

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

.about-mosaic figure:hover img {
  transform: scale(1.05);
}

.mosaic-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.mosaic-side {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.mosaic-side-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.mosaic-wide {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.mosaic-wide-2 {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.mosaic-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  background: #7AB03C;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(19, 36, 26, 0.18);
}

@media (max-width: 900px) {
  .about-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-copy .section-title {
    max-width: none;
  }

  .about-heading h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .about-lead {
    max-width: none;
  }

  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 160px;
  }

  .mosaic-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .mosaic-side {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .mosaic-side-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .mosaic-wide {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .mosaic-wide-2 {
    display: none;
  }
}


/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-kicker {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--mute);
  max-width: 54ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.page-banner {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 4rem 1.25rem 3.25rem;
  overflow: hidden;
}

.page-banner--photo {
  min-height: 0;
}

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

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 16, 0.92) 0%, rgba(10, 22, 16, 0.78) 48%, rgba(10, 22, 16, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 22, 16, 0.35) 0%, rgba(10, 22, 16, 0.2) 40%, rgba(10, 22, 16, 0.55) 100%);
}

.page-banner .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.page-banner-kicker {
  margin: 0 0 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7AB03C;
}

.page-banner h1 {
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.page-banner p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

/* ---------- About page ---------- */
.about-label {
  margin: 0 0 0.85rem;
  font-family: Poppins, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7AB03C;
}

.about-display {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
}

.about-display span {
  display: block;
  color: var(--green);
}

.about-lead {
  margin: 1rem 0 0;
  max-width: 46ch;
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-intro {
  margin-bottom: 2.75rem;
  max-width: 38rem;
}

/* Story — media collage + copy */
.about-story {
  background: #fff;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.8rem;
  min-height: 520px;
}

.asm-hero {
  margin: 0;
  border-radius: 6px 28px 28px 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 24px 50px rgba(19, 36, 26, 0.14);
}

.asm-hero img,
.asm-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.asm-stack {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  min-height: 520px;
}

.asm-stack img {
  border-radius: 22px;
  min-height: 0;
  box-shadow: 0 16px 34px rgba(19, 36, 26, 0.1);
}

.asm-stack img:first-child {
  border-radius: 22px 22px 10px 22px;
}

.asm-stack img:last-child {
  border-radius: 22px 10px 22px 22px;
}

.asm-plaque {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  padding: 0.85rem 1.05rem;
  background: rgba(15, 36, 24, 0.9);
  color: #fff;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.asm-plaque strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.asm-plaque span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-story-text {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.1rem;
}

.about-story-text p {
  margin: 0;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 48ch;
}

.about-story-meta {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(19, 36, 26, 0.1);
}

.about-story-meta strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.about-story-meta span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--mute);
}

/* Vision / mission — full-bleed photo tiles */
.about-vm {
  padding: 0;
}

.about-vm-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.about-vm-tile {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
}

.about-vm-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-vm-tile:hover img {
  transform: scale(1.05);
}

.about-vm-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 16, 0.15) 0%, rgba(10, 22, 16, 0.55) 45%, rgba(10, 22, 16, 0.92) 100%);
  z-index: 1;
}

.about-vm-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.25rem 2.6rem;
  color: #fff;
  max-width: 34rem;
}

.about-vm-body span {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7AB03C;
}

.about-vm-body p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
}

/* Values — alternating photo rows */
.about-values {
  background: #fff;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.about-value-journey {
  display: grid;
  gap: 2rem;
}

.about-value-shot {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f7f1;
  border: 1px solid rgba(19, 36, 26, 0.05);
}

.about-value-shot--flip .about-value-pic {
  order: 2;
}

.about-value-shot--flip .about-value-copy {
  order: 1;
}

.about-value-pic {
  min-height: 300px;
  overflow: hidden;
}

.about-value-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.about-value-shot:hover .about-value-pic img {
  transform: scale(1.05);
}

.about-value-copy {
  padding: 2.25rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-value-num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7AB03C;
}

.about-value-copy h3 {
  margin: 0 0 0.7rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.about-value-copy p {
  margin: 0;
  max-width: 38ch;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Why — photo mosaic */
.about-why {
  background: #0f2418;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.about-why .about-label {
  color: #7AB03C;
}

.about-why .about-display {
  color: #fff;
}

.about-why-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.85rem;
}

.about-why-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.about-why-tile--wide {
  grid-row: 1 / 3;
}

.about-why-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-why-tile:hover img {
  transform: scale(1.06);
}

.about-why-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 16, 0.1) 0%, rgba(10, 22, 16, 0.35) 42%, rgba(10, 22, 16, 0.92) 100%);
  z-index: 1;
}

.about-why-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.3rem 1.4rem;
  color: #fff;
}

.about-why-copy h3 {
  margin: 0 0 0.4rem;
  font-family: Poppins, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.about-why-tile--wide .about-why-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.about-why-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34ch;
}

/* Where we work — full width photo + panel */
.about-base {
  background: #fff;
  padding: 0;
}

.about-base-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
}

.about-base-photo {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.about-base-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 620px;
}

.about-base-panel {
  background: #f4f7f1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-check {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.about-check li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: #7AB03C;
}

/* Sectors — photo cards */
.about-sectors {
  background: #fff;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.about-sector-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.about-sector-card {
  display: flex;
  flex-direction: column;
  background: #f7f9f5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 26, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(19, 36, 26, 0.1);
}

.about-sector-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #13241a;
}

.about-sector-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-sector-card:hover .about-sector-media img {
  transform: scale(1.06);
}

.about-sector-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.about-sector-body h3 {
  margin: 0 0 0.45rem;
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.about-sector-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .about-why-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px 220px;
  }

  .about-why-tile--wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  .about-story-layout,
  .about-vm-pair,
  .about-base-band,
  .about-value-shot,
  .about-value-shot--flip,
  .about-sector-gallery {
    grid-template-columns: 1fr;
  }

  .about-value-shot--flip .about-value-pic,
  .about-value-shot--flip .about-value-copy {
    order: unset;
  }

  .about-story-media,
  .asm-hero,
  .asm-stack {
    min-height: 0;
  }

  .about-story-media {
    grid-template-columns: 1fr 1fr;
  }

  .asm-hero {
    grid-column: 1 / 3;
    min-height: 260px;
  }

  .asm-stack {
    grid-column: 1 / 3;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px;
  }

  .about-vm-tile {
    min-height: 360px;
  }

  .about-value-pic {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .about-base-photo img {
    min-height: 320px;
  }

  .about-base-panel {
    padding: 2.5rem 1.5rem;
  }

  .about-sector-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .about-story,
  .about-values,
  .about-why,
  .about-sectors {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .about-story-media,
  .asm-stack {
    grid-template-columns: 1fr;
  }

  .asm-hero {
    grid-column: auto;
  }

  .asm-stack {
    grid-column: auto;
    grid-template-rows: none;
  }

  .asm-stack img {
    height: 180px;
  }

  .about-story-meta {
    grid-template-columns: 1fr;
  }

  .about-why-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-why-tile,
  .about-why-tile--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .about-sector-gallery {
    grid-template-columns: 1fr;
  }
}
/* ---------- Modern cards & grids ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-head .section-lead { margin-bottom: 0; }

.stat-wrap {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: -2.75rem auto 0;
  padding: 0 1.25rem;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #7AB03C;
  border-radius: 18px;
  border: none;
  box-shadow: 0 18px 40px rgba(19, 36, 26, 0.14);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 1.45rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.stat-item strong {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-item span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-family: Poppins, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.split-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(19, 36, 26, 0.14);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.split-media .float-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-grid,
.project-grid,
.product-grid,
.blog-grid,
.pillar-grid,
.impact-grid,
.why-grid,
.process-grid {
  display: grid;
  gap: 1.35rem;
}

.service-grid { grid-template-columns: repeat(3, 1fr); }
.project-grid { grid-template-columns: repeat(2, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.services-home {
  background: var(--white);
}

.services-home-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-home-head .section-lead {
  margin: 0;
  max-width: 54ch;
}

.title-ribbon {
  display: inline-flex;
  align-items: center;
  background: #7AB03C;
  color: #fff;
  padding: 0.65rem 1.6rem 0.65rem 1.25rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(122, 176, 60, 0.28);
}

.title-ribbon h2 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid rgba(19, 36, 26, 0.06);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 176, 60, 0.45);
  box-shadow: 0 22px 48px rgba(19, 36, 26, 0.12);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--sand);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}

.service-card-body h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--ink);
}

.service-card-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.service-card .card-link {
  margin-top: 1rem;
  color: var(--green);
}

.service-card:hover .card-link {
  color: #7AB03C;
}

/* Alternating cards – bottom green border */
.service-card--border {
  border-bottom: 4px solid #7AB03C;
}

.service-card--border:hover {
  border-bottom-color: #7AB03C;
}

.pillar-grid { grid-template-columns: repeat(2, 1fr); }
.impact-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }

/* ---------- Impact sectors (timeline matrix) ---------- */
.impact-section {
  background:
    linear-gradient(180deg, #f4f7f1 0%, #eef4ea 55%, #f7f9f5 100%);
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
  overflow: hidden;
}

.impact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.5rem;
  align-items: stretch;
}

.impact-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 2rem);
}

.impact-side .title-ribbon {
  margin-bottom: 0.7rem;
}

.impact-heading {
  margin: 0 0 0.5rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 10ch;
}

.impact-intro {
  margin: 0 0 0.85rem;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34ch;
}

.impact-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(122, 176, 60, 0.28);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(19, 36, 26, 0.05);
}

.impact-count strong {
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #7AB03C;
  line-height: 1;
}

.impact-count span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mute);
}

.impact-photos {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-height: 320px;
  height: clamp(320px, 38vh, 420px);
}

.impact-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 14px 32px rgba(19, 36, 26, 0.12);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.impact-photos img:first-child {
  border-radius: 16px 16px 16px 28px;
}

.impact-photos img:last-child {
  margin-top: 1.75rem;
  height: calc(100% - 1.75rem);
  border-radius: 28px 16px 16px 16px;
}

.impact-side:hover .impact-photos img:first-child {
  transform: translateY(-4px);
}

.impact-side:hover .impact-photos img:last-child {
  transform: translateY(4px);
}

.impact-matrix {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding-left: 0.15rem;
}

.impact-rail {
  position: absolute;
  left: 1.55rem;
  top: 1.7rem;
  bottom: 1.7rem;
  width: 2px;
  background: rgba(122, 176, 60, 0.18);
  border-radius: 999px;
  z-index: 0;
  overflow: hidden;
}

.impact-rail-fill {
  display: block;
  width: 100%;
  height: var(--rail, 16%);
  background: linear-gradient(180deg, #7AB03C, var(--green));
  border-radius: inherit;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.1rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.15rem 1.15rem 0.35rem;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    padding 0.35s ease;
}

.impact-row.reveal {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.6s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    padding 0.35s ease;
  transition-delay: 0s;
}

.impact-row.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}

.impact-row.is-active,
.impact-row:hover {
  background: #fff;
  border-color: rgba(122, 176, 60, 0.28);
  box-shadow: 0 16px 36px rgba(19, 36, 26, 0.08);
  padding-left: 0.65rem;
  padding-right: 1.25rem;
  transition-delay: 0s;
}

.impact-row.reveal.is-visible.is-active,
.impact-row.reveal.is-visible:hover {
  transform: translateX(4px);
  transition-delay: 0s;
}

.impact-node {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid rgba(122, 176, 60, 0.35);
  box-shadow: 0 0 0 6px rgba(244, 247, 241, 0.95);
  position: relative;
  z-index: 2;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.impact-node span {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #7AB03C;
  transition: color 0.3s ease;
}

.impact-row.is-active .impact-node,
.impact-row:hover .impact-node {
  background: #7AB03C;
  border-color: #7AB03C;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(122, 176, 60, 0.16);
}

.impact-row.is-active .impact-node span,
.impact-row:hover .impact-node span {
  color: #fff;
}

.impact-row-copy {
  min-width: 0;
  opacity: 0.92;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 0.08s);
}

.impact-row.reveal.is-visible .impact-row-copy {
  opacity: 1;
  transform: none;
}

.impact-row h3 {
  margin: 0 0 0.3rem;
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.3s ease;
}

.impact-row.is-active h3,
.impact-row:hover h3 {
  color: var(--green);
}

.impact-row p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 52ch;
}

.impact-row-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #7AB03C;
  opacity: 0;
  transform: translateX(-12px) scale(0.85);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.impact-row.is-active .impact-row-arrow,
.impact-row:hover .impact-row-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (max-width: 900px) {
  .impact-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .impact-side {
    position: static;
    max-height: none;
  }

  .impact-heading {
    max-width: none;
  }

  .impact-photos {
    height: 220px;
    min-height: 220px;
    margin-top: 1.1rem;
  }

  .impact-rail {
    left: 1.35rem;
  }

  .impact-row {
    grid-template-columns: 2.8rem 1fr;
    gap: 0.75rem 0.85rem;
    padding-right: 0.5rem;
  }

  .impact-row-arrow {
    display: none;
  }

  .impact-node {
    width: 2.8rem;
    height: 2.8rem;
  }

  .impact-row.reveal {
    transform: translateY(24px);
  }

  .impact-row.reveal.is-visible.is-active,
  .impact-row.reveal.is-visible:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact-row.reveal,
  .impact-row-copy,
  .impact-node,
  .impact-row-arrow,
  .impact-rail-fill,
  .impact-photos img {
    transition: none !important;
    animation: none !important;
  }

  .impact-row.reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Selected work (cards) ---------- */
.works-section {
  background: #fff;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.works-header .title-ribbon {
  margin-bottom: 1rem;
}

.works-heading {
  margin: 0 0 0.55rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.works-lead {
  margin: 0;
  max-width: 48ch;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.6;
}

.works-section .project-grid {
  margin-top: 0;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card--border {
  border-bottom: 4px solid #7AB03C;
}

.project-card--border:hover {
  border-bottom-color: #7AB03C;
}

.project-card-type {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7AB03C;
}

.project-card-loc {
  margin-top: 0.85rem !important;
  font-size: 0.88rem !important;
  color: var(--green) !important;
  font-weight: 600 !important;
}

@media (max-width: 700px) {
  .works-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Products (home cards) ---------- */
.products-section {
  background: #f4f7f1;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.products-header .title-ribbon {
  margin-bottom: 1rem;
}

.products-heading {
  margin: 0 0 0.55rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.products-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.6;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.06);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 176, 60, 0.45);
  box-shadow: 0 22px 48px rgba(19, 36, 26, 0.12);
}

.product-card--border {
  border-bottom: 4px solid #7AB03C;
}

.product-card--border:hover {
  border-bottom-color: #7AB03C;
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(122, 176, 60, 0.14);
  color: var(--green);
}

.product-card-body h3 {
  margin: 0 0 0.45rem;
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.product-card-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.product-card .card-link {
  margin-top: 1rem;
}

.product-card:hover .card-link {
  color: #7AB03C;
}

@media (max-width: 900px) {
  .products-section .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Projects page (case studies) ---------- */
.projects-page {
  padding-top: 3.5rem;
}

.projects-list {
  display: grid;
  gap: 1.75rem;
}

.project-case {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f7f1;
  border: 1px solid rgba(19, 36, 26, 0.06);
  box-shadow: 0 14px 34px rgba(19, 36, 26, 0.06);
}

.project-case--flip .project-case-media {
  order: 2;
}

.project-case--flip .project-case-copy {
  order: 1;
}

.project-case-media {
  position: relative;
  min-height: 280px;
  background: #13241a;
}

.project-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-case:hover .project-case-media img {
  transform: scale(1.04);
}

.project-case-copy {
  padding: 1.75rem 1.7rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-case-type {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7AB03C;
}

.project-case-copy h2 {
  margin: 0 0 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.project-case-summary {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.project-case-details {
  margin: 0 0 1.15rem;
  color: var(--mute);
  font-size: 0.94rem;
  line-height: 1.6;
}

.project-case-meta {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 36, 26, 0.08);
  display: grid;
  gap: 0.65rem;
}

.project-case-meta div {
  display: grid;
  gap: 0.15rem;
}

.project-case-meta dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}

.project-case-meta dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.works-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .project-case,
  .project-case--flip {
    grid-template-columns: 1fr;
  }

  .project-case--flip .project-case-media,
  .project-case--flip .project-case-copy {
    order: unset;
  }

  .project-case-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
}

/* ---------- How we work ---------- */
.process-section {
  background: #0f2418;
  color: #fff;
  padding-top: 4.5rem;
  padding-bottom: 4.75rem;
}

.process-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: end;
  margin-bottom: 3rem;
}

.process-header-copy h3 {
  margin: 0 0 0.55rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.process-header-copy p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.process-journey {
  display: grid;
  gap: 1.25rem;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-row--flip .process-row-copy {
  order: 2;
}

.process-row--flip .process-row-media {
  order: 1;
}

.process-row-copy {
  position: relative;
  padding: 2rem 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.process-arrow {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  color: rgba(122, 176, 60, 0.45);
  pointer-events: none;
  display: block;
}

.process-row--flip .process-arrow {
  right: auto;
  left: 1.25rem;
  transform: scaleX(-1);
}

.process-row-text {
  position: relative;
  z-index: 1;
  max-width: 34ch;
}

.process-row-text h3 {
  margin: 0 0 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: #fff;
}

.process-row-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}

.process-row-media {
  position: relative;
  min-height: 260px;
}

.process-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.process-row:hover .process-row-media img {
  transform: scale(1.04);
}

.process-row-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 36, 24, 0.35), transparent 55%);
  pointer-events: none;
}

.process-row--flip .process-row-media::after {
  background: linear-gradient(270deg, rgba(15, 36, 24, 0.35), transparent 55%);
}

@media (max-width: 900px) {
  .process-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .process-row,
  .process-row--flip {
    grid-template-columns: 1fr;
  }

  .process-row--flip .process-row-copy,
  .process-row--flip .process-row-media {
    order: unset;
  }

  .process-row-media {
    min-height: 200px;
    order: -1;
  }

  .process-row-copy {
    padding: 1.5rem 1.25rem 1.65rem;
  }

  .process-arrow {
    opacity: 0.9;
    right: 0.85rem;
    top: 0.75rem;
  }

  .process-arrow svg {
    width: 52px;
    height: 52px;
  }
}

/* Soft modern card */
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(19, 36, 26, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 107, 69, 0.22);
  box-shadow: 0 22px 48px rgba(19, 36, 26, 0.12);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-media img { transform: scale(1.06); }

.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.card-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.94rem;
  flex: 1;
}

.card-link {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.card:hover .card-link { gap: 0.55rem; }

.card-soft {
  background: var(--white);
  border: 1px solid rgba(19, 36, 26, 0.07);
  border-radius: 18px;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.05);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(19, 36, 26, 0.1);
}

.card-soft h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
}

.card-soft p {
  margin: 0;
  color: var(--mute);
  font-size: 0.94rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 107, 69, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.card-icon.orange { background: rgba(232, 120, 26, 0.12); color: var(--orange); }
.card-icon.blue { background: rgba(11, 142, 189, 0.12); color: var(--blue); }

.process-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(19, 36, 26, 0.07);
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.05);
  position: relative;
  height: 100%;
}

.process-card .step {
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.process-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(31, 107, 69, 0.1);
  color: var(--green);
}

.badge-orange { background: rgba(232, 120, 26, 0.14); color: #b85a0a; }
.badge-blue { background: rgba(11, 142, 189, 0.12); color: var(--blue); }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.meta span,
.meta .badge {
  display: inline-flex;
  align-items: center;
}

/* Keep old .tile working as alias */
.tile { /* legacy class maps to card feel */
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(19, 36, 26, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(19, 36, 26, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(19, 36, 26, 0.12);
}
.tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.tile:hover img { transform: scale(1.05); }
.tile-body { padding: 1.2rem 1.25rem 1.35rem; }
.tile h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
}
.tile p { margin: 0; color: var(--mute); font-size: 0.94rem; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.85rem;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-strip img:first-child { height: 100%; min-height: 280px; grid-row: span 2; }

.bg-white { background: var(--white); }
.bg-sand { background: var(--sand); }

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.feature-list li {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(19, 36, 26, 0.06);
  color: var(--mute);
  font-size: 0.95rem;
}

.feature-list li strong {
  color: var(--green);
  font-family: Poppins, sans-serif;
  min-width: 1.4rem;
}

.band {
  background: var(--green);
  color: var(--white);
}

.band .section-lead { color: rgba(255, 255, 255, 0.82); }

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--mute);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--orange);
}

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 640px;
  background: var(--white);
  border: 1px solid rgba(19, 36, 26, 0.1);
  padding: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(19, 36, 26, 0.18);
  border-radius: 4px;
  font: inherit;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 107, 69, 0.15);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: 600;
}

.alert-ok {
  background: #e7f5ec;
  color: var(--green);
  border: 1px solid #b7dfc4;
}

.alert-err {
  background: #fdecea;
  color: #9b1c1c;
  border: 1px solid #f5c2c0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0d1a13;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 1.25rem 1.5rem;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.brand-lockup--light .brand-logo {
  width: 56px;
  height: 56px;
}
.brand-lockup--light .brand-name-sub { color: rgba(255, 255, 255, 0.55); }

.site-footer h3 {
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
}

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

.site-footer li { margin-bottom: 0.45rem; }

.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.site-footer a:hover { color: var(--lime); }

.footer-bottom {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #1fa855;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

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

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.prose {
  max-width: 68ch;
  color: var(--mute);
}

.prose p { margin: 0 0 1rem; }
.prose h2 {
  font-family: Poppins, sans-serif;
  color: var(--ink);
  margin: 1.75rem 0 0.75rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.spec-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(19, 36, 26, 0.08);
  color: var(--mute);
  font-size: 0.95rem;
}

/* ---------- Admin panel ---------- */
.admin-body {
  background: #e8ece6;
  font-family: Poppins, sans-serif;
  color: var(--ink);
  margin: 0;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #0f2418;
  color: #fff;
  padding: 1.35rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-brand strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.admin-brand span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.admin-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-nav a.is-active {
  background: #7AB03C;
  color: #fff;
}

.admin-side-actions {
  display: grid;
  gap: 0.4rem;
}

.admin-side-actions a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-align: center;
}

.admin-main {
  padding: 1.25rem 1.5rem 2rem;
  min-width: 0;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7AB03C;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.admin-menu-btn {
  display: none;
  border: 1px solid rgba(19, 36, 26, 0.15);
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.admin-card {
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(19, 36, 26, 0.04);
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-card-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-card-head a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.admin-stat {
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.08);
  border-radius: 14px;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(19, 36, 26, 0.04);
}

.admin-stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--green);
  line-height: 1;
}

.admin-stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--mute);
}

.admin-stat--alert strong {
  color: var(--orange);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-actions .btn {
  text-decoration: none;
}

.admin-table-row,
.admin-message-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(19, 36, 26, 0.08);
}

.admin-table-row strong,
.admin-message-top strong {
  display: block;
}

.admin-table-row span,
.admin-message-top span,
.admin-list-body span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--mute);
}

.admin-row-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--mute);
  white-space: nowrap;
}

.admin-badge {
  font-style: normal;
  background: rgba(232, 120, 26, 0.14);
  color: #b85a0a;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-list {
  display: grid;
  gap: 0.75rem;
}

.admin-list-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(19, 36, 26, 0.08);
  border-radius: 12px;
  background: #f7f9f5;
}

.admin-list-media {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #dfe6da;
}

.admin-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-list-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--mute);
}

.admin-list-body strong {
  display: block;
  font-size: 0.95rem;
}

.admin-list-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.admin-link--danger {
  color: #9b1c1c;
}

.admin-empty {
  margin: 0;
  color: var(--mute);
}

.admin-tips {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mute);
  line-height: 1.6;
}

.admin-help {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--mute);
}

.admin-thumb-wrap {
  margin-bottom: 0.65rem;
}

.admin-thumb {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(19, 36, 26, 0.1);
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.admin-nested {
  border: 1px solid rgba(19, 36, 26, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.85rem;
  background: #f7f9f5;
}

.admin-subhead {
  margin: 1.25rem 0 0.75rem;
  font-size: 1rem;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.admin-messages {
  display: grid;
  gap: 0.85rem;
}

.admin-message {
  border: 1px solid rgba(19, 36, 26, 0.08);
  border-radius: 12px;
  padding: 1rem;
  background: #f7f9f5;
}

.admin-message.is-unread {
  background: #fff;
  border-color: rgba(122, 176, 60, 0.35);
}

.admin-message p {
  margin: 0.75rem 0;
  white-space: pre-wrap;
  line-height: 1.55;
}

.admin-message-meta {
  font-size: 0.88rem;
  color: var(--mute);
}

.admin-login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(122, 176, 60, 0.18), transparent 50%),
    #0f2418;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.admin-login-brand strong {
  display: block;
  font-size: 1.2rem;
}

.admin-login-brand span {
  display: block;
  margin: 0.15rem 0 1rem;
  color: var(--mute);
  font-size: 0.85rem;
}

.admin-login-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.admin-login-card > p {
  margin: 0 0 1.25rem;
  color: var(--mute);
}

.admin-login-back {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(280px, 86vw);
    z-index: 40;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
  }

  .admin-shell.is-nav-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-menu-btn {
    display: inline-flex;
  }

  .admin-grid-2,
  .form-row,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-list-item {
    grid-template-columns: 64px 1fr;
  }

  .admin-list-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .top-bar-inner {
    padding: 0.4rem 0.85rem;
    gap: 0.65rem;
  }

  .top-bar-left {
    flex: 1;
    font-size: 0.72rem;
    gap: 0.35rem 0.75rem;
  }

  .top-bar-item {
    gap: 0.25rem;
  }

  .top-bar-hide-sm { display: none; }

  .top-bar-social a {
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(19, 36, 26, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .main-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid rgba(19, 36, 26, 0.06);
  }

  .main-nav a.nav-cta {
    margin: 0.65rem 0 0.25rem;
    text-align: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
  }

  .stat-wrap { margin-top: -1.75rem; }
  .stat-panel { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n)::after { display: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .split { grid-template-columns: 1fr; }
  .split-media img { height: 280px; }
  .service-grid,
  .product-grid,
  .blog-grid,
  .impact-grid { grid-template-columns: 1fr; }
  .project-grid,
  .pillar-grid,
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip img:first-child { grid-row: auto; min-height: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

@media (max-width: 560px) {
  .stat-panel { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .stat-item:last-child { border-bottom: 0; }
  .process-grid,
  .gallery-strip { grid-template-columns: 1fr; }
}

/* ---------- Inner pages shared ---------- */
.page-overview,
.page-details,
.page-process,
.page-gallery,
.contact-main {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.page-intro {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

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

.page-media-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(19, 36, 26, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.page-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(19, 36, 26, 0.1);
}

.page-media-card-pic {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #13241a;
}

.page-media-card-pic--contain {
  background: #eef2ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-media-card-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.page-media-card-pic--contain img {
  object-fit: contain;
}

.page-media-card:hover .page-media-card-pic img {
  transform: scale(1.05);
}

.page-media-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-media-card-body h3 {
  margin: 0 0 0.45rem;
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.page-media-card-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.page-media-card .card-link {
  margin-top: 1rem;
}

.page-process {
  background: #f4f7f1;
}

.page-process-list {
  display: grid;
  gap: 1.5rem;
}

.page-process-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.05);
}

.page-process-row--flip .page-process-pic { order: 2; }
.page-process-row--flip .page-process-copy { order: 1; }

.page-process-pic {
  min-height: 260px;
  overflow: hidden;
}

.page-process-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-process-copy {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-process-copy span {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: #7AB03C;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.page-process-copy h3 {
  margin: 0 0 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.page-process-copy p {
  margin: 0;
  color: var(--mute);
  line-height: 1.65;
  max-width: 40ch;
}

.page-details {
  background: #fff;
}

.page-detail-case {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  min-height: 360px;
  margin-bottom: 1.75rem;
  border-radius: 22px;
  overflow: hidden;
  background: #f7f9f5;
  border: 1px solid rgba(19, 36, 26, 0.05);
}

.page-detail-case--flip .page-detail-media { order: 2; }
.page-detail-case--flip .page-detail-copy { order: 1; }

.page-detail-media {
  min-height: 320px;
  overflow: hidden;
  background: #13241a;
}

.page-detail-media--contain {
  background: #eef2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.page-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.page-detail-media--contain img {
  object-fit: contain;
  min-height: 260px;
  max-height: 360px;
}

.page-detail-copy {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-detail-copy h3 {
  margin: 0 0 0.65rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
}

.page-detail-summary {
  margin: 0 0 0.85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.page-detail-copy > p:not(.page-detail-summary):not(.about-label) {
  margin: 0 0 1.25rem;
  color: var(--mute);
  line-height: 1.65;
}

.page-gallery {
  background: #f4f7f1;
}

.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.page-gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 12px 28px rgba(19, 36, 26, 0.08);
}

.page-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.post-layout {
  max-width: 820px;
}

.post-hero-shot {
  margin-bottom: 2rem;
  border-radius: 18px;
  overflow: hidden;
  max-height: 420px;
}

.post-hero-shot img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.contact-reasons {
  background: #f4f7f1;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.contact-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-reason {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgba(19, 36, 26, 0.06);
}

.contact-reason img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.contact-reason h3 {
  margin: 0 0 0.3rem;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-reason p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(19, 36, 26, 0.06);
  border-radius: 18px;
  padding: 1.6rem;
  max-width: none;
  box-shadow: 0 14px 34px rgba(19, 36, 26, 0.06);
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-aside-photo {
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.contact-aside-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.contact-aside-card,
.contact-aside-note {
  background: #f4f7f1;
  border-radius: 16px;
  padding: 1.4rem 1.35rem;
}

.contact-aside-note h3 {
  margin: 0 0 0.45rem;
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-aside-note p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .page-card-grid,
  .page-card-grid--3,
  .page-process-row,
  .page-process-row--flip,
  .page-detail-case,
  .page-detail-case--flip,
  .page-gallery-grid,
  .contact-reason-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-process-row--flip .page-process-pic,
  .page-process-row--flip .page-process-copy,
  .page-detail-case--flip .page-detail-media,
  .page-detail-case--flip .page-detail-copy {
    order: unset;
  }

  .page-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .page-gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-reason {
    grid-template-columns: 72px 1fr;
  }

  .contact-reason img {
    width: 72px;
    height: 72px;
  }
}
