/* Mangrove Harvest — responsive wholesale produce storefront */

:root {
  --forest-950: #081c15;
  --nav-bg: #001b14;
  --forest-900: #0d2a20;
  --forest-800: #133b2d;
  --forest-700: #1d5742;
  --leaf: #2d7659;
  --mango: #f2a33a;
  --mango-dark: #ca761b;
  --cream: #f6f0e5;
  --cream-deep: #ece1cf;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #14231c;
  --muted: #657169;
  --line: rgba(20, 54, 42, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);

  --font-ui: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --max: 1320px;
  --gutter: clamp(18px, 4.5vw, 72px);
  --nav-h: 82px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 20px 50px rgba(8, 28, 21, 0.1);
  --shadow-hover: 0 24px 60px rgba(8, 28, 21, 0.16);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.text-link {
  color: var(--mango);
  text-decoration: underline;
  text-decoration-color: rgba(242, 163, 58, 0.45);
  text-underline-offset: 4px;
}

.wrap {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px var(--gutter);
  color: var(--white);
  background-color: #001b14;
  border-bottom: 1px solid var(--line-dark);
}

.nav-brand {
  flex: 0 0 auto;
  width: 210px;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nav-brand img {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.nav-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav .cta {
  flex: 0 0 auto;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--mango);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.nav .cta:hover {
  transform: translateY(-1px);
  background: #ffb951;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

/* Type */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mango-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 18px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.99;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

h3,
h4 {
  margin-bottom: 8px;
  color: var(--forest-900);
  line-height: 1.25;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 14px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.section-header {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  display: block;
}

.section-header p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 17px;
}

.section-header.center p {
  margin-inline: auto;
}

/* Buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

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

.btn.primary {
  color: var(--forest-950);
  background: var(--mango);
  box-shadow: 0 10px 28px rgba(202, 118, 27, 0.22);
}

.btn.primary:hover {
  background: #ffb74d;
  box-shadow: 0 14px 34px rgba(202, 118, 27, 0.3);
}

.btn.secondary {
  color: var(--forest-900);
  background: transparent;
  border-color: var(--line);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Sections and hero */
section {
  padding: clamp(68px, 9vw, 120px) 0;
}

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

.section-muted {
  background: var(--cream);
}

.section-cream {
  background: var(--cream-deep);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
}

.section-dark::before {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(242, 163, 58, 0.2);
  border-radius: 50%;
  content: "";
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .wrap {
  position: relative;
}

.section-dark .btn.primary {
  color: var(--forest-950);
  background: var(--mango);
}

.hero {
  padding: clamp(48px, 7vw, 94px) 0 clamp(68px, 8vw, 108px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(242, 163, 58, 0.18), transparent 24%),
    linear-gradient(145deg, var(--forest-950), var(--forest-800));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.hero .eyebrow {
  color: var(--mango);
}

.hero h1 {
  color: var(--white);
}

.hero-copy .lede,
.hero .lede {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(13, 42, 32, 0.16);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 28, 21, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.trustbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(46px, 7vw, 82px);
  border-block: 1px solid var(--line-dark);
}

.trust {
  min-width: 0;
  padding: 22px clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line-dark);
}

.trust:first-child {
  padding-left: 0;
}

.trust:last-child {
  border-right: 0;
}

.trust strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.trust span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

/* Core layouts */
.grid2 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.panel::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(13, 42, 32, 0.14);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  content: "";
}

.panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.points {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.point {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.badge,
.dot,
.check {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--mango);
  font-size: 12px;
  font-weight: 800;
}

.badge {
  width: 38px;
  height: 38px;
}

.point p,
.point h3 {
  margin-bottom: 0;
}

.mango-row,
.products,
.cards3,
.flow {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
}

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

.mango-row {
  margin-bottom: clamp(64px, 9vw, 112px);
}

.mango-tile,
.card {
  min-width: 0;
}

.mango-tile-img,
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-deep);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.mango-tile-img {
  margin-bottom: 16px;
  overflow: hidden;
}

.mango-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.mango-tile:hover .mango-tile-img img,
.card:hover .product-img {
  transform: scale(1.025);
}

.mango-tile h3,
.card-body h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.mango-tile p,
.card-body p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
}

.product-img {
  margin-bottom: 16px;
}

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

.quote-card,
.flow-step {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.quote-card:hover,
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote-card h3 {
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.quote-card p,
.flow-step p {
  margin-bottom: 0;
  font-size: 14px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line-dark);
}

.knowledge-card {
  min-height: 180px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.05);
}

.knowledge-card strong,
.knowledge-card span {
  display: block;
}

.knowledge-card strong {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.knowledge-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.heritage-strip {
  padding-block: clamp(44px, 6vw, 72px);
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.heritage-stats > div {
  padding: 24px clamp(14px, 2.5vw, 34px);
  border-right: 1px solid var(--line-dark);
}

.heritage-stats > div:first-child {
  padding-left: 0;
}

.heritage-stats > div:last-child {
  border-right: 0;
}

.heritage-stats strong,
.heritage-stats span {
  display: block;
}

.heritage-stats strong {
  margin-bottom: 6px;
  color: var(--mango);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.heritage-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.timeline {
  position: relative;
  display: grid;
  max-width: 960px;
  margin-top: 44px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 112px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 34px;
  padding: 0 0 42px;
}

.timeline-item::before {
  position: absolute;
  top: 7px;
  left: 106px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--mango);
  box-shadow: 0 0 0 1px var(--mango-dark);
  content: "";
}

.timeline-item > span {
  color: var(--mango-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.timeline-item p {
  max-width: 680px;
  margin-bottom: 0;
}

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

.team-responsibilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.team-responsibilities article {
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.04);
}

.team-responsibilities h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.team-responsibilities p,
.team-note {
  color: rgba(255, 255, 255, 0.66);
}

.team-note {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
}

.centered-actions {
  justify-content: center;
}

.white-label-flow .flow-step {
  min-height: 260px;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.pill {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
}

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

.dot {
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
}

.flow-step::after {
  position: absolute;
  top: 51px;
  right: 22px;
  left: 76px;
  height: 1px;
  background: var(--line);
  content: "";
}

/* Buyer fit and contact */
.fit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.43fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.fit-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.fit-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-self: start;
}

.fit-row strong,
.fit-row span {
  display: block;
}

.fit-row strong {
  color: var(--forest-900);
}

.fit-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 163, 58, 0.35), transparent 30%),
    var(--forest-900);
  box-shadow: var(--shadow);
}

.quote .eyebrow,
.quote h3 {
  color: var(--white);
}

.quote h3 {
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}

.quote p {
  color: rgba(255, 255, 255, 0.64);
}

.quote .btn {
  align-self: flex-start;
  color: var(--forest-950);
  background: var(--mango);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.main,
.side {
  padding: clamp(28px, 5vw, 64px);
}

.side {
  color: var(--white);
  background: var(--forest-900);
}

.side h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.side ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.side li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.ops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.ops .quote-card {
  padding: 20px;
}

.ops .quote-card h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
}

.ops a,
.linkbox a {
  color: var(--forest-700);
  font-weight: 800;
}

.linkbox {
  display: grid;
  gap: 8px;
}

.linkbox a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  overflow-wrap: anywhere;
}

/* Footer */
footer {
  padding: 68px 0 28px;
  color: var(--white);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-bottom: 48px;
}

.footer-brand img {
  width: min(100%, 330px);
  max-width: 100%;
  height: auto;
  margin: 0 0 18px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.heritage-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--mango);
  font-size: 11px;
  font-weight: 700;
}

.footer-col h4 {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  transition: color 180ms var(--ease);
}

.footer-col a:hover {
  color: var(--mango);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer-bottom a {
  color: var(--mango);
}

/* SEO and generated pages */
.seo-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.seo-hero h1 {
  max-width: 880px;
}

.seo-hero .lede {
  max-width: 760px;
}

.breadcrumb {
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb a:hover {
  color: var(--forest-700);
}

.seo-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.seo-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.seo-list a {
  color: var(--forest-700);
  font-weight: 800;
}

.seo-cta {
  margin-top: 30px;
}

.local-note {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--mango);
  color: var(--forest-900);
  background: rgba(242, 163, 58, 0.12);
  font-size: 13px;
}

.hero .local-note {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(242, 163, 58, 0.12);
}

.region-list,
.metro-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-list a,
.metro-list a {
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.region-list a:hover,
.metro-list a:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.metro-count {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1120px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  .links a {
    padding-inline: 9px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 72px;
  }

  .nav {
    min-height: var(--nav-h);
    padding-block: 10px;
  }

  .nav-brand img {
    width: 170px;
    height: auto;
    margin: 0;
  }

  .nav-brand {
    width: 170px;
    height: 44px;
  }

  .nav-burger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 14px;
    padding: 14px var(--gutter) 22px;
    border-bottom: 1px solid var(--line-dark);
    background-color: #001b14;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .nav-toggle:checked ~ .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .links a {
    padding: 12px 14px;
    border: 1px solid var(--line-dark);
  }

  .nav .cta {
    margin: 0;
    text-align: center;
  }

  .hero-grid,
  .grid2,
  .fit,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .heritage-stats > div:nth-child(2) {
    border-right: 0;
  }

  .heritage-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .heritage-stats > div:nth-child(3) {
    padding-left: 0;
  }

  .trust:nth-child(2) {
    border-right: 0;
  }

  .trust:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .trust:nth-child(3) {
    padding-left: 0;
  }

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

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

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

  .quote {
    min-height: 320px;
  }

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

@media (max-width: 600px) {
  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  section {
    padding: 64px 0;
  }

  .hero {
    padding: 28px 0 58px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }

  .hero-badge {
    right: 16px;
    bottom: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .trust {
    padding: 16px 12px;
  }

  .trust strong {
    font-size: 16px;
  }

  .trust span {
    font-size: 10px;
  }

  .mango-row,
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .mango-tile h3,
  .card-body h3 {
    font-size: 18px;
  }

  .mango-tile p,
  .card-body p {
    font-size: 11px;
  }

  .specs {
    display: none;
  }

  .cards3,
  .flow,
  .ops,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-grid,
  .expertise-grid,
  .team-responsibilities {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 30px;
  }

  .timeline-item::before {
    left: 1px;
  }

  .knowledge-card {
    min-height: auto;
  }

  .flow-step::after {
    display: none;
  }

  .quote {
    min-height: 300px;
  }

  .main,
  .side {
    padding: 26px 20px;
  }

  .seo-hero {
    min-height: 410px;
  }

  .region-list,
  .metro-list {
    grid-template-columns: 1fr;
  }
}
