/* Futuroute Paper — modern mobile-first (flexbox) */

:root {
  --fp-charcoal: #1a222a;
  --fp-charcoal-2: #1f2933;
  --fp-green: #2e7d32;
  --fp-green-bright: #36a03c;
  --fp-light-green: #a5d6a7;
  --fp-mint: #c8e6c9;
  --fp-white: #ffffff;
  --fp-cream: #f4f8f5;
  --fp-surface: rgba(255, 255, 255, 0.72);
  --fp-border: rgba(31, 41, 51, 0.1);
  --fp-muted: #5c6670;
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --space-3xl: 4rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 20px rgba(31, 41, 51, 0.06);
  --shadow-md: 0 18px 50px rgba(31, 41, 51, 0.12);
  --shadow-glow: 0 0 0 1px rgba(165, 214, 167, 0.35), 0 24px 80px rgba(46, 125, 50, 0.18);
  --header-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fp-charcoal-2);
  background: var(--fp-cream);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}

h1 {
  font-size: clamp(2rem, 1.35rem + 3.2vw, 3.35rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.125rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 var(--space-md);
}

a {
  color: var(--fp-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #246b28;
}

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

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: var(--fp-white);
  color: var(--fp-charcoal-2);
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ——— Reveal on scroll (hidden only when .js-reveal is set via inline script) ——— */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

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

.reveal--delay {
  transition-delay: 0.12s;
}

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

  .js-reveal .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .reveal {
    transition: none;
  }
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 248, 245, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header--elevated {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--fp-border);
  box-shadow: 0 1px 0 rgba(31, 41, 51, 0.06), 0 12px 40px rgba(31, 41, 51, 0.06);
}

.site-header--over-hero {
  background: rgba(18, 24, 31, 1);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.site-header--over-hero .site-nav__list a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--over-hero .site-nav__list a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--fp-white);
}

.site-header--over-hero .site-nav__cta {
  border-color: rgba(200, 230, 201, 0.85) !important;
  color: var(--fp-mint) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-header--over-hero .site-nav__cta:hover {
  background: var(--fp-green) !important;
  border-color: var(--fp-green) !important;
  color: var(--fp-white) !important;
}

.site-header--over-hero .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.site-header--over-hero .nav-toggle__bar {
  background: rgba(255, 255, 255, 0.92);
}

.site-header--over-hero .nav-toggle:hover {
  border-color: rgba(165, 214, 167, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  display: block;
  width: auto;
  max-height: 48px;
  filter: drop-shadow(0 2px 8px rgba(31, 41, 51, 0.08));
  transition: filter 0.25s ease;
}

.site-header--over-hero .brand__logo {
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--fp-border);
  border-radius: 12px;
  background: var(--fp-white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(46, 125, 50, 0.35);
  background: rgba(165, 214, 167, 0.15);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--fp-charcoal-2);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

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

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

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

.site-nav {
  display: none;
  flex-direction: column;
  flex-basis: 100%;
  padding: var(--space-md) 0 var(--space-sm);
}

.site-nav.is-open {
  display: flex;
}

@media (max-width: 767px) {
  .site-nav.is-open {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-sm);
    border-top: 1px solid rgba(31, 41, 51, 0.08);
  }

  .site-header--over-hero .site-nav.is-open {
    border-top-color: rgba(255, 255, 255, 0.12);
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav__list a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--fp-charcoal-2);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__list a:hover {
  background: rgba(46, 125, 50, 0.08);
  color: var(--fp-charcoal-2);
}

.site-nav__cta {
  margin-top: var(--space-xs);
  border: 1.5px solid var(--fp-green) !important;
  color: var(--fp-green) !important;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}

.site-nav__cta:hover {
  background: var(--fp-green) !important;
  color: var(--fp-white) !important;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 15% 0%, #24303d 0%, var(--fp-charcoal) 45%, #12181f 100%);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero--photo {
  min-height: min(100svh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background: #12181f;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(12, 16, 22, 0.62) 0%,
    rgba(12, 16, 22, 0.48) 42%,
    rgba(12, 16, 22, 0.38) 100%
  );
}

.hero--photo .hero__inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: calc(var(--header-h) + var(--space-2xl));
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
}

.hero--photo .hero__copy {
  max-width: 42rem;
  text-align: left;
}

.hero__title {
  margin: 0 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: clamp(1.9rem, 1.05rem + 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--fp-white);
  text-wrap: balance;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--fp-light-green);
  font-weight: 800;
}

.hero__title--inline {
  display: block;
}

.eyebrow--hero .eyebrow__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.eyebrow--hero .eyebrow__text::after {
  content: "";
  width: 2.75rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--fp-light-green), var(--fp-green));
}

.hero__actions {
  gap: var(--space-sm);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.95);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--fp-white);
  transform: translateY(-1px);
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: var(--space-xl);
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero__scroll:hover {
  color: var(--fp-light-green);
}

.hero__scroll-ico {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  position: relative;
}

.hero__scroll-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: translateX(-50%) rotate(45deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--a {
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  top: -18%;
  right: -8%;
  background: var(--fp-green);
}

.hero__glow--b {
  width: min(55vw, 400px);
  height: min(55vw, 400px);
  bottom: -20%;
  left: -10%;
  background: var(--fp-light-green);
  opacity: 0.35;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black, transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__glow--a {
    animation: float-a 14s ease-in-out infinite alternate;
  }

  .hero__glow--b {
    animation: float-b 18s ease-in-out infinite alternate;
  }
}

@keyframes float-a {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-24px, 18px) scale(1.05);
  }
}

@keyframes float-b {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, -14px);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md) var(--space-2xl);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  flex: 1 1 auto;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fp-light-green);
}

.eyebrow--hero {
  color: rgba(165, 214, 167, 0.95);
}

.hero h1 {
  color: var(--fp-white);
  text-wrap: balance;
}

.hero__hl {
  display: inline;
  background: linear-gradient(120deg, var(--fp-mint) 0%, var(--fp-light-green) 35%, #7dce82 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(165, 214, 167, 0.25);
}

.lede {
  font-size: 1.05rem;
  color: var(--fp-muted);
  margin-bottom: 0;
  max-width: 38rem;
}

.lede--hero {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.hero__chips li {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.hero__aside {
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(165, 214, 167, 0.12);
}

.hero-visual__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: min(52vw, 280px);
  object-fit: cover;
  object-position: center;
}

.hero-visual .hero-card {
  border-radius: 0;
  border-top: none;
  box-shadow: none;
}

.hero-card {
  position: relative;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-card__shine {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(165, 214, 167, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-card__kicker {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fp-light-green);
}

.hero-card__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fp-white);
}

.hero-card__text {
  margin: 0 0 var(--space-lg);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.hero-card__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fp-light-green);
}

.stat__lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn__ico {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.btn--primary:hover .btn__ico {
  transform: translateX(3px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--fp-green-bright) 0%, var(--fp-green) 100%);
  color: var(--fp-white);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.42);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--fp-white);
}

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

.btn--secondary {
  background: var(--fp-white);
  color: var(--fp-green);
  border: 2px solid var(--fp-green);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--fp-green);
  color: var(--fp-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

button.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ——— Sections ——— */

.section {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5rem) var(--space-md);
}

.section--pull {
  padding-top: var(--space-3xl);
}

.section--intro-strip {
  background: var(--fp-white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section--approach-band {
  background: linear-gradient(180deg, #eef1f0 0%, #e3e8e6 100%);
  border-block: 1px solid var(--fp-border);
}

.approach-band__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section__header--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.approach-prose--center {
  text-align: center;
}

.approach-prose--center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.section--surface {
  background: linear-gradient(180deg, var(--fp-white) 0%, var(--fp-cream) 100%);
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.section__inner--wide {
  max-width: 1200px;
}

.section__inner--narrow {
  max-width: 640px;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 720px;
}

.section__header--page {
  max-width: 38rem;
  margin-bottom: var(--space-lg);
}

.section__intro {
  margin: 0;
  color: var(--fp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.section__intro--tight {
  font-size: 1.05rem;
  color: var(--fp-charcoal-2);
  font-weight: 500;
}

.section-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--fp-border);
}

.section-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.eyebrow--on-dark {
  color: var(--fp-light-green);
}

/* ——— About ——— */

.about__split {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: stretch;
}

.about__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--fp-border);
  box-shadow: var(--shadow-sm);
  background: var(--fp-cream);
  aspect-ratio: 16 / 10;
}

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

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__tagline {
  margin: var(--space-sm) 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fp-green);
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--fp-charcoal-2);
  margin-bottom: 0;
}

.pullquote {
  margin: var(--space-lg) 0 0;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(165, 214, 167, 0.2) 100%);
  border: 1px solid rgba(46, 125, 50, 0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fp-green);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.pullquote__dot {
  opacity: 0.45;
}

blockquote.pullquote {
  quotes: none;
}

blockquote.pullquote::before,
blockquote.pullquote::after {
  content: none;
}

/* ——— Product cards ——— */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-md);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.22);
}

.product-card__media {
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--fp-cream);
}

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

.product-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fp-charcoal-2);
  text-transform: capitalize;
}

.product-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--fp-muted);
}

.supply-note {
  margin-top: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 50, 0.2);
  background: rgba(46, 125, 50, 0.06);
}

.supply-note__label {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-green);
}

.supply-note__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--fp-charcoal-2);
}

.products-cta {
  margin: var(--space-xl) 0 0;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.products-cta__note {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fp-muted);
}

/* ——— Supply list (products) ——— */

.supply-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.supply-list li {
  position: relative;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) calc(var(--space-lg) + 18px);
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  color: var(--fp-charcoal-2);
  box-shadow: var(--shadow-sm);
}

.supply-list li::before {
  content: "";
  position: absolute;
  left: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fp-green);
}

/* ——— Approach prose ——— */

.approach-prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.approach-prose p {
  margin: 0;
  color: var(--fp-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ——— Cards ——— */

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.25s ease;
}

.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.2);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--fp-green);
  background: linear-gradient(145deg, rgba(165, 214, 167, 0.45) 0%, rgba(46, 125, 50, 0.12) 100%);
  margin-bottom: var(--space-xs);
}

.card__title {
  margin: 0;
  color: var(--fp-charcoal-2);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.card__text {
  margin: 0;
  color: var(--fp-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.card__link {
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fp-green);
}

/* ——— Bento products ——— */

.bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.bento__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}

.bento__item:not(.bento__item--hero):hover {
  border-color: rgba(46, 125, 50, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bento__item--hero {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--fp-charcoal-2) 0%, #2d3d47 50%, #1a3d24 120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fp-white);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(165, 214, 167, 0.12);
}

.bento__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-light-green);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bento__title {
  margin: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.5rem);
  font-weight: 800;
  color: var(--fp-white);
  line-height: 1.2;
}

.bento__text {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 42rem;
}

.bento__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fp-charcoal-2);
}

.bento__hint {
  font-size: 0.9rem;
  color: var(--fp-muted);
}

/* ——— Sustainability ——— */

.section--eco {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.section__eco-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/global-logistics-terminal%20.jpg") center / cover no-repeat;
  z-index: 0;
}

.section__eco-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(12, 28, 16, 0.88) 0%,
    rgba(26, 92, 36, 0.78) 45%,
    rgba(10, 22, 14, 0.9) 100%
  );
  pointer-events: none;
}

.section__inner--eco {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  color: var(--fp-white);
}

.markets__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 38rem;
}

.markets__header h2 {
  margin: 0;
  color: var(--fp-white);
}

.markets__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.markets__footnote {
  margin: 0;
  max-width: 42rem;
  opacity: 0.92;
}

.markets-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.markets-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease-out);
}

.markets-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .markets-card {
    transition: none;
  }

  .markets-card:hover {
    transform: none;
  }
}

.markets-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.markets-card__icon--symbol {
  color: var(--fp-light-green);
}

.markets-card__icon--symbol svg {
  width: 28px;
  height: 28px;
}

.markets-card__flag {
  width: 38px;
  height: auto;
  display: block;
  border-radius: 3px;
}

.markets-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.markets-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fp-white);
}

.markets-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.markets__prose {
  max-width: 40rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.eco__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.eco__lede--tight {
  margin-top: var(--space-md);
}

/* ——— Contact ——— */

.section--contact {
  background: linear-gradient(180deg, var(--fp-cream) 0%, var(--fp-white) 55%);
  padding-bottom: var(--space-3xl);
}

.section__inner--contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.contact__form-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

.contact__form-column .contact__panel {
  margin-top: var(--space-sm);
}

.contact__cta-line {
  margin: 0;
}

.contact__cta-line .btn {
  width: fit-content;
}

.contact__figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--fp-border);
  box-shadow: var(--shadow-sm);
  background: var(--fp-cream);
}

.contact__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(70vh, 520px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__lede {
  margin: 0;
  color: var(--fp-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact__highlights {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 500;
  color: var(--fp-charcoal-2);
  line-height: 1.55;
}

.contact__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--fp-green);
  transform: rotate(45deg);
}

.contact__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 500;
  color: var(--fp-charcoal-2);
}

.contact__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--fp-green);
  transform: rotate(45deg);
}

.contact__panel {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 245, 0.98) 100%);
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-intro {
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--fp-border);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fp-muted);
}

.form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-fieldset__legend {
  padding: 0;
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-green);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--fp-charcoal-2);
}

.form-optional {
  font-weight: 500;
  color: var(--fp-muted);
  letter-spacing: 0;
}

.form-row input,
.form-row textarea,
.form-row select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--fp-border);
  border-radius: var(--radius-sm);
  background: var(--fp-white);
  color: var(--fp-charcoal-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-color: var(--fp-white);
  background-image: linear-gradient(45deg, transparent 50%, var(--fp-muted) 50%),
    linear-gradient(135deg, var(--fp-muted) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 50%, calc(100% - 0.75rem) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.form-row input:focus-visible,
.form-row textarea:focus-visible,
.form-row select:focus-visible {
  outline: none;
  border-color: var(--fp-green);
  box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.45);
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #c62828;
}

.form-status.is-success {
  color: var(--fp-green);
}

/* ——— Footer ——— */

.site-footer {
  position: relative;
  background: var(--fp-charcoal);
  color: var(--fp-white);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fp-light-green), var(--fp-green), var(--fp-charcoal-2));
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__name {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.site-footer__tagline {
  margin: var(--space-xs) 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  max-width: 28rem;
}

.site-footer__email {
  margin: var(--space-sm) 0 0;
  font-size: 0.9rem;
}

.site-footer__email a {
  color: var(--fp-light-green);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__email a:hover {
  color: var(--fp-white);
  text-decoration: underline;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  align-items: center;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--fp-light-green);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

/* ——— Tablet / desktop ——— */

@media (min-width: 768px) {
  .brand__logo {
    max-height: 56px;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    padding: 0;
    align-items: center;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .site-nav__cta {
    margin-top: 0;
    margin-left: var(--space-sm);
  }

  .hero:not(.hero--photo) .hero__inner {
    flex-direction: row;
    align-items: stretch;
    padding-top: clamp(3.5rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    gap: var(--space-3xl);
  }

  .hero:not(.hero--photo) .hero__copy {
    flex: 1 1 55%;
    justify-content: center;
    padding-right: var(--space-md);
  }

  .hero:not(.hero--photo) .hero__aside {
    flex: 0 1 42%;
    max-width: 420px;
    display: flex;
    align-items: stretch;
  }

  .hero:not(.hero--photo) .hero-card {
    width: 100%;
    align-self: center;
  }

  .hero:not(.hero--photo) .hero-visual__img {
    max-height: min(36vw, 340px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl) var(--space-lg);
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .markets-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    min-height: 100%;
  }

  .markets-card__icon {
    width: 60px;
    height: 60px;
  }

  .markets-card__flag {
    width: 40px;
  }

  .markets-card__icon--symbol svg {
    width: 30px;
    height: 30px;
  }

  .about__split {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }

  .about__media {
    flex: 0 1 42%;
    max-width: 440px;
  }

  .about__text {
    flex: 1 1 0;
    min-width: 0;
  }

  .cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-md);
  }

  .card {
    flex: 1 1 0;
    min-width: 0;
  }

  .bento {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .bento__item {
    flex: 1 1 calc(33.333% - var(--space-md));
    min-width: 200px;
  }

  .bento__item--hero {
    flex: 1 1 100%;
    min-height: 0;
  }

  .section__inner--contact {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3xl);
  }

  .contact__form-column {
    flex: 1 1 58%;
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
    align-self: flex-start;
    max-width: 36rem;
  }

  .contact__panel {
    width: 100%;
  }

  .contact__figure {
    flex: 0 1 38%;
    max-width: 400px;
    align-self: stretch;
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }

  .contact__figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    aspect-ratio: unset;
    object-fit: cover;
  }

  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg) var(--space-xl);
  }

  .site-footer__brand {
    flex: 1 1 220px;
    min-width: 0;
  }

  .site-footer__nav {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .site-footer__legal {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .bento__item--hero {
    flex: 1 1 100%;
  }

  .bento__item:not(.bento__item--hero):not(:last-child) {
    flex: 1 1 calc(33.333% - var(--space-md));
    min-width: 220px;
  }

  .bento__item:last-child {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-sm) var(--space-md);
  }

  .bento__item:last-child .bento__name {
    flex: 0 0 auto;
  }

  .bento__item:last-child .bento__hint {
    flex: 1 1 auto;
    min-width: 200px;
  }

  .site-header__inner,
  .hero__inner,
  .section__inner,
  .section__inner--eco,
  .section__inner--contact,
  .site-footer__inner {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}
