:root {
  --green-700: #155535;
  --green-600: #1f6d42;
  --green-500: #2c8c54;
  --green-300: #67b36d;
  --lime-400: #9ad94a;
  --lime-300: #b7e669;
  --charcoal-950: #0d1411;
  --charcoal-900: #111b17;
  --charcoal-700: #2d3a35;
  --white-100: #fbfdf9;
  --white-200: #eef5ec;
  --white-300: #dde8dd;
  --text-primary: #122017;
  --text-muted: #4f6357;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 24px 70px rgba(19, 34, 27, 0.14);
  --radius-xs: 0.6rem;
  --radius-sm: 0.9rem;
  --radius-md: 1.3rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --space-2xs: clamp(0.45rem, 0.35rem + 0.5vw, 0.7rem);
  --space-xs: clamp(0.7rem, 0.55rem + 0.7vw, 1rem);
  --space-sm: clamp(0.9rem, 0.8rem + 0.85vw, 1.35rem);
  --space-md: clamp(1.2rem, 0.95rem + 1.3vw, 2rem);
  --space-lg: clamp(1.8rem, 1.25rem + 2.5vw, 3rem);
  --space-xl: clamp(2.5rem, 2rem + 3.5vw, 4.5rem);
  --space-2xl: clamp(3.5rem, 2.2rem + 5.5vw, 7rem);
  --container: min(1180px, 92vw);
  --title: "Sora", "Manrope", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.2, 0.68, 0.19, 1);
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-primary);
  font-family: var(--body);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, rgba(148, 219, 95, 0.23), transparent 38%),
    radial-gradient(circle at 90% 10%, rgba(18, 93, 53, 0.13), transparent 35%),
    linear-gradient(140deg, #f8fcf7 0%, #f2f7f1 48%, #f8fbf5 100%);
  overflow-x: clip;
  opacity: 1;
  transform: none;
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: min(38vw, 530px);
  height: min(38vw, 530px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(61, 163, 91, 0.19), rgba(61, 163, 91, 0));
}

body::after {
  left: -13%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(154, 217, 74, 0.16), rgba(154, 217, 74, 0));
}

body.page-leave {
  opacity: 0;
  transform: translateY(10px);
}

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

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

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: var(--title);
}

h1 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 3.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}

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

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

.section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section-head {
  margin-bottom: var(--space-xl);
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--green-600);
  font-weight: 800;
}

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

.section-title {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.section-copy {
  font-size: clamp(1rem, 1vw + 0.7rem, 1.2rem);
  color: var(--text-muted);
  max-width: 70ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--green-600), var(--green-500));
  box-shadow: 0 16px 35px rgba(28, 97, 60, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 22px 40px rgba(28, 97, 60, 0.4);
}

.btn-ghost {
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(29, 110, 67, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.98);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.74), rgba(242, 250, 241, 0.53));
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  padding: 0.6rem 0.9rem 0.6rem 1.05rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(20, 75, 46, 0.16);
  box-shadow: 0 8px 18px rgba(26, 101, 59, 0.24);
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--charcoal-900);
  margin-inline: auto;
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(0) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 0.62rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  color: var(--charcoal-700);
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.25s var(--ease-out);
}

.nav-link:hover {
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(130deg, var(--green-600), var(--green-500));
  box-shadow: 0 10px 20px rgba(35, 117, 70, 0.35);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
  padding-top: clamp(4rem, 7vw, 8rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% auto auto -8%;
  width: min(54vw, 700px);
  height: min(54vw, 700px);
  border-radius: 42% 58% 51% 49% / 55% 45% 55% 45%;
  background: radial-gradient(circle at 30% 35%, rgba(154, 217, 74, 0.36), rgba(20, 98, 56, 0.11) 60%, rgba(20, 98, 56, 0));
  animation: orb-flow 11s ease-in-out infinite alternate;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 111, 62, 0.2), rgba(22, 111, 62, 0));
  z-index: -1;
}

@keyframes orb-flow {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(5%, -4%, 0) rotate(28deg);
  }
}

.hero-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1rem;
}

.hero-copy p {
  margin-bottom: 1.8rem;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.25rem);
}

.floating-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.75), rgba(241, 248, 239, 0.56));
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  padding: var(--space-lg);
}

.floating-panel h3 {
  margin-bottom: 0.7rem;
}

.floating-meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.floating-meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.floating-meta strong {
  color: var(--green-700);
  font-size: 1.25rem;
  font-family: var(--title);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

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

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

.glass-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(243, 248, 240, 0.52));
  box-shadow: 0 18px 44px rgba(20, 35, 29, 0.11);
  backdrop-filter: blur(12px);
  padding: var(--space-md);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(20, 35, 29, 0.16);
  border-color: rgba(140, 195, 90, 0.5);
}

.card-title {
  margin-bottom: 0.6rem;
}

.muted {
  color: var(--text-muted);
}

.kicker {
  margin-bottom: 0.75rem;
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--green-700);
  background: linear-gradient(170deg, rgba(146, 213, 92, 0.38), rgba(33, 116, 69, 0.16));
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.stats-wrap {
  position: relative;
  overflow: clip;
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, var(--charcoal-900), #1a2a23);
  color: #ecf7ed;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.stats-wrap::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(154, 217, 74, 0.32), rgba(154, 217, 74, 0));
}

.metric {
  display: grid;
  gap: 0.4rem;
}

.metric strong {
  font-family: var(--title);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.metric span {
  color: rgba(236, 247, 237, 0.78);
}

.process-line {
  position: relative;
  margin-top: var(--space-lg);
  padding-left: 1.4rem;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--green-600), rgba(45, 58, 53, 0.18));
}

.process-item {
  position: relative;
  padding: 0.2rem 0 1.3rem 1.2rem;
}

.process-item::before {
  content: "";
  position: absolute;
  left: -0.05rem;
  top: 0.38rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 2px solid var(--green-500);
  background: #f6fcf5;
  box-shadow: 0 0 0 6px rgba(143, 203, 89, 0.2);
}

.timeline {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(29, 107, 64, 0.1);
}

.timeline-year {
  font-family: var(--title);
  font-size: 1.1rem;
  color: var(--green-700);
}

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

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(29, 107, 64, 0.14);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.products-layout {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  border: 1px solid rgba(35, 117, 70, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-700);
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

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

.filter-btn.is-active {
  background: linear-gradient(130deg, var(--green-600), var(--green-500));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(35, 117, 70, 0.3);
}

.product-card {
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(31, 109, 66, 0.35), rgba(154, 217, 74, 0.3)),
    linear-gradient(145deg, #dce9db, #f7fbf5);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 37, 24, 0), rgba(12, 37, 24, 0.18));
}

.product-media.is-missing::after {
  content: "Awaiting Product Image";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(7, 30, 17, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

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

.product-content {
  padding: var(--space-md);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  background: rgba(39, 121, 72, 0.12);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card[hidden] {
  display: none;
}

.showcase-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-tile {
  padding: clamp(1.2rem, 2vw, 1.7rem);
  min-height: 190px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.78), rgba(236, 245, 234, 0.62));
  box-shadow: 0 14px 36px rgba(20, 35, 29, 0.12);
}

.showcase-tile .kicker {
  margin-bottom: 0.42rem;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(236, 245, 234, 0.58));
  box-shadow: var(--glass-shadow);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease-smooth);
}

.testimonial {
  min-width: 100%;
  padding: clamp(1.4rem, 2.7vw, 2.2rem);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.45;
}

.testimonial p {
  margin: 0;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0 1.2rem 1.1rem;
  justify-content: center;
}

.slider-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  border: 0;
  background: rgba(37, 109, 67, 0.25);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--green-600);
}

.contact-layout {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1.1fr 0.9fr;
}

.form-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 700;
  font-size: 0.86rem;
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 83, 52, 0.22);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.78rem 0.9rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
textarea:focus,
.filter-btn:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.slider-dot:focus-visible,
.video-toggle:focus-visible {
  outline: 0;
  border-color: rgba(33, 124, 69, 0.75);
  box-shadow: 0 0 0 4px rgba(126, 187, 74, 0.2);
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(29, 107, 64, 0.26);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text-muted);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(235, 245, 233, 0.6)),
    repeating-linear-gradient(
      90deg,
      rgba(45, 58, 53, 0.04),
      rgba(45, 58, 53, 0.04) 1px,
      transparent 1px,
      transparent 36px
    );
}

.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.map-placeholder.is-loaded iframe {
  opacity: 1;
}

.map-fallback {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  margin: 0;
  padding: 0.5rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(12, 44, 28, 0.62);
  backdrop-filter: blur(8px);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.map-fallback a {
  color: #f1fbf3;
}

.map-fallback a:hover {
  color: #d4f2db;
}

.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.1rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(140deg, #23c861, #0d9d4a);
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 157, 74, 0.35);
  z-index: 990;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.wa-float svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(13, 157, 74, 0.4);
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    linear-gradient(130deg, rgba(17, 62, 40, 0.96), rgba(27, 93, 56, 0.95)),
    linear-gradient(130deg, rgba(154, 217, 74, 0.2), transparent 60%);
  color: #f4fbf5;
  box-shadow: 0 28px 58px rgba(15, 47, 30, 0.3);
}

.cta-band h2 {
  margin-bottom: 0.7rem;
}

.cta-band p {
  max-width: 58ch;
  color: rgba(244, 251, 245, 0.82);
}

.site-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  padding-bottom: 0.9rem;
  border-top: 1px solid rgba(30, 77, 48, 0.12);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.5), rgba(238, 246, 236, 0.68));
}

.footer-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1.1fr 0.8fr 1fr;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-700);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(31, 109, 66, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.site-footer p,
.footer-bottom p {
  margin-bottom: 0;
}

.hero-simple {
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding-bottom: var(--space-lg);
}

.hero-simple h1 {
  max-width: 12ch;
}

.hero-simple p {
  max-width: 58ch;
}

.sustain-surface {
  background: linear-gradient(150deg, rgba(167, 225, 86, 0.26), rgba(36, 127, 72, 0.08));
}

.logo-belt {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-pill {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(27, 89, 55, 0.2);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.7rem 0.9rem;
  text-align: center;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: clip;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(3rem, 8vw, 5.4rem);
}

.portfolio-hero::before,
.portfolio-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.portfolio-hero::before {
  inset: -20% 10% auto -12%;
  height: 120%;
  background:
    radial-gradient(circle at 24% 32%, rgba(183, 230, 105, 0.52), rgba(183, 230, 105, 0) 48%),
    radial-gradient(circle at 72% 22%, rgba(30, 119, 67, 0.32), rgba(30, 119, 67, 0) 52%),
    radial-gradient(circle at 55% 70%, rgba(18, 74, 45, 0.22), rgba(18, 74, 45, 0) 55%);
  animation: ambience-shift 14s ease-in-out infinite alternate;
}

.portfolio-hero::after {
  inset: auto -10% -35% auto;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 143, 79, 0.24), rgba(46, 143, 79, 0));
}

@keyframes ambience-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, -3%, 0) scale(1.03);
  }
}

.portfolio-shell {
  position: relative;
}

.portfolio-shell h1 {
  max-width: 11ch;
}

.portfolio-shell p {
  max-width: 60ch;
  margin-bottom: 0;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  color: rgba(17, 62, 40, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: rgba(23, 85, 52, 0.25);
  overflow: hidden;
  position: relative;
}

.scroll-cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(121, 190, 72, 0), rgba(121, 190, 72, 0.95), rgba(121, 190, 72, 0));
  animation: cue-drop 1.7s ease-in-out infinite;
}

@keyframes cue-drop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.founder-layout {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.founder-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(370px, 45vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 26px 60px rgba(15, 32, 24, 0.2);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.75), rgba(235, 245, 233, 0.62)),
    linear-gradient(135deg, rgba(37, 115, 67, 0.5), rgba(157, 219, 80, 0.42));
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-portrait.is-missing::after {
  content: "Founder Portrait Placeholder";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(16, 57, 35, 0.7);
}

.founder-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(14, 42, 28, 0.65);
  color: #e8f4ea;
  backdrop-filter: blur(12px);
}

.founder-overlay strong {
  display: block;
  font-family: var(--title);
  font-size: 1.02rem;
}

.founder-overlay span {
  font-size: 0.8rem;
  color: rgba(232, 244, 234, 0.8);
}

.founder-card {
  border-radius: var(--radius-lg);
}

.founder-message {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(39, 121, 72, 0.3);
  color: var(--text-muted);
  font-size: 1.04rem;
}

.portfolio-grid {
  columns: 3 260px;
  column-gap: var(--space-md);
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.portfolio-item.is-filtered-out {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 48px rgba(16, 31, 24, 0.18);
  background:
    linear-gradient(125deg, rgba(12, 37, 24, 0.28), rgba(12, 37, 24, 0)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.6), rgba(245, 250, 243, 0.5));
}

.portfolio-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-item.is-tall .portfolio-media {
  aspect-ratio: 4/5;
}

.portfolio-item.is-wide .portfolio-media {
  aspect-ratio: 16/9;
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 11, 0) 35%, rgba(5, 18, 11, 0.76) 100%);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth), filter 0.55s var(--ease-out);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.08);
  filter: saturate(1.07);
}

.portfolio-media.is-missing::before {
  content: "Project Media Placeholder";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(245, 252, 246, 0.78);
  z-index: 1;
}

.portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
  color: #f3fbf4;
}

.portfolio-caption h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.portfolio-caption p {
  margin: 0;
  color: rgba(243, 251, 244, 0.82);
  font-size: 0.88rem;
}

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

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(12, 37, 24, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 50px rgba(17, 33, 26, 0.18);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.62), rgba(239, 247, 237, 0.56));
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(17, 33, 26, 0.22);
}

.video-shell {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, #cad9c8, #f2f7f1);
}

.video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 0.95rem;
  color: #e8f6ea;
  background: linear-gradient(180deg, rgba(6, 19, 12, 0) 25%, rgba(6, 19, 12, 0.8) 100%);
}

.video-overlay p {
  margin: 0;
  color: rgba(232, 246, 234, 0.82);
  font-size: 0.82rem;
}

.video-toggle {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(10, 35, 22, 0.64);
  color: #e8f6ea;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-card.is-playing .video-toggle {
  background: rgba(122, 190, 74, 0.9);
  color: #0d2216;
  border-color: transparent;
}

.before-after-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.76), rgba(238, 247, 236, 0.62));
  box-shadow: 0 20px 45px rgba(17, 33, 26, 0.16);
}

.before-after-stage {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 69, 43, 0.76), rgba(153, 211, 76, 0.6));
}

.before-after-stage::before,
.before-after-stage::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: grid;
  place-items: end start;
  padding: 0.55rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.before-after-stage::before {
  content: "Before";
  left: 0;
  background: linear-gradient(160deg, rgba(31, 37, 34, 0.7), rgba(31, 37, 34, 0.25));
  color: rgba(234, 243, 236, 0.88);
}

.before-after-stage::after {
  content: "After";
  right: 0;
  justify-items: end;
  background: linear-gradient(160deg, rgba(118, 181, 73, 0.72), rgba(118, 181, 73, 0.2));
  color: rgba(9, 32, 18, 0.82);
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.75);
}

.before-after-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(143, 203, 89, 0.34);
}

.before-after-content {
  padding: 1rem 1rem 1.15rem;
}

.impact-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(239, 247, 237, 0.62));
  box-shadow: 0 16px 36px rgba(17, 33, 26, 0.12);
  padding: 1.1rem 1.05rem;
}

.impact-card strong {
  display: block;
  font-family: var(--title);
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.impact-card span {
  color: var(--text-muted);
}

.list-check li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.5rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--green-500), var(--lime-400));
  box-shadow: 0 0 0 4px rgba(127, 188, 75, 0.2);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

[data-parallax] {
  will-change: transform;
}

.text-highlight {
  color: var(--green-700);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .hero-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    columns: 2 240px;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .navbar {
    padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 5rem 1rem auto;
    display: grid;
    gap: 0.4rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(234, 244, 232, 0.85));
    backdrop-filter: blur(16px);
    padding: 0.8rem;
    box-shadow: var(--glass-shadow);
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0.3s;
  }

  .nav-links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .products-layout,
  .showcase-grid,
  .logo-belt,
  .video-grid,
  .before-after-grid,
  .impact-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2.8rem, 7vw, 4rem);
  }

  .hero-simple h1 {
    max-width: unset;
  }

  .portfolio-grid {
    columns: 1;
  }

  .portfolio-hero {
    min-height: auto;
    padding-bottom: 5.5rem;
  }

  .scroll-cue {
    bottom: 0.85rem;
  }
}

@media (max-width: 540px) {
  .brand-text small {
    display: none;
  }

  .btn-row {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .metric strong {
    font-size: clamp(1.65rem, 9vw, 2.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body {
    opacity: 1;
    transform: none;
  }
}
